Package com.thortech.xl.vo
Class ProvisioningData
java.lang.Object
com.thortech.xl.vo.ProvisioningData
- All Implemented Interfaces:
Serializable
- Author:
- malim This class deals with provisioning data like requester key, object key, organization key,
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionProvisioningData
(long requesterKey, long resourceObjectKey, long formKey) ProvisioningData
(long requesterKey, long resourceObjectKey, long formKey, Map formData) -
Method Summary
Modifier and TypeMethodDescriptiongetFormDataItem
(String name) Gets a specific item from thelong
long
long
void
setFormData
(Map formData) Stores the formData information.void
setFormDataItem
(String name, String value) sets an item to the formDatavoid
setFormKey
(long formKey) void
setRequesterKey
(long requesterKey) void
setResourceObjectKey
(long resourceObjectKey)
-
Constructor Details
-
ProvisioningData
public ProvisioningData() -
ProvisioningData
public ProvisioningData(long requesterKey, long resourceObjectKey, long formKey) -
ProvisioningData
-
-
Method Details
-
getFormKey
public long getFormKey()- Returns:
- Returns the formKey.
-
setFormKey
public void setFormKey(long formKey) - Parameters:
formKey
- The formKey to set.
-
getRequesterKey
public long getRequesterKey()- Returns:
- Returns the requesterKey.
-
setRequesterKey
public void setRequesterKey(long requesterKey) - Parameters:
requesterKey
- The requesterKey to set.
-
getResourceObjectKey
public long getResourceObjectKey()- Returns:
- Returns the resourceObjectKey.
-
setResourceObjectKey
public void setResourceObjectKey(long resourceObjectKey) - Parameters:
resourceObjectKey
- The resourceObjectKey to set.
-
getFormData
- Returns:
- Returns the formData.
-
setFormData
Stores the formData information. The key of the map is the "Structure Utility.Additional Columns.Key", which is the key of the column where the value is set for.- Parameters:
formData
- The formData to set.
-
setFormDataItem
sets an item to the formData- Parameters:
name
- the name of the item to insertvalue
- the value of the item to insert
-
getFormDataItem
Gets a specific item from the- Parameters:
name
- of the item to get from the formData- Returns:
- the value of the form data if it exists. Otherwise, returns null
-