Package edu.uiuc.ncsa.security.storage
Class XMLMap
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<String,Object>
-
- edu.uiuc.ncsa.security.storage.sql.internals.ColumnMap
-
- edu.uiuc.ncsa.security.storage.XMLMap
-
- All Implemented Interfaces:
ConversionMap<String,Object>
,Serializable
,Cloneable
,Map<String,Object>
public class XMLMap extends ColumnMap
Specialized extension to convert to and from XML.Created by Jeff Gaynor
on 5/23/12 at 10:29 AM- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Constructor Summary
Constructors Constructor Description XMLMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
fromXML(InputStream inputStream)
void
toXML(OutputStream outputStream)
-
Methods inherited from class edu.uiuc.ncsa.security.storage.sql.internals.ColumnMap
get, getBoolean, getBytes, getDate, getIdentifier, getInteger, getLong, getString, getTimestamp, getURI, put, removeKeys
-
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, getOrDefault, isEmpty, keySet, merge, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, getOrDefault, hashCode, isEmpty, keySet, merge, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
toXML
public void toXML(OutputStream outputStream) throws IOException
- Throws:
IOException
-
fromXML
public void fromXML(InputStream inputStream) throws IOException
- Throws:
IOException
-
-