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.
public void includeProperties(String pattern);
includeProperties("java.class.path");
includeProperties("java.*");
Note This method does nothing if the permission object already specifies unrestricted access.
pattern | The pattern that specifies the system properties that can be accessed. This pattern can contain wildcard expressions. |
com.ms.util.WildcardExpression