Package com.google.enterprise.connector.spiimpl

Examples of com.google.enterprise.connector.spiimpl.DateValue


  }

  public static String checkpoint(Document document) throws RepositoryException {
    String uuid = Value.getSingleValueString(document,
        SpiConstants.PROPNAME_DOCID);
    DateValue dateValue = (DateValue) Value.getSingleValue(document,
        SpiConstants.PROPNAME_LASTMODIFIED);
    String dateString = dateValue.toIso8601();
    String result = null;
    try {
      JSONObject jo = new JSONObject();
      jo.put("uuid", uuid);
      jo.put("lastModified", dateString);
View Full Code Here

TOP

Related Classes of com.google.enterprise.connector.spiimpl.DateValue

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.