Enum AdminCollections
- java.lang.Object
-
- java.lang.Enum<AdminCollections>
-
- fr.gouv.vitam.access.external.api.AdminCollections
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AdminCollections>
public enum AdminCollections extends java.lang.Enum<AdminCollections>
All collections in functional admin module
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_CONTRACTS
Access contracts collectionACCESSION_REGISTER_DETAILS
Accession register detail collectionACCESSION_REGISTERS
Accession register summarry collectionACCESSION_REGISTERS_SYMBOLIC
Accession register symbolic collectionAGENCIES
Agencies collectionARCHIVE_UNIT_PROFILE
Archive unit profile collectionCONTEXTS
Context collectionFORMATS
Formats CollectionGRIFFIN
INGEST_CONTRACTS
Ingest contracts collectionMANAGEMENT_CONTRACTS
Managemnent contracts collectionONTOLOGY
Ontology collectionPRESERVATION_SCENARIO
PROFILE
Profile collectionRULES
Rules CollectionSECURITY_PROFILES
Security profile collectionTRACEABILITY
Traceability collection
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCheckURI()
Get the checkUrijava.lang.String
getName()
Get the name of the collectionstatic AdminCollections
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AdminCollections[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FORMATS
public static final AdminCollections FORMATS
Formats Collection
-
RULES
public static final AdminCollections RULES
Rules Collection
-
INGEST_CONTRACTS
public static final AdminCollections INGEST_CONTRACTS
Ingest contracts collection
-
ACCESS_CONTRACTS
public static final AdminCollections ACCESS_CONTRACTS
Access contracts collection
-
MANAGEMENT_CONTRACTS
public static final AdminCollections MANAGEMENT_CONTRACTS
Managemnent contracts collection
-
AGENCIES
public static final AdminCollections AGENCIES
Agencies collection
-
PROFILE
public static final AdminCollections PROFILE
Profile collection
-
CONTEXTS
public static final AdminCollections CONTEXTS
Context collection
-
ACCESSION_REGISTERS
public static final AdminCollections ACCESSION_REGISTERS
Accession register summarry collection
-
ACCESSION_REGISTERS_SYMBOLIC
public static final AdminCollections ACCESSION_REGISTERS_SYMBOLIC
Accession register symbolic collection
-
ACCESSION_REGISTER_DETAILS
public static final AdminCollections ACCESSION_REGISTER_DETAILS
Accession register detail collection
-
ARCHIVE_UNIT_PROFILE
public static final AdminCollections ARCHIVE_UNIT_PROFILE
Archive unit profile collection
-
TRACEABILITY
public static final AdminCollections TRACEABILITY
Traceability collection
-
SECURITY_PROFILES
public static final AdminCollections SECURITY_PROFILES
Security profile collection
-
ONTOLOGY
public static final AdminCollections ONTOLOGY
Ontology collection
-
GRIFFIN
public static final AdminCollections GRIFFIN
-
PRESERVATION_SCENARIO
public static final AdminCollections PRESERVATION_SCENARIO
-
-
Method Detail
-
values
public static AdminCollections[] 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 (AdminCollections c : AdminCollections.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdminCollections valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getName
public java.lang.String getName()
Get the name of the collection- Returns:
- the name of the collection
-
getCheckURI
public java.lang.String getCheckURI()
Get the checkUri- Returns:
- the checkUri
-
-