dss_profile_slot

This table stores information from the properties of the ProfileSlot item descriptor in the userProfile.xml file.

Column

Data Type

Constraint

id

VARCHAR(25)

NOT NULL

(primary key)

The unique identifier of the persistent slot.

slot_name

VARCHAR(255)

NULL

The pathname of the persistent slot.

item_offset

NUMERIC(19)

NULL

Index into the list of slot repository items.

user_id

VARCHAR(25)

NOT NULL

The ID of the user with whom this slot is associated.

dss_slot_items

This table stores a list of repository items contained in a persistent slot. It is populated from the slotItems property in the userProfile.xml file.

Column

Data Type

Constraint

slot_id

VARCHAR(25)

NOT NULL REFERENCES dss_profile_slot(id)

(primary key)

The unique identifier of the persistent slot.

item_id

VARCHAR(255)

NULL

The ID of the repository item contained by the slot.

idx

INT

NOT NULL

(primary key)

An index used to order the repository items in the list.

dss_slot_priority

This table stores information about the priority of display for each repository item in a persistent slot. It is populated from the slotItemPriorities property in the userProfile.xml file.

Column

Data Type

Constraint

slot_id

VARCHAR(25)

NOT NULL

(primary key)

The unique identifier of the persistent slot. References dss_profile_slot(id).

idx

INTEGER

NOT NULL

(primary key)

An index used to order the priority entries in the list.

priority

NUMERIC(19)

NOT NULL

The priority level of each repository item in the slot.

 
loading table of contents...