description

Provides a textual explanation of the agent property and may hold other relevant information.

Type

public java.lang.String description;
 

Notes

The description member variable displays in the Description column in the Configure Agent step of Business Object Wizard. To initialize an agent property's description, the following call to the third form of the AgentProperty() constructor specifies a string description value as the third argument:

AgentProperty agt = new AgentProperty("Username",
          AgentProperty.TYPE_STRING,
          "User Id for logging into the database", true, false,
          ODKConstant.SINGLE_CARD, null, null);
 
Note:
You can also specify a value for the agent property's description with the second form of the AgentProperty() constructor, using its sixth argument.

Copyright IBM Corp. 1997, 2004