org.openorb.pss.connector
Interface PID

All Known Implementing Classes:
DatabasePID, FilePID, MemoryPID

public interface PID

This interface defines a PID model.

Author:
Jerome Daniel

Method Summary
 java.lang.String catalog_value_str()
          This operations return the CATALOG PID value as a string.
 byte[] catalog_value()
          This operations return the CATALOG PID value.
 boolean is_same_catalog(byte[] value)
          Return TRUE if the parameter has the same catalog pid value
 boolean is_same_short(byte[] value)
          Return TRUE if the parameter has the same short pid value
 boolean is_same(byte[] value)
          Return TRUE if the parameter has the same pid value
 boolean is_same(PID pid)
          Return TRUE if the parameter has the same pid value
 java.lang.String short_value_str()
          This operation returns the SHORT PID value as a string.
 byte[] short_value()
          This operation returns the SHORT PID value.
 java.lang.String value_str()
          This operation returns the PID value as a string.
 byte[] value()
          This operation returns the PID value.
 

Method Detail

value

byte[] value()
This operation returns the PID value.


short_value

byte[] short_value()
This operation returns the SHORT PID value.


catalog_value

byte[] catalog_value()
This operations return the CATALOG PID value.


value_str

java.lang.String value_str()
This operation returns the PID value as a string.


short_value_str

java.lang.String short_value_str()
This operation returns the SHORT PID value as a string.


catalog_value_str

java.lang.String catalog_value_str()
This operations return the CATALOG PID value as a string.


is_same

boolean is_same(PID pid)
Return TRUE if the parameter has the same pid value


is_same

boolean is_same(byte[] value)
Return TRUE if the parameter has the same pid value


is_same_short

boolean is_same_short(byte[] value)
Return TRUE if the parameter has the same short pid value


is_same_catalog

boolean is_same_catalog(byte[] value)
Return TRUE if the parameter has the same catalog pid value