Examples of transformDetails()


Examples of com.esri.gpt.catalog.schema.MetadataDocument.transformDetails()

    // otherwise, generate the details page from the defined schema
    String htmlFragment = "";
    if (schema.getDetailsXslt().length() > 0) {
       try {
           MessageBroker broker = this.extractMessageBroker();
            htmlFragment = Val.chkStr(document.transformDetails(metadataXml,schema.getDetailsXslt(),broker));
      } catch (TransformerException e) {
        htmlFragment = "";
        LOG.log(Level.SEVERE,"Cannot transform metadata details: "+schema.getDetailsXslt(),e);
      }
    }
View Full Code Here

Examples of com.esri.gpt.catalog.schema.MetadataDocument.transformDetails()

                                 Schema schema)
    throws Exception {
    String sXslt = Val.chkStr(schema.getDetailsXslt());
    if (sXslt.length() > 0) {
      MetadataDocument document = new MetadataDocument();
      return document.transformDetails(
          schema.getActiveDocumentXml(),sXslt,msgBroker);
    }
    return null;
  }
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.