getPropertySetNames method

Syntax
public Iterator getPropertySetNames(
   java.lang.String component_name )
Remarks

Returns the list of property set names for a given component. These are stored in the MobiLink system table ml_property.

Parameters
  • component_name   The name of the component for which to list property names.

Returns

The list of property set names for the given component.

See also
Example

The following code lists all the ServerContext's Properties associated with a given component.

import java.util.*;
// ServerContext serverContext;
// PrintStream out
Properties prop = serverContext.getPropertySetNames("Component Name");
prop.list(out);