Package org.openstack4j.model.barbican
Interface Secret
-
- All Superinterfaces:
Buildable<SecretCreateBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
BarbicanSecret
public interface Secret extends ModelEntity, Buildable<SecretCreateBuilder>
Created by reneschollmeyer on 02.08.17.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAlgorithm()IntegergetBitLength()Map<String,String>getContentTypes()DategetCreateTime()StringgetCreatorId()DategetExpiration()StringgetMode()StringgetName()StringgetPayload()StringgetPayloadContentEncoding()StringgetPayloadContentType()StringgetSecretReference()StringgetSecretType()StringgetStatus()DategetUpdateTime()
-
-
-
Method Detail
-
getAlgorithm
String getAlgorithm()
- Returns:
- algorithm.
-
getBitLength
Integer getBitLength()
- Returns:
- bit length of the secret. Must be greater than zero.
-
getCreateTime
Date getCreateTime()
- Returns:
- system generated creation time.
-
getUpdateTime
Date getUpdateTime()
- Returns:
- system generated last update time.
-
getCreatorId
String getCreatorId()
- Returns:
- user uuid of the creator of this secret.
-
getExpiration
Date getExpiration()
- Returns:
- expiration of the secret.
-
getMode
String getMode()
- Returns:
- mode of the secret.
-
getName
String getName()
- Returns:
- name of the secret.
-
getSecretReference
String getSecretReference()
- Returns:
- URL reference to the secret.
-
getSecretType
String getSecretType()
- Returns:
- secret type.
-
getStatus
String getStatus()
- Returns:
- current status of the secret.
-
getPayload
String getPayload()
- Returns:
- stored secret data.
-
getPayloadContentType
String getPayloadContentType()
- Returns:
- content type of the secret data.
-
getPayloadContentEncoding
String getPayloadContentEncoding()
- Returns:
- encoding used for the data.
-
-