]> git.mxchange.org Git - juser-login-core.git/blobdiff - src/org/mxchange/jusercore/model/user/profilemodes/ProfileMode.java
Renamed language strings as this can be used for other "roles", too
[juser-login-core.git] / src / org / mxchange / jusercore / model / user / profilemodes / ProfileMode.java
index 73aeb34663f1fea21516b9a005b769885359aacc..c71bae70923aa6bf495933a9d1331884e417d5c1 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2015 Roland Haeder
+ * Copyright (C) 2016 Roland Haeder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,22 +21,24 @@ import java.io.Serializable;
 /**
  * User profile modes
  * <p>
- * @author Roland Haeder
+ * @author Roland Haeder<roland@mxchange.org>
  */
 public enum ProfileMode implements Serializable {
 
        /**
         * Invisible to guests and members (not administrators)
         */
-       INVISIBLE("USER_PROFILE_MODE_INVISIBLE"), //NOI18N
+       INVISIBLE("PROFILE_MODE_INVISIBLE"), //NOI18N
+
        /**
         * Only visible to members (and administrators)
         */
-       MEMBERS("USER_PROFILE_MODE_MEMBERS"), //NOI18N
+       MEMBERS("PROFILE_MODE_MEMBERS"), //NOI18N
+
        /**
         * Visible to all (public in Internet)
         */
-       PUBLIC("USER_PROFILE_MODE_PUBLIC"); //NOI18N
+       PUBLIC("PROFILE_MODE_PUBLIC"); //NOI18N
 
        /**
         * Message key (i18n)
@@ -54,6 +56,7 @@ public enum ProfileMode implements Serializable {
 
        /**
         * Getter for message key (i18n)
+        * <p>
         * @return Message key
         */
        public String getMessageKey () {