org.ligoj.app.plugin.id.resource.ContainerWithScopeVo Maven / Gradle / Ivy
/*
* Licensed under MIT (https://github.com/ligoj/ligoj/blob/master/LICENSE)
*/
package org.ligoj.app.plugin.id.resource;
import org.ligoj.bootstrap.core.NamedBean;
import lombok.Getter;
import lombok.Setter;
/**
* Container with scope.
* DN is not exposed, Original CN (not normalized) is exposed as {@link #getName()}}
*/
@Getter
@Setter
public class ContainerWithScopeVo extends NamedBean {
/**
* SID, for Hazelcast
*/
private static final long serialVersionUID = 1L;
/**
* Scope name.
*/
private String scope;
/**
* Is this container is locked? A locked container cannot be created or deleted from the UI. It's likely a vital
* organizational container.
*/
private boolean locked;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy