Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.0 » MobiLink - Server Administration » MobiLink Server APIs » Writing synchronization scripts in Java » MobiLink server API for Java Reference » ServerContext interface

 

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.

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