/**
* This Class will help to build XMLMapping object from a given OMElement
* */
public class XMLMappingHelper {
public static XMLMapping fromOM(OMElement xmlMappingOmElement) {
XMLMapping xmlMapping = new XMLMapping();
xmlMapping.setMappingXMLText(xmlMappingOmElement.toString());
return xmlMapping;
}