Class ValueObject

java.lang.Object
oracle.iam.policyengine.vo.ValueObject
All Implemented Interfaces:
Serializable, Map

public class ValueObject extends Object implements Map, Serializable
See Also:
  • Field Details

  • Constructor Details

    • ValueObject

      public ValueObject()
  • Method Details

    • add

      public void add(String path, Object value)
    • getBoolean

      public boolean getBoolean(String name)
    • getDate

      public Date getDate(String name)
      Coerce an object into a date.
    • getDate

      public Date getDate(String name, boolean throwExceptions) throws ValueObjectException
      Coerce an object into a date.
      Throws:
      ValueObjectException
    • getInt

      public int getInt(String name)
      Coerce an Object into an int primitive.
    • getList

      public List getList(String name)
    • getListOfStrings

      public List getListOfStrings(String name)
    • getLong

      public long getLong(String name)
      Coerce an Object value into a long primitive.
    • getObject

      public ValueObject getObject(String name)
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getString

      public String getString(String name)
    • getAttributes

      public Map getAttributes()
    • putAttributesNoPath

      public void putAttributesNoPath(Map<String,Object> attrs)
    • size

      public int size()
      Specified by:
      size in interface Map
    • isEmpty

      public boolean isEmpty()
      Specified by:
      isEmpty in interface Map
    • containsKey

      public boolean containsKey(Object key)
      Specified by:
      containsKey in interface Map
    • containsValue

      public boolean containsValue(Object value)
      Specified by:
      containsValue in interface Map
    • get

      public Object get(Object key)
      Retrieve a path from the ValueObject based on the specified key. In savePath mode (i.e. for IdentityAudit) always return an EvalList In standard mode do a standard path fetch
      Specified by:
      get in interface Map
      Parameters:
      key -
      Returns:
    • put

      public Object put(Object key, Object value) throws IllegalArgumentException
      Specified by:
      put in interface Map
      Throws:
      IllegalArgumentException
    • remove

      public Object remove(Object key) throws IllegalArgumentException
      Specified by:
      remove in interface Map
      Throws:
      IllegalArgumentException
    • putAll

      public void putAll(Map src)
      Specified by:
      putAll in interface Map
    • clear

      public void clear()
      Specified by:
      clear in interface Map
    • keySet

      public Set keySet()
      Specified by:
      keySet in interface Map
    • values

      public Collection values()
      Specified by:
      values in interface Map
    • entrySet

      public Set entrySet()
      Specified by:
      entrySet in interface Map
    • getLocal

      public Object getLocal(String keyName)
      Retrieve value by key, using alias for key if one exists
      Parameters:
      keyName - - Name of the key, may be an alias
      Returns:
      value
    • getPathToRoot

      public String getPathToRoot()
    • setSavePath

      public void setSavePath(boolean savePath)
    • createEvalListMap

      public void createEvalListMap()
      Evaluate each path in the tokenizerMap as if evaluating against a condition and save the resulting EvalList objects in a map for later user.
    • setTokenizerMap

      public void setTokenizerMap(Map<String,StringTokenizerTS> tmpMap)
    • setTokenizerPathMap

      public void setTokenizerPathMap(Map<String,String> tmpMap)
    • getTokenizerMap

      public Map<String,StringTokenizerTS> getTokenizerMap()
    • getEvalListMapSize

      public int getEvalListMapSize()
    • dateToString

      public static String dateToString(Date src)
      Format a Date value as a String, using the usual "American" format with the current time zone. NOTE: The "American" format doesn't sort worth a damn.
    • dateToString

      public static String dateToString(Date date, String simpleDateFormatPattern)
      Returns:
      a string representing a specified date in the specified format.
    • isPath

      public static boolean isPath(String s)
      Determine if string is a path. It is a path if it contains a '.' or '[' character. This was done to replace 2 indexOf() calls which were found to be taking a significant amount of time for some scenarios
      Parameters:
      s -
      Returns:
      true if a path, false otherwise
    • getInt

      public static int getInt(Object v)
      Coerce an Object into an int primitive.
      Parameters:
      v - number or string representation of a number
      Returns:
      int value, possibly truncated, of v
    • flattenList

      public static void flattenList(List<Object> inList, List<Object> retList)
      Flatten out an input list that may contain list entries. Flattened list is contained in retList No entries are removed from retList. Only new non-List entities are added.
      Parameters:
      inList -
      retList -
    • splitPathAroundLastDot

      public static void splitPathAroundLastDot(String tmpPath, StringBuilder sbVo, StringBuilder sbAttr)
      Divide up a path based on the last '.' in the path. sbVo will contain everything to the left and sbAttr will contain everything to the right If path does not have any '.' characters then entire path is put into sbVo
      Parameters:
      tmpPath -
      sbVo -
      sbAttr -
    • decodeCommaString

      public static List decodeCommaString(String src)
      Parse a comma delimited string into a List of strings.
      Parameters:
      src - comma separated list of values
      Returns:
      list of values
    • decodeCommaString

      public static List decodeCommaString(String src, boolean filterEmpty)
    • stringToDate

      public static Date stringToDate(String src) throws ParseException
      Throws:
      ParseException