|
GigaSpaces XAP 7.1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DeploymentIsolationLevel>
org.openspaces.admin.esm.deployment.DeploymentIsolationLevel
public enum DeploymentIsolationLevel
Specifies the deployment isolation level (per processing unit).
PUBLIC
- A machine is shared by multiple tenants. Deployment of one tenant can co-exist
with other deployments.
SHARED
- A machine is shared by a specific tenant. No other tenant can use this machine.
Deployments of one tenant can co-exist with other deployments of the same tenant.
DEDICATED
- A machine is dedicated to a single tenant. No other tenant can use this
machine. Only a single deployment will be exist on this machine.
Disclaimer: This interface and the elastic data grid functionality is provided as a technology preview in XAP 7.1. As such, it is subject to API and behavior changes in the next XAP releases without going through the usual deprecation process of the XAP API.
Enum Constant Summary | |
---|---|
DEDICATED
dedicated to a single tenant |
|
PUBLIC
public to all tenants |
|
SHARED
shared by a specific tenant |
Method Summary | |
---|---|
static DeploymentIsolationLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static DeploymentIsolationLevel[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final DeploymentIsolationLevel PUBLIC
public static final DeploymentIsolationLevel SHARED
public static final DeploymentIsolationLevel DEDICATED
Method Detail |
---|
public static final DeploymentIsolationLevel[] values()
for(DeploymentIsolationLevel c : DeploymentIsolationLevel.values()) System.out.println(c);
public static DeploymentIsolationLevel valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
GigaSpaces XAP 7.1 API | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |