org.apache.wsrp4j.persistence
Interface PersistentFactory

All Known Subinterfaces:
ClientPersistentFactory, ServerPersistentFactory
All Known Implementing Classes:
ClientPersistentFactoryImpl, ServerPersistentFactoryImpl

public interface PersistentFactory

This class is the base interface definition for the persistence support factory class.

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

Method Summary
 PersistentHandler getPersistentHandler()
          Returns the PersistentHandler
 PersistentInformationProvider getPersistentInformationProvider()
          Returns the PersistentInformationProvider
 PersistentDataObject getPortletList()
          Returns the PortletList
 PersistentDataObject getProducerList()
          Returns the ProducerList
 PersistentDataObject getUserList()
          Returns the UserList
 

Method Detail

getPersistentHandler

public PersistentHandler getPersistentHandler()
Returns the PersistentHandler

Returns:
PersistentHandler

getPersistentInformationProvider

public PersistentInformationProvider getPersistentInformationProvider()
Returns the PersistentInformationProvider

Returns:
PersistentInformationProvider

getPortletList

public PersistentDataObject getPortletList()
                                    throws WSRPException
Returns the PortletList

Returns:
PersistentDataObject
Throws:
WSRPException

getUserList

public PersistentDataObject getUserList()
                                 throws WSRPException
Returns the UserList

Returns:
PersistentDataObject
Throws:
WSRPException

getProducerList

public PersistentDataObject getProducerList()
                                     throws WSRPException
Returns the ProducerList

Returns:
PersistentDataObject
Throws:
WSRPException


--