com.atlassian.confluence.it
Enum GlobalPermission

java.lang.Object
  extended by java.lang.Enum<GlobalPermission>
      extended by com.atlassian.confluence.it.GlobalPermission
All Implemented Interfaces:
Permission, Serializable, Comparable<GlobalPermission>

public enum GlobalPermission
extends Enum<GlobalPermission>
implements Permission


Enum Constant Summary
ATTACH_TO_PROFILE
           
CAN_USE
           
CAN_VIEW_USER_PROFILES
          This only applies to Anonymous users.
CONFLUENCE_ADMIN
           
CREATE_SPACE
           
PERSONAL_SPACE
           
PROFILE_ATTACHMENTS
           
SYSTEM_ADMIN
           
UPDATE_STATUS
           
 
Method Summary
 String getLowerValue()
           
 String getValue()
           
 String toCheckboxName(Entity entity)
           
static GlobalPermission valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GlobalPermission[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CAN_USE

public static final GlobalPermission CAN_USE

ATTACH_TO_PROFILE

public static final GlobalPermission ATTACH_TO_PROFILE

CAN_VIEW_USER_PROFILES

public static final GlobalPermission CAN_VIEW_USER_PROFILES
This only applies to Anonymous users.


CONFLUENCE_ADMIN

public static final GlobalPermission CONFLUENCE_ADMIN

SYSTEM_ADMIN

public static final GlobalPermission SYSTEM_ADMIN

CREATE_SPACE

public static final GlobalPermission CREATE_SPACE

UPDATE_STATUS

public static final GlobalPermission UPDATE_STATUS

PERSONAL_SPACE

public static final GlobalPermission PERSONAL_SPACE

PROFILE_ATTACHMENTS

public static final GlobalPermission PROFILE_ATTACHMENTS
Method Detail

values

public static GlobalPermission[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (GlobalPermission c : GlobalPermission.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static GlobalPermission valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getValue

public String getValue()
Specified by:
getValue in interface Permission

getLowerValue

public String getLowerValue()
Specified by:
getLowerValue in interface Permission
Returns:
the value converted to lower-case

toCheckboxName

public String toCheckboxName(Entity entity)


Copyright © 2003-2012 Atlassian. All Rights Reserved.