org.apache.wsrp4j.persistence
Interface ServerPersistentFactory

All Superinterfaces:
PersistentFactory
All Known Implementing Classes:
ServerPersistentFactoryImpl

public interface ServerPersistentFactory
extends PersistentFactory

This class is the interface definition for the server persistence support factory class. E.g. a Producer uses server persistent support.

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

Method Summary
 PersistentDataObject getConsumerConfiguredPortletList()
          Returns the ConsumerConfiguredPortletList
 PersistentDataObject getConsumerPortletRegistrationList()
          Returns the ConsumerPortletRegistrationList
 PersistentDataObject getPortletDescriptionList()
          Returns the PortletDescriptionList
 PersistentDataObject getRegistrationList()
          Returns the RegistrationList
 PersistentDataObject getServiceDescriptionList()
          Returns the ServiceDescriptionList
 
Methods inherited from interface org.apache.wsrp4j.persistence.PersistentFactory
getPersistentHandler, getPersistentInformationProvider, getPortletList, getProducerList, getUserList
 

Method Detail

getRegistrationList

public PersistentDataObject getRegistrationList()
                                         throws WSRPException
Returns the RegistrationList

Returns:
PersistentDataObject
Throws:
WSRPException

getConsumerConfiguredPortletList

public PersistentDataObject getConsumerConfiguredPortletList()
                                                      throws WSRPException
Returns the ConsumerConfiguredPortletList

Returns:
PersistentDataObject
Throws:
WSRPException

getPortletDescriptionList

public PersistentDataObject getPortletDescriptionList()
                                               throws WSRPException
Returns the PortletDescriptionList

Returns:
PersistentDataObject
Throws:
WSRPException

getServiceDescriptionList

public PersistentDataObject getServiceDescriptionList()
                                               throws WSRPException
Returns the ServiceDescriptionList

Returns:
PersistentDataObject
Throws:
WSRPException

getConsumerPortletRegistrationList

public PersistentDataObject getConsumerPortletRegistrationList()
                                                        throws WSRPException
Returns the ConsumerPortletRegistrationList

Returns:
PersistentDataObject
Throws:
WSRPException


--