Class NamespaceOptions
- java.lang.Object
-
- com.opencloud.rhino.management.deployment.NamespaceOptions
-
- All Implemented Interfaces:
Serializable
,Cloneable
public final class NamespaceOptions extends Object implements Cloneable, Serializable
Additional options that can be specified when creating a namespace to customise its behaviour and available resources.
- Since:
- Rhino 2.6.1
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NamespaceOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NamespaceOptions
clone()
boolean
equals(Object o)
String
getReplicatedStorageResource()
Get the name of the replicated storage resource.int
hashCode()
boolean
isWithSessionOwnershipFacility()
Get the flag indicating whether or not the namespace should include a session ownership facility.void
setReplicatedStorageResource(String replicatedStorageResource)
Set the name of the replicated storage resource.void
setWithSessionOwnershipFacility(boolean withSessionOwnershipFacility)
Set the flag indicating whether or not the namespace should include a session ownership facility.String
toString()
-
-
-
Method Detail
-
setReplicatedStorageResource
public void setReplicatedStorageResource(String replicatedStorageResource)
Set the name of the replicated storage resource.
- Parameters:
replicatedStorageResource
- the replicated storage resource name.- Since:
- Rhino 2.6.1
-
getReplicatedStorageResource
public String getReplicatedStorageResource()
Get the name of the replicated storage resource.
- Returns:
- the replicated storage resource name.
- Since:
- Rhino 2.6.1
-
setWithSessionOwnershipFacility
public void setWithSessionOwnershipFacility(boolean withSessionOwnershipFacility)
Set the flag indicating whether or not the namespace should include a session ownership facility.
- Parameters:
withSessionOwnershipFacility
-true
if the namespace should include a session ownership facility,false
otherwise.- Since:
- Rhino 2.6.1
-
isWithSessionOwnershipFacility
public boolean isWithSessionOwnershipFacility()
Get the flag indicating whether or not the namespace should include a session ownership facility.
- Returns:
true
if the namespace should include a session ownership facility,false
otherwise.- Since:
- Rhino 2.6.1
-
clone
public NamespaceOptions clone()
-
-