public interface PolicyParameters
| Modifier and Type | Method and Description |
|---|---|
Object |
get(String key)
Follows the contract for java.util.Map;
|
void |
lock()
This makes the map itself read only, but the mutability of objects
that this map contains is not affected.
|
void |
put(String key,
Object value)
This is a convenience method for developers that prefer to think of this
as a map instead of being bean-like.
|
void |
set(String key,
Object value)
This works just like a Map, except it will throw an exception if lock()
has been called.
|
Object get(String key)
key - Mapvoid set(String key, Object value) throws IllegalArgumentException
key - value - IllegalArgumentException - if this DynaBeanACRParameter instance
has already been locked.void put(String key, Object value) throws IllegalArgumentException
IllegalArgumentExceptionset(String, Object)void lock()
Copyright © 2016 The Open Web Application Security Project (OWASP). All rights reserved.