Package com.atlassian.confluence.it
Enum SpacePermission
- java.lang.Object
-
- java.lang.Enum<SpacePermission>
-
- com.atlassian.confluence.it.SpacePermission
-
- All Implemented Interfaces:
Permission
,Serializable
,Comparable<SpacePermission>
@Deprecated public enum SpacePermission extends Enum<SpacePermission> implements Permission
Deprecated.Please use confluence-test-utils module instead. See {com.atlassian.confluence.test.api.permissions.SpacePermission} alternative- See Also:
SpacePermission
,PermissionsRpc
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADMINISTER
Deprecated.ATTACHMENT_CREATE
Deprecated.ATTACHMENT_REMOVE
Deprecated.BLOG_EDIT
Deprecated.BLOG_REMOVE
Deprecated.COMMENT
Deprecated.COMMENT_REMOVE
Deprecated.CONTENT_OWN_REMOVE
Deprecated.MAIL_REMOVE
Deprecated.PAGE_EDIT
Deprecated.PAGE_REMOVE
Deprecated.PAGE_RESTRICT
Deprecated.SPACE_EXPORT
Deprecated.VIEW
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static SpacePermission
fromValue(String str)
Deprecated.String
getLowerValue()
Deprecated.String
getValue()
Deprecated.static SpacePermission
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static SpacePermission[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VIEW
public static final SpacePermission VIEW
Deprecated.
-
CONTENT_OWN_REMOVE
public static final SpacePermission CONTENT_OWN_REMOVE
Deprecated.
-
PAGE_EDIT
public static final SpacePermission PAGE_EDIT
Deprecated.
-
PAGE_REMOVE
public static final SpacePermission PAGE_REMOVE
Deprecated.
-
PAGE_RESTRICT
public static final SpacePermission PAGE_RESTRICT
Deprecated.
-
BLOG_EDIT
public static final SpacePermission BLOG_EDIT
Deprecated.
-
BLOG_REMOVE
public static final SpacePermission BLOG_REMOVE
Deprecated.
-
COMMENT
public static final SpacePermission COMMENT
Deprecated.
-
COMMENT_REMOVE
public static final SpacePermission COMMENT_REMOVE
Deprecated.
-
ATTACHMENT_CREATE
public static final SpacePermission ATTACHMENT_CREATE
Deprecated.
-
ATTACHMENT_REMOVE
public static final SpacePermission ATTACHMENT_REMOVE
Deprecated.
-
SPACE_EXPORT
public static final SpacePermission SPACE_EXPORT
Deprecated.
-
MAIL_REMOVE
public static final SpacePermission MAIL_REMOVE
Deprecated.
-
ADMINISTER
public static final SpacePermission ADMINISTER
Deprecated.
-
-
Method Detail
-
values
public static SpacePermission[] values()
Deprecated.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 (SpacePermission c : SpacePermission.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SpacePermission valueOf(String name)
Deprecated.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 nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
Deprecated.- Specified by:
getValue
in interfacePermission
-
getLowerValue
public String getLowerValue()
Deprecated.- Specified by:
getLowerValue
in interfacePermission
- Returns:
- the value converted to lower-case
-
fromValue
public static SpacePermission fromValue(String str)
Deprecated.
-
-