Registration Data stores information about the WSRP Consumer such as the name, what kind of agent it is, what custom modes it supports, custom window states, supported methods, etc.
| Column Name | Column Datatype | Column Null Option | Column Comment |
| wsrp_reg_data_id | nvarchar(64) | not null | A unique identifier for registration data. It is a generated uuid. |
| cons_agent | nvarchar(128) | with null | Name and version of Consumer's vendor. Usually it is of the form: productName.majorVersion.minorVersion |
| method_get_supported | integer | with null | Flag that denotes whether the get method is supported on a particular consumer. Possible values are 0 (false), 1 (true). filed is not a Boolean because it is not possible to constrain on a boolean in EJBQL. |
| cons_modes | long nvarchar | with null | Represents custom modes of the consumer. It is stored as a String representation of String[] |
| cons_window_states | long nvarchar | with null | Represents custom window states of the consumer. It is stored as a String representation of String[] |
| cons_user_scopes | long nvarchar | with null | Represents custom user scopes of the consumer. It is stored as a String representation of String[] |
| cons_user_profile_data | long nvarchar | with null | Represents user profile data for the consumer. It is stored as a String representation of String[]. |
| reg_props | long nvarchar | with null | A string representation of the java.util.Properties that hold the registration properties of the consumer. |
| cons_name | long nvarchar | with null | Represents the name of the consumer. Often it is Consumer's URL. |
Product Name: Portal r12
Table Type: Table
Relationships:
| Primary Key | Related Table | Related Column |
| wsrp_reg_data_id |