Package com.esri.gpt.catalog.arcgis.agportal.publication

Examples of com.esri.gpt.catalog.arcgis.agportal.publication.ItemInfoLuceneAdapter


    return getParameter("datestore");
  }

  private void publishUuid(RequestContext context, PublicationRequest request, String uuid) {
    try {
      ItemInfoLuceneAdapter iiAdapter = new ItemInfoLuceneAdapter();
      ESRI_ItemInformation ii = iiAdapter.makeItemInfoByUuid(context, null, uuid);
      if (ii != null) {
        request.publish(ii);
        LOGGER.log(Level.FINE, "Record: {0} has been published.", uuid);
      }
    } catch (Exception ex) {
View Full Code Here

TOP

Related Classes of com.esri.gpt.catalog.arcgis.agportal.publication.ItemInfoLuceneAdapter

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.