java Programming Glossary: mapelements
JAXB: how to marshall map into <key>value</key> http://stackoverflow.com/questions/3941479/jaxb-how-to-marshall-map-into-keyvalue-key provided didn't work for me. I found another way to Map MapElements package com.cellfish.mediadb.rest.lucene import javax.xml.bind.annotation.XmlElement.. import javax.xml.bind.annotation.XmlElement class MapElements @XmlElement public String key @XmlElement public Integer value.. public String key @XmlElement public Integer value private MapElements Required by JAXB public MapElements String key Integer value..
|