Property tags define the properties of a repository item and map the repository item properties to LDAP entry attributes.

property Child Tags

Child Tag

How many?

option

zero or more

attribute

zero or more

property Tag Attributes

Attribute

Description

Value

name

the property’s name

Required.

ldap-name

The property’s name in the LDAP directory.

Defaults to value of name.

data-type

The property’s Java data-type. See the LDAP Data-type Correspondences table for how the data-type attribute names correspond to Java object types.

Required. Valid values are:

string
big string
date
timestamp
enumerated
boolean
int
byte
binary
short
long
float
double

multi

Is this a multi-valued property? If true, the type is an array.

Boolean. Default is false.

display-name

The text identifying the property in the ATG Control Center.

Defaults to value of name.

description

The description of the property displayed in the ATG Control Center.

Defaults to value of name.

default

A default value for the property, if another value is not specified when the profile is created

required

Boolean. Default is false.

readable

Boolean. Default is false.

writable

Boolean. Default is false.

queryable

Non-queryable properties are not indexed in the ATG Control Center.

Boolean. Default is false.

hidden

Hidden properties are not displayed in the ATG Control Center.

Boolean. Default is false.

expert

Boolean. Default is false.

editor-class

Associates a property editor class with the property. See the JavaBeans specification for a description of PropertyEditors.

The name of a property editor class.

LDAP Data-type Correspondences

The data-type attribute defines the data-type of a repository item property. The following table shows how the data-type attribute names correspond to Java object types.

Data-type Attribute Value

Java Object Type

string

String

big string

String

date

java.util.Date

timestamp

java.sql.Timestamp

enumerated

String

boolean

Boolean

int

Integer

byte

Byte

binary

byte[]

short

Short

float

Float

double

Double

long

Long

 
loading table of contents...