Package com.attivio.sdk.client.trigger
Class TriggerDictionaryName
- java.lang.Object
-
- com.attivio.sdk.client.trigger.TriggerDictionaryName
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
- Direct Known Subclasses:
TriggerDictionaryInfo
public class TriggerDictionaryName extends java.lang.Object implements java.lang.Cloneable, java.io.Serializable
Representes the name of a trigger dictionary.Trigger dictionaries may be in a namespace. The default namespace is
null
. Trigger dictionaries in a non-default namespace will not be user-editable via the trigger management UI.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TriggerDictionaryName()
TriggerDictionaryName(java.lang.String name)
TriggerDictionaryName(java.lang.String namespace, java.lang.String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description TriggerDictionaryName
clone()
boolean
equals(java.lang.Object other)
java.lang.String
getName()
Get the name of this dictionary.java.lang.String
getNamespace()
Get the namespace for this dictionary.int
hashCode()
void
setName(java.lang.String value)
Set the name of this dictionary.void
setNamespace(java.lang.String value)
Set the namespace for this dictionary.java.lang.String
toString()
static java.lang.String
toString(TriggerDictionaryName name)
Get the dictionary name forname
as a string.static TriggerDictionaryName
valueOf(java.lang.String value)
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Get the name of this dictionary.
-
setName
public void setName(java.lang.String value)
Set the name of this dictionary.
-
getNamespace
public java.lang.String getNamespace()
Get the namespace for this dictionary.
-
setNamespace
public void setNamespace(java.lang.String value)
Set the namespace for this dictionary.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
clone
public TriggerDictionaryName clone()
- Overrides:
clone
in classjava.lang.Object
-
valueOf
public static TriggerDictionaryName valueOf(java.lang.String value)
-
toString
public static java.lang.String toString(TriggerDictionaryName name)
Get the dictionary name forname
as a string.Returns
null
ifname
isnull
.
-
-