Package oracle.iam.provisioning.vo
Class FormInfo
java.lang.Object
oracle.iam.provisioning.vo.FormInfo
- All Implemented Interfaces:
Serializable
This value object class represents the process form.
This value object represents an entry in SDK table.
- Since:
- 11.1.2.0.0
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addFormField
(FormField formField) This method adds the form field in the list of form field associated to this process form.This method gets the active version of the process form (SDK_ACTIVE_VERSION).This method gets the description of the process form (SDK_FORM_DESCRIPTION).getFormField
(String fldName) This method gets the specific form field details provided a form field name.This method gets the form fields of this process form.long
This method gets the primary key of the form (SDK_KEY).This method gets the latest version of the process form (SDK_LATEST_VERSION).getName()
This method gets the name of the process form (SDK_NAME).boolean
isChild()
This method returns if the form is a child form.void
setActiveVersion
(String activeVersion) This method sets the active version of the process form (SDK_ACTIVE_VERSION).void
setChild
(boolean isChild) This method sets if the form is a child form.void
setDescription
(String description) This method sets the description of the process form (SDK_FORM_DESCRIPTION).void
setFormFields
(List<FormField> formFields) This method gets the details of the list of form field provided a list of form field name.void
setFormKey
(long formKey) This method sets the primary key of the form (SDK_KEY) in the value object.void
setLatestVersion
(String latestVersion) This method sets the latest version of the process form (SDK_LATEST_VERSION).void
This method sets the name of the process form (SDK_NAME).
-
Field Details
-
serialVersionUID
public static final long serialVersionUID- See Also:
-
-
Constructor Details
-
FormInfo
public FormInfo() -
FormInfo
- Parameters:
name
- name of the process form. (SDK_NAME)description
- description of the process form (SDK_FORM_DESCRIPTION)latestVersion
- the latest version of the process form (SDK_LATEST_VERSION).activeVersion
- the active version of the process form (SDK_ACTIVE_VERSION).
-
-
Method Details
-
getName
This method gets the name of the process form (SDK_NAME).- Returns:
- the name of the process form (SDK_NAME).
-
setName
This method sets the name of the process form (SDK_NAME).- Parameters:
name
- the name of the process form (SDK_NAME).
-
getDescription
This method gets the description of the process form (SDK_FORM_DESCRIPTION).- Returns:
- the description of the process form (SDK_FORM_DESCRIPTION).
-
setDescription
This method sets the description of the process form (SDK_FORM_DESCRIPTION).- Parameters:
description
- the description of the process form (SDK_FORM_DESCRIPTION).
-
getLatestVersion
This method gets the latest version of the process form (SDK_LATEST_VERSION).- Returns:
- the latest version of the process form (SDK_LATEST_VERSION).
-
setLatestVersion
This method sets the latest version of the process form (SDK_LATEST_VERSION).- Parameters:
latestVersion
- the latest version of the process form (SDK_LATEST_VERSION).
-
getActiveVersion
This method gets the active version of the process form (SDK_ACTIVE_VERSION).- Returns:
- the active version of the process form (SDK_ACTIVE_VERSION).
-
setActiveVersion
This method sets the active version of the process form (SDK_ACTIVE_VERSION).- Parameters:
activeVersion
- the active version of the process form (SDK_ACTIVE_VERSION).
-
isChild
public boolean isChild()This method returns if the form is a child form.- Returns:
- true if the form is a child form.
-
setChild
public void setChild(boolean isChild) This method sets if the form is a child form.- Parameters:
isChild
- set true if the form is a child form.
-
getFormFields
This method gets the form fields of this process form. (SDC entries for this SDK)- Returns:
- the form fields of this process form. (SDC entries for this SDK)
-
getFormField
This method gets the specific form field details provided a form field name.- Parameters:
fldName
- the process form field name- Returns:
- FormField value object for a given form field name.
-
setFormFields
This method gets the details of the list of form field provided a list of form field name.- Parameters:
formFields
- the details of the list of form field provided a list of form field name.
-
addFormField
This method adds the form field in the list of form field associated to this process form.- Parameters:
formField
- the form field that needs to be added in the list of form field associated to this process form.
-
getFormKey
public long getFormKey()This method gets the primary key of the form (SDK_KEY).- Returns:
- the primary key of the form (SDK_KEY).
-
setFormKey
public void setFormKey(long formKey) This method sets the primary key of the form (SDK_KEY) in the value object.- Parameters:
formKey
- the primary key of the form (SDK_KEY).
-