64656667686970
/** Create an ObjectId for the given byte sequence. */ public static ObjectId makeObjectId( byte[] id ) { return new ObjectIdImpl( id ) ; }
223224225226227228229230
ObjectKeyTemplate oktemp = create( is, fullKey, osh ) ; if (oktemp == null) oktemp = new WireObjectKeyTemplate( is, osh ) ; ObjectId oid = new ObjectIdImpl( osh.value ) ; return new ObjectKeyImpl( oktemp, oid ) ; }
221222223224225226227228