Package com.esri.arcgisws

Examples of com.esri.arcgisws.XmlPropertySet


      // publish metadata per data element
      if (elements != null) {
        for (DataElement element: elements) {
          if (Thread.currentThread().isInterrupted()) return;
          XmlPropertySet xmlProps = element.getMetadata();
          if (xmlProps != null) {
            String xml = Val.chkStr(xmlProps.getXmlDoc());
            if ((xml != null) && (xml.length() > 0)) {
              String sourceUri = serviceInfo.getRestUrl()+"/"+element.getName();
              LOGGER.finer("Publishing metadata for: "+sourceUri);
              processor.publishMetadata(null,xml,sourceUri);
            }
View Full Code Here


      return new UrlUri(getServiceInfo().getRestUrl()+"/"+element.getName());
    }

    @Override
    public String getContent() throws IOException {
      XmlPropertySet xmlProps = element.getMetadata();
      return xmlProps!=null? Val.chkStr(xmlProps.getXmlDoc()): "";
    }
View Full Code Here

TOP

Related Classes of com.esri.arcgisws.XmlPropertySet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.