Package org.persvr.data

Examples of org.persvr.data.NewObjectId


      Object objectId = readEntity(input, false, true);
      int versionNumber = (int) readVarLong(input);
      ObjectId id;
      if (table == null){
        // this means the table was deleted
        id = new NewObjectId(null);
      }
      else if (table.indexOf('.') > -1) {
        id = ObjectId.idForObject(header == HEADER_ARRAY ? arraySource : objectSource, tableId + "-" + objectId
            + (historic ? "-v" + versionNumber : ""), true);
      } else {
View Full Code Here

TOP

Related Classes of org.persvr.data.NewObjectId

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.