org.apache.wsrp4j.persistence
Interface PersistentInformation

All Known Subinterfaces:
PersistentInformationXML
All Known Implementing Classes:
PersistentInformationImpl

public interface PersistentInformation

This class is the generic interface for the persistent information used with PersistentDataObjects.

Version:
$Id: PersistentInformation.java,v 1.4 2005/08/10 14:59:57 cziegeler Exp $
Author:
Ralf Altrichter

Method Summary
 java.lang.String getGroupID()
          Returns a group identifier
 void setGroupID(java.lang.String groupID)
          Set a group identifier.
 

Method Detail

setGroupID

public void setGroupID(java.lang.String groupID)
Set a group identifier. All PersistentDataObjects with this PersistentInformation will be stored in the persistent store with this groupID.

Parameters:
groupID - as String

getGroupID

public java.lang.String getGroupID()
Returns a group identifier

Returns:
groupID as String


--