|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RepositoryOptions.Visibility>
com.sap.ecm.api.RepositoryOptions.Visibility
public static enum RepositoryOptions.Visibility
Specifies the repository visibility level. This options should be carefully considered as it directly impacts the visibility and isolation of the repository.
Enum Constant Summary | |
---|---|
CERTPROTECTED
A CERTPROTECTED repository can only be accessed with a valid certificate. |
|
PRIVATE
A private repository is visible only to the application which created the repository. |
|
PROTECTED
A protected repository is secured with an authentication key, that is provided by the application. |
|
PUBLIC
A public repository is not protected and can be accessed from all applications that know the unique name or id of the repository. |
Method Summary | |
---|---|
static RepositoryOptions.Visibility |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RepositoryOptions.Visibility[] |
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 |
---|
public static final RepositoryOptions.Visibility PRIVATE
public static final RepositoryOptions.Visibility PROTECTED
public static final RepositoryOptions.Visibility CERTPROTECTED
public static final RepositoryOptions.Visibility PUBLIC
Method Detail |
---|
public static RepositoryOptions.Visibility[] values()
for (RepositoryOptions.Visibility c : RepositoryOptions.Visibility.values()) System.out.println(c);
public static RepositoryOptions.Visibility valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |