Class AbstractSetProperty
- java.lang.Object
-
- org.apache.jackrabbit.standalone.cli.core.AbstractSetProperty
-
- All Implemented Interfaces:
org.apache.commons.chain.Command
- Direct Known Subclasses:
SetBinaryProperty,SetMultivalueProperty,SetProperty
public abstract class AbstractSetProperty extends Object implements org.apache.commons.chain.Command
SetProperty superclass.
-
-
Constructor Summary
Constructors Constructor Description AbstractSetProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetNameKey()StringgetParentPathKey()StringgetTypeKey()StringgetValueKey()voidsetNameKey(String nameKey)Sets the name keyvoidsetParentPathKey(String parentPathKey)Sets the parent path keyvoidsetTypeKey(String typeKey)Sets the type keyvoidsetValueKey(String valueKey)
-
-
-
Method Detail
-
getValueKey
public String getValueKey()
- Returns:
- Returns the valueKey.
-
setValueKey
public void setValueKey(String valueKey)
- Parameters:
valueKey- Set the context attribute key for the value attribute.
-
getParentPathKey
public String getParentPathKey()
- Returns:
- the parent path key
-
setParentPathKey
public void setParentPathKey(String parentPathKey)
Sets the parent path key- Parameters:
parentPathKey- the parent path key
-
getNameKey
public String getNameKey()
- Returns:
- the name key
-
setNameKey
public void setNameKey(String nameKey)
Sets the name key- Parameters:
nameKey- the name key
-
getTypeKey
public String getTypeKey()
- Returns:
- the type key
-
setTypeKey
public void setTypeKey(String typeKey)
Sets the type key- Parameters:
typeKey- the type key
-
-