The PropertyAccessRequest Class contains the following constructors:
PropertyAccessRequest(int type,String param)
PropertyAccessRequest()
PropertyAccessRequest(String prop)
Creates a property access request for a specified access type and a specified property.
public PropertyAccessRequest(int type, String param);
Returns the request object that represents a request for access to the specified property.
type | The type of property access. This can be ALL or INDIVIDUAL. |
param | If type is INDIVIDUAL, this value should be the property name for the specified access type. If type is ALL, the value should be null. |
Creates a property access request that indicates a request for unrestricted access to properties.
public PropertyAccessRequest();
Returns the request object that indicates a request to access all system properties.
Creates a request object that represents an attempt to read the specified property.
public PropertyAccessRequest(String prop);
Returns the request object that represents an attempt to read the specified property.
prop | The name of the system property to read. |