Package org.kuali.rice.kim.api.jaxb
Class QualificationListAdapter
- java.lang.Object
-
- javax.xml.bind.annotation.adapters.XmlAdapter<QualificationList,Map<String,String>>
-
- org.kuali.rice.kim.api.jaxb.QualificationListAdapter
-
public class QualificationListAdapter extends javax.xml.bind.annotation.adapters.XmlAdapter<QualificationList,Map<String,String>>
An XML adapter that converts between QualificationList objects and Mapobjects. Unmarshalled keys and values will automatically be trimmed if non-null. This adapter will throw an exception during unmarshalling if blank or duplicate keys are encountered.
- Author:
- Kuali Rice Team (rice.collab@kuali.org)
-
-
Constructor Summary
Constructors Constructor Description QualificationListAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QualificationListmarshal(Map<String,String> v)Map<String,String>unmarshal(QualificationList v)
-
-
-
Method Detail
-
unmarshal
public Map<String,String> unmarshal(QualificationList v) throws Exception
- Specified by:
unmarshalin classjavax.xml.bind.annotation.adapters.XmlAdapter<QualificationList,Map<String,String>>- Throws:
Exception- See Also:
XmlAdapter.unmarshal(java.lang.Object)
-
marshal
public QualificationList marshal(Map<String,String> v) throws Exception
- Specified by:
marshalin classjavax.xml.bind.annotation.adapters.XmlAdapter<QualificationList,Map<String,String>>- Throws:
Exception- See Also:
XmlAdapter.marshal(java.lang.Object)
-
-