Class AuthenticationToken.Properties
- java.lang.Object
-
- org.apache.accumulo.core.client.security.tokens.AuthenticationToken.Properties
-
- All Implemented Interfaces:
Map<String,char[]>
,Destroyable
- Enclosing interface:
- AuthenticationToken
public static class AuthenticationToken.Properties extends Object implements Destroyable, Map<String,char[]>
-
-
Constructor Summary
Constructors Constructor Description Properties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
containsKey(Object key)
boolean
containsValue(Object value)
void
destroy()
Set<Map.Entry<String,char[]>>
entrySet()
char[]
get(Object key)
boolean
isDestroyed()
boolean
isEmpty()
Set<String>
keySet()
char[]
put(String key, char[] value)
char[]
put(String key, CharSequence value)
void
putAll(Map<? extends String,? extends char[]> m)
void
putAllStrings(Map<String,? extends CharSequence> map)
char[]
remove(Object key)
int
size()
Collection<char[]>
values()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, forEach, getOrDefault, hashCode, merge, putIfAbsent, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
put
public char[] put(String key, CharSequence value)
-
putAllStrings
public void putAllStrings(Map<String,? extends CharSequence> map)
-
destroy
public void destroy() throws DestroyFailedException
- Specified by:
destroy
in interfaceDestroyable
- Throws:
DestroyFailedException
-
isDestroyed
public boolean isDestroyed()
- Specified by:
isDestroyed
in interfaceDestroyable
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<String,char[]>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<String,char[]>
-
values
public Collection<char[]> values()
-
-