All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openstack4j.model.barbican.Container Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show 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 getConsumers();

    /**
     * @return associated secrets.
     */
    List getSecretReferences();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy