getProperties method

Syntax
public java.util.Properties getProperties(
   java.lang.String component,
   java.lang.String set )
Remarks

Returns the set of properties associated with a given component and property set. These are stored in the MobiLink system table ml_property.

Parameters
  • component   The component.

  • set   The property set.

Returns

The set of properties, which may be empty.

See also
Example

The following code lists all the ServerContext's Properties.

import java.util.*;
// ServerContext serverContext;
// PrintStream out
Properties prop = serverContext.getProperties();
prop.list(out);