![JAR search and dependency download from the Maven repository](/logo.png)
org.openstack4j.model.barbican.Container Maven / Gradle / Ivy
The newest version!
package org.openstack4j.model.barbican;
import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.barbican.builder.ContainerCreateBuilder;
import java.util.Date;
import java.util.List;
/**
* Project storage unit for secrets.
*/
public interface Container extends ModelEntity, Buildable {
/**
* @return current status of the container.
*/
String getStatus();
/**
* @return container type (generic, rsa, certificate).
*/
String getType();
/**
* @return name of the container.
*/
String getName();
/**
* @return system generated last update time.
*/
Date getUpdatedTime();
/**
* @return system generated creation time.
*/
Date getCreatedTime();
/**
* @return URL reference to the container.
*/
String getContainerReference();
/**
* @return user uuid of the creator of this container.
*/
String getCreatorId();
/**
* @return current consumers of this container.
*/
List extends ContainerConsumer> getConsumers();
/**
* @return associated secrets.
*/
List extends ContainerSecret> getSecretReferences();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy