Class KeyMapAdaptedEntryAdapter

java.lang.Object
javax.xml.bind.annotation.adapters.XmlAdapter<Object,KeyMapAdaptedEntryAdapter.KeyMapAdaptedEntry>
de.hybris.platform.cmsocc.jaxb.adapters.KeyMapAdaptedEntryAdapter

public class KeyMapAdaptedEntryAdapter extends javax.xml.bind.annotation.adapters.XmlAdapter<Object,KeyMapAdaptedEntryAdapter.KeyMapAdaptedEntry>
This Adapter is used to convert KeyMapAdaptedEntry into an HTML or XML document element. Example:
   
   public class Container
   {
     private List entries;
   }
   
 
would have the following JSON representation:
   
   {
       "key1": "strValue",
       "key2": {"subkey1": "strValue", "subkey2": {"subKey3": "strValue}}
       "key3": ["strUid1", "strUid2", "strUid3"]
   }