Examples of GxeDefinition


Examples of com.esri.gpt.catalog.gxe.GxeDefinition

          }
         
        } else if (nodeName.equalsIgnoreCase("editor")) {
          String sLoc = Val.chkStr(DomUtil.getAttributeValue(nd.getAttributes(),"fileName"));
          if (sLoc.length() > 0) {
            GxeDefinition gxeDefinition = new GxeDefinition();
            gxeDefinition.setKey(this.getKey());
            gxeDefinition.setFileLocation(sLoc);
            this.setGxeEditorDefinition(gxeDefinition);
           
            GxeContext gxeContext = new GxeContext();
            GxeLoader gxeLoader = new GxeLoader();
            try {
View Full Code Here

Examples of com.esri.gpt.catalog.gxe.GxeDefinition

    MetadataDocument document = new MetadataDocument();
    Schema schema = document.prepareForCreate(context,sCreateSchemaKey);
    setOpenSchemaKey(schema.getKey());
   
    // check for a defined GXE based Geoportal XML editor
    GxeDefinition gxeDefinition = schema.getGxeEditorDefinition();
    if (gxeDefinition != null) {
      context.getServletRequest().setAttribute("gxeDefinitionKey",gxeDefinition.getKey());
      context.getServletRequest().setAttribute("gxeDefinitionLocation",gxeDefinition.getFileLocation());
      context.getServletRequest().setAttribute("gxeOpenDocumentId",this.getOpenDocumentUuid());
      setNavigationOutcome("catalog.publication.gxeEditor");
      return;
    }
   
View Full Code Here

Examples of com.esri.gpt.catalog.gxe.GxeDefinition

  MetadataDocument document = new MetadataDocument();
  Schema schema = document.prepareForEdit(context,publisher,sOpenDocumentUuid);
  setOpenSchemaKey(schema.getKey());
 
  // check for a defined GXE based Geoportal XML editor
  GxeDefinition gxeDefinition = schema.getGxeEditorDefinition();
  if (gxeDefinition != null) {
    context.getServletRequest().setAttribute("gxeDefinitionKey",gxeDefinition.getKey());
    context.getServletRequest().setAttribute("gxeDefinitionLocation",gxeDefinition.getFileLocation());
    context.getServletRequest().setAttribute("gxeOpenDocumentId",this.getOpenDocumentUuid());
    setNavigationOutcome("catalog.publication.gxeEditor");
    return;
  }
 
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.