예제 #1
0
 /** Return the object id. */
 public String getObjectId() {
   return pk.getObjectId();
 }
예제 #2
0
 /** Return the name of the component's instance which handles the object. */
 public String getComponent() {
   return pk.getComponent();
 }
예제 #3
0
 /**
  * Return the type of the indexed document. The meaning of this type is uniquely determined by the
  * component handling the object.
  */
 public String getObjectType() {
   return pk.getObjectType();
 }
예제 #4
0
 /** Returns as a string the key part of the indexEntry. the key part of the IndexEntry */
 @Override
 public String toString() {
   return (pk == null) ? "" : pk.toString();
 }