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 void
clear()
The clear operation is not supported.boolean
containsKey(java.lang.Object key)
boolean
containsValue(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.Object
get(java.lang.Object key)
boolean
isEmpty()
java.util.Set<java.lang.String>
keySet()
Returns a Set view of the keys contained in this map.java.lang.Object
put(java.lang.String key, java.lang.Object value)
void
putAll(java.util.Map<? extends java.lang.String,? extends java.lang.Object> toMerge)
java.lang.Object
remove(java.lang.Object key)
int
size()
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:
put
in interfacejavax.script.Bindings
- Specified by:
put
in 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:
putAll
in interfacejavax.script.Bindings
- Specified by:
putAll
in interfacejava.util.Map<java.lang.String,java.lang.Object>
-
remove
public java.lang.Object remove(java.lang.Object key)
- Specified by:
remove
in interfacejavax.script.Bindings
- Specified by:
remove
in 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:
clear
in interfacejava.util.Map<java.lang.String,java.lang.Object>
-
containsValue
public boolean containsValue(java.lang.Object value)
- Specified by:
containsValue
in 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:
entrySet
in interfacejava.util.Map<java.lang.String,java.lang.Object>
- Returns:
- an unmodifiable Set view of the map
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in 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:
keySet
in 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:
size
in 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:
values
in 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:
containsKey
in interfacejavax.script.Bindings
- Specified by:
containsKey
in interfacejava.util.Map<java.lang.String,java.lang.Object>
-
get
public java.lang.Object get(java.lang.Object key)
- Specified by:
get
in interfacejavax.script.Bindings
- Specified by:
get
in interfacejava.util.Map<java.lang.String,java.lang.Object>
-
-