James Moger
2012-10-22 eba89539a29deba954035056437279088c3e047b
src/com/gitblit/Constants.java
@@ -255,6 +255,7 @@
      LIST_USERS, CREATE_USER, EDIT_USER, DELETE_USER, 
      LIST_TEAMS, CREATE_TEAM, EDIT_TEAM, DELETE_TEAM,
      LIST_REPOSITORY_MEMBERS, SET_REPOSITORY_MEMBERS, LIST_REPOSITORY_TEAMS, SET_REPOSITORY_TEAMS, 
      LIST_REPOSITORY_MEMBER_PERMISSIONS, SET_REPOSITORY_MEMBER_PERMISSIONS, LIST_REPOSITORY_TEAM_PERMISSIONS, SET_REPOSITORY_TEAM_PERMISSIONS,
      LIST_FEDERATION_REGISTRATIONS, LIST_FEDERATION_RESULTS, LIST_FEDERATION_PROPOSALS, LIST_FEDERATION_SETS,
      EDIT_SETTINGS, LIST_STATUS;
@@ -320,6 +321,8 @@
   public static enum AccessPermission {
      NONE("N"), VIEW("V"), CLONE("R"), PUSH("RW"), CREATE("RWC"), DELETE("RWD"), REWIND("RW+");
      
      public static final AccessPermission [] NEWPERMISSIONS = { VIEW, CLONE, PUSH, CREATE, DELETE, REWIND };
      public static AccessPermission LEGACY = REWIND;
      
      public final String code;
@@ -377,6 +380,10 @@
      }
   }
   
   public static enum RegistrantType {
      REPOSITORY, USER, TEAM;
   }
   @Documented
   @Retention(RetentionPolicy.RUNTIME)
   public @interface Unused {