72737475767778
/** Create an ObjectKey for the given ObjectKeyTemplate and * ObjectId. */ public static ObjectKey makeObjectKey( ObjectKeyTemplate oktemp, ObjectId oid ) { return new ObjectKeyImpl( oktemp, oid ) ; }
224225226227228229230
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 ) ; }
222223224225226227228