Class AccessPolicyResourceData

java.lang.Object
com.thortech.xl.vo.AccessPolicyResourceData
All Implemented Interfaces:
Serializable

public class AccessPolicyResourceData extends Object implements Serializable
Value object for the Access Policy Data
Author:
Ashok Maram
See Also:
  • Constructor Details

    • AccessPolicyResourceData

      public AccessPolicyResourceData(long objectKey, String objectName, long formDefinitionKey, String formDefinitionName, String frmType)
      Constructor
      Parameters:
      objectKey - Resource Object Key
      objectName - Resource Object Name
      formDefinitionKey - Key of the parent form
      formDefinitionName - Name of the parent form
      frmType - form type
  • Method Details

    • getFormData

      public HashMap getFormData()
      Returns all the data set for the parent form
      Returns:
      HashMap representing the record. Key is the column name, Value is the column value
    • setFormData

      public void setFormData(HashMap parentFormData)
      Sets the data for the parent form
      Parameters:
      parentFormData - HashMap representing the record. Key is the column name, Value is the column value
    • addChildTableRecord

      public PolicyChildTableRecord addChildTableRecord(String tableKey, String tableName, String action, HashMap recordValues)
      Add Child Table Record and Action Type
      Parameters:
      tableKey - child tbale key to which record is added
      tableName - child tbale name to which record is added
      action - action indicates whether you want to add/delete a child table record. the values that should be provided are Add OR Delete
      recordValues - child table record data
      Returns:
      PolicyChildTableRecord object
    • removeChildTableRecord

      public void removeChildTableRecord(String tableKey, PolicyChildTableRecord record)
      Remove a Child Table Record from the value object
      Parameters:
      tableKey - table from which the record should be deleted
      record -
    • getChildTableRecords

      public PolicyChildTableRecord[] getChildTableRecords(String tableKey)
      Get all the Child Table Records for a particular child table
      Parameters:
      tableKey -
      Returns:
    • getChildTableRecords

      public ArrayList getChildTableRecords()
      Get all the Child Table Records
      Returns:
      a ArrayList containing Child table records
    • getChildTables

      public HashMap getChildTables()
      Get all Child Tables for which data has been provided
      Returns:
      a HashMap conating the child table key and table name
    • setValue

      public void setValue(String fieldName, String value)
      Sets the value for specified field in the form data
      Parameters:
      fieldName - name of the field in the form
      value - value to be set
    • getValue

      public String getValue(String fieldName)
      Gets the value for specified field from the form data
      Parameters:
      fieldName - fieldName for which to retreive the form data
      Returns:
      the value of the specified field in the formData
    • getObjectKey

      public long getObjectKey()
      Returns the key of the object for which data is specified
      Returns:
      Key of the object for which this data is specified
    • getObjectName

      public String getObjectName()
      Returns the name of the object for which data is specified
      Returns:
      Name of the object for which this data is specified
    • getFormDefinitionKey

      public long getFormDefinitionKey()
      Returns the key of the form definition for which data is specified
      Returns:
      Key of the form definition for which this data is specified
    • getFormName

      public String getFormName()
      Returns the name of the form for which data is specified
      Returns:
      Name of the form for which this data is specified
    • getFormType

      public String getFormType()
      Returns the type of the form for which data is specified
      Returns:
      Type of the form for which this data is specified