Returns the list of property set names for a given component.
Iterator ServerContext.getPropertySetNames(String component)
component The name of the component for which to list property names.
The list of property set names for the given component.
These properties are stored in the ml_property system table. For more information, see ml_add_property system procedure.
The following example shows how to lists all the properties on a ServerContext instance associated with a given component:
import java.util.*; ServerContext serverContext; PrintStream out Properties prop = serverContext.getPropertySetNames("Component Name"); prop.list(out);