Microsoft SDK for Java

includeProperties

This method of the PropertyPermission Class adds specific properties to the set of properties that the permission allows access to. The properties are specified by a pattern string that can contain wildcard expressions.

Syntax

public void includeProperties(String pattern);

Examples

  includeProperties("java.class.path");

  includeProperties("java.*");

Note   This method does nothing if the permission object already specifies unrestricted access.

Parameters

pattern The pattern that specifies the system properties that can be accessed. This pattern can contain wildcard expressions.

See Also

com.ms.util.WildcardExpression

© 1999 Microsoft Corporation. All rights reserved. Terms of use.