com.ibm.configurator.ddm.valueresolver

Class ResolutionResult

  • java.lang.Object
    • com.ibm.configurator.ddm.valueresolver.ResolutionResult


  • public class ResolutionResult
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor and Description
      ResolutionResult() 
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getSelectionCriteria()
      This method returns the resultant selection criteria.
      java.util.Map<java.lang.String,java.lang.String[]> getVariableValues()
      This method returns a map containing variables and its values.
      boolean isResolved()
      This method returns a boolean value indicating whether the values were resolved successfully.
      void setResolved(boolean isResolved)
      This method sets a boolean value indicating whether the values were resolved successfully.
      void setSelectionCriteria(java.lang.String selectionCriteria)
      This method sets the selection criteria.
      void setVariableValues(java.util.Map<java.lang.String,java.lang.String[]> variableValues)
      This method sets the variable values.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • ResolutionResult

        public ResolutionResult()
    • Method Detail

      • isResolved

        public boolean isResolved()
        This method returns a boolean value indicating whether the values were resolved successfully.
        Returns:
        true, if resolved. Otherwise false.
      • setResolved

        public void setResolved(boolean isResolved)
        This method sets a boolean value indicating whether the values were resolved successfully.
        Parameters:
        isResolved - true, if resolved. Otherwise false.
      • getSelectionCriteria

        public java.lang.String getSelectionCriteria()
        This method returns the resultant selection criteria.
        Returns:
        The resultant selection criteria.
      • setSelectionCriteria

        public void setSelectionCriteria(java.lang.String selectionCriteria)
        This method sets the selection criteria.
        Parameters:
        selectionCriteria - The selection criteria.
      • getVariableValues

        public java.util.Map<java.lang.String,java.lang.String[]> getVariableValues()
        This method returns a map containing variables and its values.
        Returns:
        The variable values.
      • setVariableValues

        public void setVariableValues(java.util.Map<java.lang.String,java.lang.String[]> variableValues)
        This method sets the variable values.
        Parameters:
        variableValues - The variable values.