Class ProtectedBindings
- java.lang.Object
-
- org.apache.sling.scripting.core.impl.helper.ProtectedBindings
-
- All Implemented Interfaces:
java.util.Map<java.lang.String,java.lang.Object>,javax.script.Bindings
public class ProtectedBindings extends java.lang.Object implements javax.script.Bindings
-
-
Constructor Summary
Constructors Constructor Description ProtectedBindings(javax.script.Bindings wrapped, java.util.Set<java.lang.String> protectedKeys)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()The clear operation is not supported.booleancontainsKey(java.lang.Object key)booleancontainsValue(java.lang.Object value)java.util.Set<java.util.Map.Entry<java.lang.String,java.lang.Object>>entrySet()Returns a Set view of the mappings contains in this map.java.lang.Objectget(java.lang.Object key)booleanisEmpty()java.util.Set<java.lang.String>keySet()Returns a Set view of the keys contained in this map.java.lang.Objectput(java.lang.String key, java.lang.Object value)voidputAll(java.util.Map<? extends java.lang.String,? extends java.lang.Object> toMerge)java.lang.Objectremove(java.lang.Object key)intsize()java.util.Collection<java.lang.Object>values()Returns a Collection view of the values contained in this map.
-
-
-
Method Detail
-
put
public java.lang.Object put(java.lang.String key, java.lang.Object value)- Specified by:
putin interfacejavax.script.Bindings- Specified by:
putin interfacejava.util.Map<java.lang.String,java.lang.Object>- Throws:
java.lang.IllegalArgumentException- if the key is protected
-
putAll
public void putAll(java.util.Map<? extends java.lang.String,? extends java.lang.Object> toMerge)
- Specified by:
putAllin interfacejavax.script.Bindings- Specified by:
putAllin interfacejava.util.Map<java.lang.String,java.lang.Object>
-
remove
public java.lang.Object remove(java.lang.Object key)
- Specified by:
removein interfacejavax.script.Bindings- Specified by:
removein interfacejava.util.Map<java.lang.String,java.lang.Object>- Throws:
java.lang.IllegalArgumentException- if the key is protected
-
clear
public void clear()
The clear operation is not supported.- Specified by:
clearin interfacejava.util.Map<java.lang.String,java.lang.Object>
-
containsValue
public boolean containsValue(java.lang.Object value)
- Specified by:
containsValuein interfacejava.util.Map<java.lang.String,java.lang.Object>
-
entrySet
public java.util.Set<java.util.Map.Entry<java.lang.String,java.lang.Object>> entrySet()
Returns a Set view of the mappings contains in this map. The Set is unmodifiable.- Specified by:
entrySetin interfacejava.util.Map<java.lang.String,java.lang.Object>- Returns:
- an unmodifiable Set view of the map
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfacejava.util.Map<java.lang.String,java.lang.Object>
-
keySet
public java.util.Set<java.lang.String> keySet()
Returns a Set view of the keys contained in this map. The Set is unmodifiable.- Specified by:
keySetin interfacejava.util.Map<java.lang.String,java.lang.Object>- Returns:
- an unmodifiable Set view of the map's keys
-
size
public int size()
- Specified by:
sizein interfacejava.util.Map<java.lang.String,java.lang.Object>
-
values
public java.util.Collection<java.lang.Object> values()
Returns a Collection view of the values contained in this map. The Collection is unmodifiable.- Specified by:
valuesin interfacejava.util.Map<java.lang.String,java.lang.Object>- Returns:
- an unmodifiable Collection view of the map's values
-
containsKey
public boolean containsKey(java.lang.Object key)
- Specified by:
containsKeyin interfacejavax.script.Bindings- Specified by:
containsKeyin interfacejava.util.Map<java.lang.String,java.lang.Object>
-
get
public java.lang.Object get(java.lang.Object key)
- Specified by:
getin interfacejavax.script.Bindings- Specified by:
getin interfacejava.util.Map<java.lang.String,java.lang.Object>
-
-