isHidden

Determines whether the value of the agent property should display as encrypted.

Type

public boolean isHidden;
 

Notes

The isHidden member variable is a boolean value that determines whether an agent property's value displays in Business Object Wizard. If isHidden is true, the agent property's value is encrypted when it displays; that is, the value appears as a string of asterisk (*) characters. To indicate whether an agent property's value is encrypted, specify a boolean value as the fourth argument in the second form of the AgentProperty() constructor:

AgentProperty agt = new AgentProperty("Username",
          AgentProperty.TYPE_STRING, true, false, true,
          "User Id for logging into the database", true,
          ODKConstant.SINGLE_CARD, null, null);
 

Copyright IBM Corp. 1997, 2003