Class ParameterOperation

java.lang.Object
com.highdeal.admin.hci.ParameterOperation
All Implemented Interfaces:
MessageOperation, XMLMarshallable
Direct Known Subclasses:
GetParameterValueOp, ResetParameterValueOp, SetParameterValueOp

public abstract class ParameterOperation extends Object implements MessageOperation
This abstract Java class facilitates the management of operations dedicated to SAP CC system parameters; This class serves as a base Java class.

Implementation in Your Client Application

Consider the subclasses that extend this Java class.

Note

Consider the ParameterOperationResult class that represents the results of these particular operations.

Related Operations

See Also:
  • Field Details

    • PARAM_NAME

      public static final String PARAM_NAME
      Constant for the XMl mapping of the name of the parameter: "parameterName"
      See Also:
    • SCOPE

      public static final String SCOPE
      Constant for the XML mapping of the scope: "scope"
      See Also:
    • VALUE

      public static final String VALUE
      Constant for the XML mapping of the value: "value"
      See Also:
  • Constructor Details

    • ParameterOperation

      public ParameterOperation()
  • Method Details

    • setParameterName

      public void setParameterName(String parameterName)
      Sets the parameter name for which value must be returned.
      Parameters:
      parameterName - The string name of the parameter
    • getParameterName

      public String getParameterName()
      Gets the parameter name for which value must be returned.
      Returns:
      The name of the parameter
    • setScope

      public void setScope(Scope scope)
      Sets the scope for which value must be returned.
      Parameters:
      scope - The scope
    • getScope

      public Scope getScope()
      Gets the scope for which value must be returned.
      Returns:
      The scope
    • getValue

      public String getValue()
    • setValue

      public void setValue(String value)
    • isPersistentScope

      public boolean isPersistentScope()
    • isMemoryScope

      public boolean isMemoryScope()