Package com.esri.gpt.catalog.arcims

Examples of com.esri.gpt.catalog.arcims.PutMetadataInfo


  // prepare the ArcIMS request 
  PutMetadataRequest imsRequest;
  imsRequest = new PutMetadataRequest(getRequestContext(),getPublisher());
  imsRequest.setLockTitle(getPublicationRecord().getLockTitle());
 
  PutMetadataInfo putInfo = new PutMetadataInfo();
  putInfo.setUuid(getPublicationRecord().getUuid());
  putInfo.setXml(getPublicationRecord().getSourceXml());
 
  putInfo.setFileIdentifier(schema.getMeaning().getFileIdentifier());
  putInfo.setName(getPublicationRecord().getAlternativeTitle().length()>0? getPublicationRecord().getAlternativeTitle(): schema.getMeaning().getTitle());
  putInfo.setThumbnailBinary(schema.getMeaning().getThumbnailBinary());
 
  //putInfo.setParentUuid(getPublisher().getFolderUuid());
  //putInfo.setEnvelope(schema.getMeaning().getEnvelope());
  //putInfo.setToEsriIsoXslt(schema.getToEsriXslt());
  //putInfo.setContentType(schema.getMeaning().getArcIMSContentType());
View Full Code Here

TOP

Related Classes of com.esri.gpt.catalog.arcims.PutMetadataInfo

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.