Package org.kuali.rice.kim.api.jaxb
Class PermissionDetailListAdapter
- java.lang.Object
-
- javax.xml.bind.annotation.adapters.XmlAdapter<PermissionDetailList,Map<String,String>>
-
- org.kuali.rice.kim.api.jaxb.PermissionDetailListAdapter
-
public class PermissionDetailListAdapter extends javax.xml.bind.annotation.adapters.XmlAdapter<PermissionDetailList,Map<String,String>>
An XML adapter that converts between PermissionDetailList 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 PermissionDetailListAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PermissionDetailListmarshal(Map<String,String> v)Map<String,String>unmarshal(PermissionDetailList v)
-
-
-
Method Detail
-
unmarshal
public Map<String,String> unmarshal(PermissionDetailList v) throws Exception
- Specified by:
unmarshalin classjavax.xml.bind.annotation.adapters.XmlAdapter<PermissionDetailList,Map<String,String>>- Throws:
Exception- See Also:
XmlAdapter.unmarshal(java.lang.Object)
-
marshal
public PermissionDetailList marshal(Map<String,String> v) throws Exception
- Specified by:
marshalin classjavax.xml.bind.annotation.adapters.XmlAdapter<PermissionDetailList,Map<String,String>>- Throws:
Exception- See Also:
XmlAdapter.marshal(java.lang.Object)
-
-