Portlet Definition represents a specification of the portlet. It includes information about the implementing class, the name, searchable keywords, supported portlet modes, default set of portlet preferences etc. It is an object representation of the JSR 168 XML portlet descriptor file that is provided along with code and other resources at deployment time. Portlet Definition is used as a template each time a new instance of the portlet is created.
| Column Name | Column Datatype | Column Null Option | Column Comment |
| portlet_defn_id | nvarchar(64) | not null | A unique identifier for portlet definition. It is a generated uuid. |
| namespace | nvarchar(256) | with null | A namespace for this portlet definition. It is mostly used for classifying this resource in Access Control engine. |
| portlet_defn_alias | nvarchar(128) | not null | A unique alias for this portlet definition.Alias is a user friendly id, so that portlet definitions can be referenced through a portlet tag form any arbitrarty web page. |
| class_name | nvarchar(256) | with null | A class name of the Java class that implements this portlet. |
| defn_name | nvarchar(128) | with null | The name of this portlet. |
| title | nvarchar(128) | with null | The title of this portlet. |
| short_title | nvarchar(64) | with null | The short title of this portlet. |
| keywords | nvarchar(256) | with null | A String containing keywords associated with this entity. |
| initial_params | long nvarchar | with null | A string representation of the java.util.Properties that hold the initialization parameters for this portlet. |
| defn_prefs | long nvarchar | with null | A string representation of the java.util.Properties that hold the definition level preferences for this portlet. |
| supported_portlet_modes | long nvarchar | with null | A string representation of the java.util.Properties that hold supported portlet modes for this portlet. Portlet modes are organized by the mime type. |
| expiration_cache | integer | with null | Holds the cache expiration parameters for portlet. |
| display_name_map | long nvarchar | with null | A string representation of the java.util.Properties that hold display names for this portlet. Display names are organized by the locale. |
| resource_bundle | nvarchar(256) | with null | Stores the resource bundle for portlet. |
| supported_locales | long nvarchar | with null | A string representation of the java.lang.String[] that hold supported locales for this portlet. |
| preference_validator | nvarchar(256) | with null | Holds the class name of the preference validator for portlet. |
| desc_map | long nvarchar | with null | A string representation of the java.util.Properties that hold descriptions for this portlet. Descriptions are organized by the locale. |
| security_role_refs | long nvarchar | with null | A string representation of the SecurityRoleRef[] that hold security roles for this portlet. |
| portlet_defn_edition | integer | with null | Represents the version of portlet definition. This field is incremented each time definition is updated. It is used to prevent stale updates. Valid values are positive numbers. |
| creation_date | integer(8) | with null | Represents the creation date of the portlet definition. It is stored as a long representing number of milliseconds. |
| last_modification_date | integer(8) | with null | Represents the last modification date of the portlet definition. It is stored as a long representing number of milliseconds. |
| is_local_enabled | integer | with null | Flag that denotes whether this portlet is enabled. If it is disabled all its entities will be made unavailable. Possible values are 0 (false), 1 (true). This filed is not a Boolean because it is not possible to constrain on a boolean in EJBQL. |
| is_remote_enabled | integer | with null | Flag that denotes whether this portlet is remote enabled, if can be exposed to remote consumers through WSRP. Possible values are 0 (false), 1 (true). This filed is not a Boolean because it is not possible to constrain on a boolean in EJBQL. |
| is_reg_required | integer | with null | Indicates if portlet requires registration if it is exposed through WSRP. |
| shared_param_list | long nvarchar | with null | A string representation of the SharedParameterMapping that hold security roles for this portlet. |
| portlet_applic_id | nvarchar(64) | with null | A unique identifier for portlet portletApplication. |
| portal_instance_id | nvarchar(64) | with null | Id of the portal instance. |
Product Name: Portal r12
Table Type: Table