public abstract class ParameterOperation extends Object implements MessageOperation
abstract Java class facilitates the management of operations dedicated to SAP CC system parameters;
This class serves as a base Java class.
Consider the subclasses that extend this Java class.
Note
Consider the ParameterOperationResult class that represents the results of these particular operations.
AdminParameterModel| Modifier and Type | Field and Description |
|---|---|
static String |
PARAM_NAME
Constant for the XMl mapping of the name of the parameter: "parameterName"
|
static String |
SCOPE
Constant for the XML mapping of the scope: "scope"
|
static String |
VALUE
Constant for the XML mapping of the value: "value"
|
| Constructor and Description |
|---|
ParameterOperation() |
| Modifier and Type | Method and Description |
|---|---|
String |
getParameterName()
Gets the parameter name for which value must be returned.
|
Scope |
getScope()
Gets the scope for which value must be returned.
|
String |
getValue() |
boolean |
isMemoryScope() |
boolean |
isPersistentScope() |
void |
setParameterName(String parameterName)
Sets the parameter name for which value must be returned.
|
void |
setScope(Scope scope)
Sets the scope for which value must be returned.
|
void |
setValue(String value) |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetNameaddCharacterData, addChild, marshal, setAttributespublic static final String PARAM_NAME
public static final String SCOPE
public static final String VALUE
public void setParameterName(String parameterName)
parameterName - The string name of the parameterpublic String getParameterName()
public void setScope(Scope scope)
scope - The scopepublic Scope getScope()
public String getValue()
public void setValue(String value)
public boolean isPersistentScope()
public boolean isMemoryScope()