Package org.elasticsearch.script
Class ClassPermission
java.lang.Object
java.security.Permission
java.security.BasicPermission
org.elasticsearch.script.ClassPermission
- All Implemented Interfaces:
Serializable,Guard
Checked by scripting engines to allow loading a java class.
Examples:
Allow permission to java.util.List
permission org.elasticsearch.script.ClassPermission "java.util.List";Allow permission to classes underneath
java.util (and its subpackages such as java.util.zip)
permission org.elasticsearch.script.ClassPermission "java.util.*";Allow permission to standard predefined list of basic classes (see list below)
permission org.elasticsearch.script.ClassPermission "<<STANDARD>>";Allow permission to all classes
permission org.elasticsearch.script.ClassPermission "*";
Set of classes (allowed by special value <<STANDARD>>):
- See Also:
- Serialized Form
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic StringTypical set of classes for scripting: basic data types, math, dates, and simple collections -
Constructor Summary
ConstructorsConstructorDescriptionClassPermission(String name)Creates a new ClassPermission object.ClassPermission(String name, String actions)Creates a new ClassPermission object. -
Method Summary
Modifier and TypeMethodDescriptionbooleanMethods inherited from class java.security.BasicPermission
equals, getActions, hashCodeMethods inherited from class java.security.Permission
checkGuard, getName, toString
-
Field Details
-
STANDARD
- See Also:
- Constant Field Values
-
STANDARD_CLASSES
Typical set of classes for scripting: basic data types, math, dates, and simple collections
-
-
Constructor Details
-
ClassPermission
Creates a new ClassPermission object.- Parameters:
name- class to grant permission to
-
ClassPermission
Creates a new ClassPermission object. This constructor exists for use by thePolicyobject to instantiate new Permission objects.- Parameters:
name- class to grant permission toactions- ignored
-
-
Method Details
-
implies
- Overrides:
impliesin classBasicPermission
-
newPermissionCollection
- Overrides:
newPermissionCollectionin classBasicPermission
-