You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrp4j-dev@portals.apache.org by cz...@apache.org on 2005/08/10 16:59:59 UTC

cvs commit: ws-wsrp4j/src/org/apache/wsrp4j/persistence/driver WSRPServiceDescription.java PersistentAccess.java

cziegeler    2005/08/10 07:59:59

  Modified:    src/org/apache/wsrp4j/persistence/xml/driver
                        PersistentDataObjectImpl.java RegistrationList.java
                        PersistentHandlerImpl.java
                        PersistentInformationImpl.java
                        ClientPersistentFactoryImpl.java UserList.java
                        ServiceDescriptionList.java PageList.java
                        ConsumerPortletContextList.java
                        ClientPersistentInformationProviderImpl.java
                        PortletDescriptionList.java ProducerList.java
                        ConsumerPortletRegistrationList.java
                        ServerPersistentInformationProviderImpl.java
                        ConsumerConfiguredPortletList.java PortletList.java
                        ServerPersistentFactoryImpl.java
               src/org/apache/wsrp4j/producer/driver WSRPEngine.java
                        ConsumerRegistryFactoryImpl.java
                        RegistrationImpl.java ConsumerRegistryImpl.java
               src/org/apache/wsrp4j/producer ConsumerRegistry.java
                        Registration.java ProviderAccess.java
                        ConsumerRegistryFactory.java
                        ConsumerRegistryAccess.java
               src/org/apache/wsrp4j/log LogManager.java LoggerImpl.java
                        Logger.java
               src/org/apache/wsrp4j/persistence PersistentHandler.java
                        PersistentInformationProvider.java
                        PersistentDataObject.java
                        PersistentInformation.java PersistentFactory.java
                        ClientPersistentFactory.java
                        ServerPersistentFactory.java
               src/org/apache/wsrp4j/persistence/xml
                        PersistentDataObjectXML.java
                        ServerPersistentInformationProvider.java
                        PersistentInformationXML.java
                        ClientPersistentInformationProvider.java
               src/org/apache/wsrp4j/persistence/driver
                        WSRPServiceDescription.java PersistentAccess.java
  Log:
  Add cvs version info
  
  Revision  Changes    Path
  1.4       +1 -7      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PersistentDataObjectImpl.java
  
  Index: PersistentDataObjectImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PersistentDataObjectImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PersistentDataObjectImpl.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ PersistentDataObjectImpl.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import org.apache.wsrp4j.persistence.*;
  @@ -38,7 +32,7 @@
    * 
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public abstract class PersistentDataObjectImpl implements PersistentDataObjectXML
   {
  
  
  
  1.4       +1 -8      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/RegistrationList.java
  
  Index: RegistrationList.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/RegistrationList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- RegistrationList.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ RegistrationList.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import java.io.FileReader;
  @@ -44,9 +38,8 @@
    * @see PersistentHandler
    * @see ProducerPersistentInformationProvider
    *
  - * @version 1.0
  + * @version $Id$
    */
  -
   public class RegistrationList extends PersistentDataObjectImpl
   {
   
  
  
  
  1.4       +2 -8      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PersistentHandlerImpl.java
  
  Index: PersistentHandlerImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PersistentHandlerImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PersistentHandlerImpl.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ PersistentHandlerImpl.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   
  @@ -46,13 +40,13 @@
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public class PersistentHandlerImpl implements PersistentHandler
   {
   
       // holds this PersistentHandler
  -    private static PersistentHandler _persistentHandler = null;
  +    private static PersistentHandler _persistentHandler;
   
       // map of filenames from XML files to the hashcode of the object
       // key = hashcode, object = filename
  
  
  
  1.4       +8 -13     ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PersistentInformationImpl.java
  
  Index: PersistentInformationImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PersistentInformationImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PersistentInformationImpl.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ PersistentInformationImpl.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import org.apache.wsrp4j.persistence.xml.PersistentInformationXML;
  @@ -31,30 +25,31 @@
    * PersistentInformationProvider and used by the PersistentHandler
    * 
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
  + * @version $Id$
    */
   public class PersistentInformationImpl implements PersistentInformationXML
   {
   
       // mapping file name
  -    private String _mappingFileName = null;
  +    private String _mappingFileName;
   
       // store directory
  -    private String _storeDirectory = null;
  +    private String _storeDirectory;
   
       // stub of the filename
  -    private String _filenameStub = null;
  +    private String _filenameStub;
   
       // filename
  -    private String _filename = null;
  +    private String _filename;
   
       // grouping identifier
  -    private String _groupID = null;
  +    private String _groupID;
   
       // file extension
  -    private String _extension = null;
  +    private String _extension;
   
       // file separator
  -    private String _separator = null;
  +    private String _separator;
   
       /**
        * Constructor
  
  
  
  1.5       +3 -3      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ClientPersistentFactoryImpl.java
  
  Index: ClientPersistentFactoryImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ClientPersistentFactoryImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ClientPersistentFactoryImpl.java	26 Jul 2005 14:21:52 -0000	1.4
  +++ ClientPersistentFactoryImpl.java	10 Aug 2005 14:59:56 -0000	1.5
  @@ -28,16 +28,16 @@
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public class ClientPersistentFactoryImpl implements ClientPersistentFactory
   {
   
       // holds this factory
  -    private static ClientPersistentFactory persistentFactory = null;
  +    private static ClientPersistentFactory persistentFactory;
   
       // holds the PersistentHandler
  -    private static PersistentHandler persistentHandler = null;
  +    private static PersistentHandler persistentHandler;
   
       // holds the ClientPersistentInformationProvider
       private static ClientPersistentInformationProvider clientInfoProvider = null;
  
  
  
  1.4       +1 -8      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/UserList.java
  
  Index: UserList.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/UserList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- UserList.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ UserList.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import java.io.FileReader;
  @@ -44,9 +38,8 @@
    * @see PersistentHandler
    * @see ProducerPersistentInformationProvider
    *
  - * @version 1.0
  + * @version $Id$
    */
  -
   public class UserList extends PersistentDataObjectImpl
   {
   
  
  
  
  1.4       +1 -7      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ServiceDescriptionList.java
  
  Index: ServiceDescriptionList.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ServiceDescriptionList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ServiceDescriptionList.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ ServiceDescriptionList.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import java.io.FileReader;
  @@ -46,7 +40,7 @@
    * @see PersistentHandler
    * @see ProducerPersistentInformationProvider
    *
  - * @version 1.0
  + * @version $Id$
    */
   public class ServiceDescriptionList extends PersistentDataObjectImpl
   {
  
  
  
  1.4       +1 -7      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PageList.java
  
  Index: PageList.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PageList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PageList.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ PageList.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import java.io.FileReader;
  @@ -44,7 +38,7 @@
    * @see PersistentHandler
    * @see ProducerPersistentInformationProvider
    *
  - * @version 1.0
  + * @version $Id$
    */
   public class PageList extends PersistentDataObjectImpl
   {
  
  
  
  1.4       +1 -8      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ConsumerPortletContextList.java
  
  Index: ConsumerPortletContextList.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ConsumerPortletContextList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ConsumerPortletContextList.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ ConsumerPortletContextList.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import java.io.FileReader;
  @@ -44,9 +38,8 @@
    * @see PersistentHandler
    * @see ProducerPersistentInformationProvider
    *
  - * @version 1.0
  + * @version $Id$
    */
  -
   public class ConsumerPortletContextList extends PersistentDataObjectImpl
   {
   
  
  
  
  1.4       +2 -7      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ClientPersistentInformationProviderImpl.java
  
  Index: ClientPersistentInformationProviderImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ClientPersistentInformationProviderImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ClientPersistentInformationProviderImpl.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ ClientPersistentInformationProviderImpl.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import org.apache.wsrp4j.persistence.PersistentInformation;
  @@ -56,12 +50,13 @@
    * ./persistence/producers/*.xml    (contains object XML files)
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
  + * @version $Id$
    */
   public class ClientPersistentInformationProviderImpl implements ClientPersistentInformationProvider
   {
   
       // holds this provider
  -    private ClientPersistentInformationProvider _persistentInfoProvider = null;
  +    private ClientPersistentInformationProvider _persistentInfoProvider;
   
       private static final String CONSUMER_PERSISTENTSTORE = "consumer.persistentstore";
   
  
  
  
  1.4       +1 -8      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PortletDescriptionList.java
  
  Index: PortletDescriptionList.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PortletDescriptionList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PortletDescriptionList.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ PortletDescriptionList.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import java.io.FileReader;
  @@ -42,9 +36,8 @@
    * 
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
  -
   public class PortletDescriptionList extends PersistentDataObjectImpl
   {
   
  
  
  
  1.4       +1 -7      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ProducerList.java
  
  Index: ProducerList.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ProducerList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ProducerList.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ ProducerList.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import java.io.FileReader;
  @@ -44,7 +38,7 @@
    * @see PersistentHandler
    * @see ProducerPersistentInformationProvider
    *
  - * @version 1.0
  + * @version $Id$
    */
   public class ProducerList extends PersistentDataObjectImpl
   {
  
  
  
  1.4       +1 -7      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ConsumerPortletRegistrationList.java
  
  Index: ConsumerPortletRegistrationList.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ConsumerPortletRegistrationList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ConsumerPortletRegistrationList.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ ConsumerPortletRegistrationList.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import java.io.FileReader;
  @@ -42,7 +36,7 @@
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    * 
    *
  - * @version 1.0
  + * @version $Id$
    */
   public class ConsumerPortletRegistrationList extends PersistentDataObjectImpl
   {
  
  
  
  1.4       +2 -7      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ServerPersistentInformationProviderImpl.java
  
  Index: ServerPersistentInformationProviderImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ServerPersistentInformationProviderImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ServerPersistentInformationProviderImpl.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ ServerPersistentInformationProviderImpl.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import org.apache.wsrp4j.persistence.*;
  @@ -61,11 +55,12 @@
    * ./persistence/registries/*.xml   (contains object XML files)
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
  + * @version $Id$
    */
   public class ServerPersistentInformationProviderImpl implements ServerPersistentInformationProvider
   {
   
  -    private ServerPersistentInformationProvider _persistentInfoProvider = null;
  +    private ServerPersistentInformationProvider _persistentInfoProvider;
   
       private Logger logger = LogManager.getLogManager().getLogger(this.getClass());
   
  
  
  
  1.4       +1 -8      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ConsumerConfiguredPortletList.java
  
  Index: ConsumerConfiguredPortletList.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ConsumerConfiguredPortletList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ConsumerConfiguredPortletList.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ ConsumerConfiguredPortletList.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import java.io.FileReader;
  @@ -44,9 +38,8 @@
    * @see PersistentHandler
    * @see ProducerPersistentInformationProvider
    *
  - * @version 1.0
  + * @version $Id$
    */
  -
   public class ConsumerConfiguredPortletList extends PersistentDataObjectImpl
   {
   
  
  
  
  1.4       +1 -7      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PortletList.java
  
  Index: PortletList.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/PortletList.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PortletList.java	1 Jun 2004 10:48:50 -0000	1.3
  +++ PortletList.java	10 Aug 2005 14:59:56 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import java.io.FileReader;
  @@ -41,7 +35,7 @@
    * 
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    * 
  - * @version 1.0
  + * @version $Id$
    */
   public class PortletList extends PersistentDataObjectImpl
   {
  
  
  
  1.3       +4 -10     ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ServerPersistentFactoryImpl.java
  
  Index: ServerPersistentFactoryImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/driver/ServerPersistentFactoryImpl.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ServerPersistentFactoryImpl.java	9 Mar 2004 21:41:45 -0000	1.2
  +++ ServerPersistentFactoryImpl.java	10 Aug 2005 14:59:56 -0000	1.3
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml.driver;
   
   import org.apache.wsrp4j.persistence.*;
  @@ -36,18 +30,18 @@
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public class ServerPersistentFactoryImpl implements ServerPersistentFactory
   {
       // holds this factory
  -    private static ServerPersistentFactory serverPersistentFactory = null;
  +    private static ServerPersistentFactory serverPersistentFactory;
   
       // holds the persistentHandler
  -    private static PersistentHandler persistentHandler = null;
  +    private static PersistentHandler persistentHandler;
   
       // holds the ServerPersistentInformationProvider
  -    private static ServerPersistentInformationProvider serverInfoProvider = null;
  +    private static ServerPersistentInformationProvider serverInfoProvider;
   
       // offset path for the persistent store
       private String path = null;
  
  
  
  1.11      +4 -4      ws-wsrp4j/src/org/apache/wsrp4j/producer/driver/WSRPEngine.java
  
  Index: WSRPEngine.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/producer/driver/WSRPEngine.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- WSRPEngine.java	26 Jul 2005 14:21:50 -0000	1.10
  +++ WSRPEngine.java	10 Aug 2005 14:59:57 -0000	1.11
  @@ -101,8 +101,8 @@
    * vy WSRP.</p> 
    * <p>Involves additional servlet related objects -> no mapping of the interfaces
    * possible</p>
  + * @version $Id$
    */
  -
   public class WSRPEngine
       implements
           oasis.names.tc.wsrp.v1.intf.WSRP_v1_PortletManagement_PortType,
  @@ -114,13 +114,13 @@
       private boolean registrationRequired;
   
       // provider
  -    private Provider provider = null;
  +    private Provider provider;
   
       // consumer registry
  -    private ConsumerRegistry consumerRegistry = null;
  +    private ConsumerRegistry consumerRegistry;
   
       //holds an instance of the WSRPEngine
  -    private static WSRPEngine instance = null;
  +    private static WSRPEngine instance;
   
       // helper instance for WSRP parameter validation
       private ParameterChecker paramCheck = new ParameterChecker();
  
  
  
  1.5       +2 -1      ws-wsrp4j/src/org/apache/wsrp4j/producer/driver/ConsumerRegistryFactoryImpl.java
  
  Index: ConsumerRegistryFactoryImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/producer/driver/ConsumerRegistryFactoryImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ConsumerRegistryFactoryImpl.java	26 Jul 2005 14:21:50 -0000	1.4
  +++ ConsumerRegistryFactoryImpl.java	10 Aug 2005 14:59:57 -0000	1.5
  @@ -25,11 +25,12 @@
    *
    * @author  <a href="mailto:stefan.behl@de.ibm.com">Stefan Behl</a>
    *
  + * @version $Id$
    */
   public class ConsumerRegistryFactoryImpl implements ConsumerRegistryFactory
   {
       //holds an instance of a consumer registry
  -    private static ConsumerRegistryImpl consumerReg = null;
  +    private static ConsumerRegistryImpl consumerReg;
   
       /** 
        * Returns an instance of the ConsumerRegistryImpl-class.
  
  
  
  1.4       +3 -2      ws-wsrp4j/src/org/apache/wsrp4j/producer/driver/RegistrationImpl.java
  
  Index: RegistrationImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/producer/driver/RegistrationImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- RegistrationImpl.java	26 Jul 2005 14:21:50 -0000	1.3
  +++ RegistrationImpl.java	10 Aug 2005 14:59:57 -0000	1.4
  @@ -29,13 +29,14 @@
    * @author  <a href="mailto:stefan.behl@de.ibm.com">Stefan Behl</a>
    *
    * @see     Registration  
  + * @version $Id$
    */
   public class RegistrationImpl implements Registration, java.io.Serializable
   {
       //a WSRP registration context
  -    private RegistrationContext context = null;
  +    private RegistrationContext context;
       //WSRP registration data
  -    private RegistrationData data = null;
  +    private RegistrationData data;
   
       /**
        * Returns the registration context. The registration context contains a
  
  
  
  1.5       +3 -2      ws-wsrp4j/src/org/apache/wsrp4j/producer/driver/ConsumerRegistryImpl.java
  
  Index: ConsumerRegistryImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/producer/driver/ConsumerRegistryImpl.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ConsumerRegistryImpl.java	26 Jul 2005 14:21:50 -0000	1.4
  +++ ConsumerRegistryImpl.java	10 Aug 2005 14:59:57 -0000	1.5
  @@ -53,14 +53,15 @@
    *
    * @see     ConsumerRegistry
    *
  + * @version $Id$
    */
   public class ConsumerRegistryImpl implements ConsumerRegistry
   {
   
       //initialized handle generator factory
  -    private HandleGeneratorFactoryImpl genFactory = null;
  +    private HandleGeneratorFactoryImpl genFactory;
       //initialized handle factory
  -    private HandleGenerator generator = null;
  +    private HandleGenerator generator;
   
       //persistence
       private PersistentDataObject persistentDataObject = null;//container for stored objects (information+data)
  
  
  
  1.4       +7 -6      ws-wsrp4j/src/org/apache/wsrp4j/producer/ConsumerRegistry.java
  
  Index: ConsumerRegistry.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/producer/ConsumerRegistry.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ConsumerRegistry.java	26 Jul 2005 14:21:52 -0000	1.3
  +++ ConsumerRegistry.java	10 Aug 2005 14:59:57 -0000	1.4
  @@ -27,6 +27,7 @@
    * identified by a registration handle.
    *
    * @author  <a href="mailto:stefan.behl@de.ibm.com">Stefan Behl</a>
  + * @version $Id$
    */
   public interface ConsumerRegistry
   {
  @@ -37,7 +38,7 @@
        *
        * @return A boolean indicating whether registration is required or not.
        */
  -    public boolean isRegistrationRequired();
  +    boolean isRegistrationRequired();
   
       /**
        * Creates a new registration-object for a certain consumer,
  @@ -47,7 +48,7 @@
        *
        * @return new registration-object
        */
  -    public Registration register(RegistrationData registrationData) throws WSRPException;
  +    Registration register(RegistrationData registrationData) throws WSRPException;
   
       /**
        * Returns a certain registration identified by regHandle.
  @@ -56,7 +57,7 @@
        *
        * @return registration-object identified by regHandle.
        */
  -    public Registration get(String regHandle);
  +    Registration get(String regHandle);
   
       /**
        * Returns all registrations (of all consumers) currently stored
  @@ -65,14 +66,14 @@
        * @return Iterator of a registration collection containing all
        *         registrations.
        */
  -    public Iterator getAll();
  +    Iterator getAll();
   
       /**
        * Deletes the registration of a certain consumer (identified by regHandle).
        *
        * @param regHandle  String representing the regHandle.
        */
  -    public void deregister(String regHandle);
  +    void deregister(String regHandle);
   
       /**
        * Evaluates whether a consumer identified by regHandle is registered or not.
  @@ -82,6 +83,6 @@
        * @returns A boolean indicating whether registration exists or not.
        *          Returns true if registration exists, else false.
        */
  -    public boolean check(String regHandle);
  +    boolean check(String regHandle);
   
   }
  
  
  
  1.4       +5 -4      ws-wsrp4j/src/org/apache/wsrp4j/producer/Registration.java
  
  Index: Registration.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/producer/Registration.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Registration.java	26 Jul 2005 14:21:52 -0000	1.3
  +++ Registration.java	10 Aug 2005 14:59:57 -0000	1.4
  @@ -23,6 +23,7 @@
    * Provides setters and getters.
    * 
    * @author  <a href="mailto:stefan.behl@de.ibm.com">Stefan Behl</a>
  + * @version $Id$
    */
   public interface Registration
   {
  @@ -33,7 +34,7 @@
        *
        * @return RegistrationContext
        */
  -    public RegistrationContext getRegistrationContext();
  +    RegistrationContext getRegistrationContext();
   
       /**
        * Returns the registration data. Supplies consumer data required for
  @@ -41,7 +42,7 @@
        *
        * @return RegistrationData
        */
  -    public RegistrationData getRegistrationData();
  +    RegistrationData getRegistrationData();
   
       /**
        * Sets the registration context. The registration context contains a
  @@ -49,7 +50,7 @@
        *
        * @param registrationContext The registration context of a certain Consumer.
        */
  -    public void setRegistrationContext(RegistrationContext registrationContext);
  +    void setRegistrationContext(RegistrationContext registrationContext);
   
       /**
        * Sets the registration data. Supplies consumer data required for
  @@ -57,5 +58,5 @@
        *
        * @param registrationData The registration data of a certain Consumer.
        */
  -    public void setRegistrationData(RegistrationData registrationData);
  +    void setRegistrationData(RegistrationData registrationData);
   }
  
  
  
  1.5       +3 -2      ws-wsrp4j/src/org/apache/wsrp4j/producer/ProviderAccess.java
  
  Index: ProviderAccess.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/producer/ProviderAccess.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ProviderAccess.java	26 Jul 2005 14:21:52 -0000	1.4
  +++ ProviderAccess.java	10 Aug 2005 14:59:57 -0000	1.5
  @@ -31,6 +31,7 @@
    * Reads in the file "WSRPServices.properties".
    *
    * @author <a href="mailto:stefan.behl@de.ibm.com">Stefan Behl</a>
  + * @version $Id$
    */
   public class ProviderAccess
   {
  @@ -42,10 +43,10 @@
       private static String PROVIDER_FACTORY = "provider.factory";
   
       // the content of the properties file
  -    private static Properties pFactories = null;
  +    private static Properties pFactories;
   
       // holds the instance of the provider after initializing
  -    private static Provider provider = null;
  +    private static Provider provider;
   
       // log and trace support
       private static Logger logger = LogManager.getLogManager().getLogger(ProviderAccess.class);
  
  
  
  1.4       +2 -1      ws-wsrp4j/src/org/apache/wsrp4j/producer/ConsumerRegistryFactory.java
  
  Index: ConsumerRegistryFactory.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/producer/ConsumerRegistryFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ConsumerRegistryFactory.java	26 Jul 2005 14:21:52 -0000	1.3
  +++ ConsumerRegistryFactory.java	10 Aug 2005 14:59:57 -0000	1.4
  @@ -22,6 +22,7 @@
    * This class provides an interface to any ConsumerRegistry.
    *
    * @author  <a href="mailto:stefan.behl@de.ibm.com">Stefan Behl</a>
  + * @version $Id$
    */
   public interface ConsumerRegistryFactory
   {
  @@ -33,6 +34,6 @@
        * @return ConsumerRegistry An instance of any class implementing the
        *                          ConsumerRegistry.
        */
  -    public ConsumerRegistry getConsumerRegistry(Provider provider) throws WSRPException;
  +    ConsumerRegistry getConsumerRegistry(Provider provider) throws WSRPException;
   
   }
  
  
  
  1.5       +1 -0      ws-wsrp4j/src/org/apache/wsrp4j/producer/ConsumerRegistryAccess.java
  
  Index: ConsumerRegistryAccess.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/producer/ConsumerRegistryAccess.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ConsumerRegistryAccess.java	26 Jul 2005 14:21:52 -0000	1.4
  +++ ConsumerRegistryAccess.java	10 Aug 2005 14:59:57 -0000	1.5
  @@ -29,6 +29,7 @@
    * Reads in the file "WSRPServices.properties".
    *
    * @author <a href="mailto:stefan.behl@de.ibm.com">Stefan Behl</a>
  + * @version $Id$
    */
   public class ConsumerRegistryAccess
   {
  
  
  
  1.9       +3 -2      ws-wsrp4j/src/org/apache/wsrp4j/log/LogManager.java
  
  Index: LogManager.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/log/LogManager.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- LogManager.java	9 Aug 2005 06:30:13 -0000	1.8
  +++ LogManager.java	10 Aug 2005 14:59:57 -0000	1.9
  @@ -19,8 +19,9 @@
   import java.util.Properties;
   
   /**
  -  Logger factory return an appropriate implementation of a Logger
  -*/
  + * Logger factory return an appropriate implementation of a Logger.
  + * @version $Id$
  + */
   public class LogManager
   {
   
  
  
  
  1.6       +1 -0      ws-wsrp4j/src/org/apache/wsrp4j/log/LoggerImpl.java
  
  Index: LoggerImpl.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/log/LoggerImpl.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- LoggerImpl.java	9 Aug 2005 06:19:39 -0000	1.5
  +++ LoggerImpl.java	10 Aug 2005 14:59:57 -0000	1.6
  @@ -17,6 +17,7 @@
   
   /**
    * Wrapper class for a log4j logger
  + * @version $Id$
    */
   public final class LoggerImpl implements Logger
   {
  
  
  
  1.5       +43 -41    ws-wsrp4j/src/org/apache/wsrp4j/log/Logger.java
  
  Index: Logger.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/log/Logger.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Logger.java	9 Aug 2005 06:19:39 -0000	1.4
  +++ Logger.java	10 Aug 2005 14:59:57 -0000	1.5
  @@ -16,47 +16,49 @@
   package org.apache.wsrp4j.log;
   
   /**
  -   <CODE>Logger</CODE> defines the methods which are used to create logging messages.
  -   <P>
  -   Logging levels are: <BR>
  -   <DL>
  -   <DT><CODE>ERROR</CODE>
  -   <DD>A serious failure in the execution of the application
  -   <DT><CODE>WARN</CODE>
  -   <DD>An abnormal condition has been detected. The user may have to take action, but the
  -   running code is able to handle this condition without ultimately failing.
  -   <DT><CODE>INFO</CODE>
  -   <DD>A condition that is worth noting but that does not require the user to perform
  -   an action.
  -   <DT><CODE>TRACE_LOW</CODE>
  -   <DD>A low-detail trace message.
  -   <DT><CODE>TRACE_MEDIUM</CODE>
  -   <DD>A medium-detail trace message.
  -   <DT><CODE>TRACE_HIGH</CODE>
  -   <DD>A high-detail trace message.
  -   </DL>
  -   <BR>
  - 
  -   Plain-text messages can be logged through the <CODE>text(...)</CODE> methods. These
  -   messages are generally hard-coded into the application.<BR>
  -   These methods should only be used for logging trace data.
  -   <P>
  -   In addition, the following specialized methods are available to log trace information.
  -   Each of these trace methods is a convenience to the application programmer:
  -   <DL>
  -   <DT><CODE>entry</CODE>
  -   <DD>Logs entry into a method.
  -   <DT><CODE>exit</CODE>
  -   <DD>Logs exit from a method.
  -   <DT><CODE>stackTrace</CODE>
  -   <DD>Logs the call stack.
  -   </DL>
  -   <P>
  -   For performance reasons the method <CODE>isLogging(int logLevel)</CODE> should be used
  -   to check if a given logging level is written at all to the output. The method should
  -   be used for the log message level entries, but is absolutely required to be called for
  -   trace messages to avoid unnecessary round-trips and object creation.<BR>
  -   <P>
  + * 
  + * <CODE>Logger</CODE> defines the methods which are used to create logging messages.
  + * <P>
  + * Logging levels are: <BR>
  + * <DL>
  + * <DT><CODE>ERROR</CODE>
  + * <DD>A serious failure in the execution of the application
  + * <DT><CODE>WARN</CODE>
  + * <DD>An abnormal condition has been detected. The user may have to take action, but the
  + * running code is able to handle this condition without ultimately failing.
  + * <DT><CODE>INFO</CODE>
  + * <DD>A condition that is worth noting but that does not require the user to perform
  + * an action.
  + * <DT><CODE>TRACE_LOW</CODE>
  + * <DD>A low-detail trace message.
  + * <DT><CODE>TRACE_MEDIUM</CODE>
  + * <DD>A medium-detail trace message.
  + * <DT><CODE>TRACE_HIGH</CODE>
  + * <DD>A high-detail trace message.
  + * </DL>
  + * <BR>
  + * 
  + * Plain-text messages can be logged through the <CODE>text(...)</CODE> methods. These
  + * messages are generally hard-coded into the application.<BR>
  + * These methods should only be used for logging trace data.
  + * <P>
  + * In addition, the following specialized methods are available to log trace information.
  + * Each of these trace methods is a convenience to the application programmer:
  + * <DL>
  + * <DT><CODE>entry</CODE>
  + * <DD>Logs entry into a method.
  + * <DT><CODE>exit</CODE>
  + * <DD>Logs exit from a method.
  + * <DT><CODE>stackTrace</CODE>
  + * <DD>Logs the call stack.
  + * </DL>
  + * <P>
  + * For performance reasons the method <CODE>isLogging(int logLevel)</CODE> should be used
  + * to check if a given logging level is written at all to the output. The method should
  + * be used for the log message level entries, but is absolutely required to be called for
  + * trace messages to avoid unnecessary round-trips and object creation.<BR>
  + * <P>
  + * @version $Id$
    */
   public interface Logger {
   
  
  
  
  1.4       +1 -1      ws-wsrp4j/src/org/apache/wsrp4j/persistence/PersistentHandler.java
  
  Index: PersistentHandler.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/PersistentHandler.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PersistentHandler.java	9 Aug 2005 06:19:39 -0000	1.3
  +++ PersistentHandler.java	10 Aug 2005 14:59:57 -0000	1.4
  @@ -24,7 +24,7 @@
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public interface PersistentHandler {
   
  
  
  
  1.4       +1 -0      ws-wsrp4j/src/org/apache/wsrp4j/persistence/PersistentInformationProvider.java
  
  Index: PersistentInformationProvider.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/PersistentInformationProvider.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PersistentInformationProvider.java	9 Aug 2005 06:19:39 -0000	1.3
  +++ PersistentInformationProvider.java	10 Aug 2005 14:59:57 -0000	1.4
  @@ -20,6 +20,7 @@
    * This class is the generic interface for the PersistentInformationProviders.
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
  + * @version $Id$
    */
   public interface PersistentInformationProvider {
   
  
  
  
  1.5       +1 -1      ws-wsrp4j/src/org/apache/wsrp4j/persistence/PersistentDataObject.java
  
  Index: PersistentDataObject.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/PersistentDataObject.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PersistentDataObject.java	9 Aug 2005 06:19:39 -0000	1.4
  +++ PersistentDataObject.java	10 Aug 2005 14:59:57 -0000	1.5
  @@ -26,7 +26,7 @@
    * 
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public interface PersistentDataObject {
   
  
  
  
  1.4       +1 -0      ws-wsrp4j/src/org/apache/wsrp4j/persistence/PersistentInformation.java
  
  Index: PersistentInformation.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/PersistentInformation.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PersistentInformation.java	9 Aug 2005 06:19:39 -0000	1.3
  +++ PersistentInformation.java	10 Aug 2005 14:59:57 -0000	1.4
  @@ -20,6 +20,7 @@
    * with PersistentDataObjects.
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
  + * @version $Id$
    */
   public interface PersistentInformation {
   
  
  
  
  1.4       +1 -1      ws-wsrp4j/src/org/apache/wsrp4j/persistence/PersistentFactory.java
  
  Index: PersistentFactory.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/PersistentFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PersistentFactory.java	9 Aug 2005 06:19:39 -0000	1.3
  +++ PersistentFactory.java	10 Aug 2005 14:59:58 -0000	1.4
  @@ -24,7 +24,7 @@
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public interface PersistentFactory {
   
  
  
  
  1.4       +1 -1      ws-wsrp4j/src/org/apache/wsrp4j/persistence/ClientPersistentFactory.java
  
  Index: ClientPersistentFactory.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/ClientPersistentFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ClientPersistentFactory.java	9 Aug 2005 06:19:39 -0000	1.3
  +++ ClientPersistentFactory.java	10 Aug 2005 14:59:58 -0000	1.4
  @@ -25,7 +25,7 @@
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public interface ClientPersistentFactory extends PersistentFactory {
   
  
  
  
  1.4       +1 -1      ws-wsrp4j/src/org/apache/wsrp4j/persistence/ServerPersistentFactory.java
  
  Index: ServerPersistentFactory.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/ServerPersistentFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ServerPersistentFactory.java	9 Aug 2005 06:19:39 -0000	1.3
  +++ ServerPersistentFactory.java	10 Aug 2005 14:59:58 -0000	1.4
  @@ -25,7 +25,7 @@
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public interface ServerPersistentFactory extends PersistentFactory {
   
  
  
  
  1.4       +1 -7      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/PersistentDataObjectXML.java
  
  Index: PersistentDataObjectXML.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/PersistentDataObjectXML.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PersistentDataObjectXML.java	1 Jun 2004 10:48:53 -0000	1.3
  +++ PersistentDataObjectXML.java	10 Aug 2005 14:59:59 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml;
   
   import org.apache.wsrp4j.persistence.PersistentDataObject;
  @@ -35,7 +29,7 @@
    * 
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public interface PersistentDataObjectXML extends PersistentDataObject
   {
  
  
  
  1.4       +1 -6      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/ServerPersistentInformationProvider.java
  
  Index: ServerPersistentInformationProvider.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/ServerPersistentInformationProvider.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ServerPersistentInformationProvider.java	1 Jun 2004 10:48:53 -0000	1.3
  +++ ServerPersistentInformationProvider.java	10 Aug 2005 14:59:59 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml;
   
   import org.apache.wsrp4j.persistence.*;
  @@ -30,6 +24,7 @@
    * xml file support used by server applications e.g. producers.
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
  + * @version $Id$
    */
   public interface ServerPersistentInformationProvider extends PersistentInformationProvider
   {
  
  
  
  1.4       +1 -6      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/PersistentInformationXML.java
  
  Index: PersistentInformationXML.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/PersistentInformationXML.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PersistentInformationXML.java	1 Jun 2004 10:48:53 -0000	1.3
  +++ PersistentInformationXML.java	10 Aug 2005 14:59:59 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml;
   
   import org.apache.wsrp4j.persistence.PersistentInformation;
  @@ -28,6 +22,7 @@
    * to store and retrieve PersistentDataObjects with castor XML support.
    * 
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
  + * @version $Id$
    */
   public interface PersistentInformationXML extends PersistentInformation
   {
  
  
  
  1.4       +1 -6      ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/ClientPersistentInformationProvider.java
  
  Index: ClientPersistentInformationProvider.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/xml/ClientPersistentInformationProvider.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- ClientPersistentInformationProvider.java	1 Jun 2004 10:48:53 -0000	1.3
  +++ ClientPersistentInformationProvider.java	10 Aug 2005 14:59:59 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.xml;
   
   import org.apache.wsrp4j.persistence.*;
  @@ -31,6 +25,7 @@
    * xml file support used by client applications e.g. consumers.
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
  + * @version $Id$
    */
   public interface ClientPersistentInformationProvider extends PersistentInformationProvider
   {
  
  
  
  1.4       +1 -7      ws-wsrp4j/src/org/apache/wsrp4j/persistence/driver/WSRPServiceDescription.java
  
  Index: WSRPServiceDescription.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/driver/WSRPServiceDescription.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- WSRPServiceDescription.java	1 Jun 2004 10:48:54 -0000	1.3
  +++ WSRPServiceDescription.java	10 Aug 2005 14:59:59 -0000	1.4
  @@ -13,12 +13,6 @@
    * See the License for the specific language governing permissions and
    * limitations under the License.
    */
  -
  -/* 
  -
  - */
  -
  -
   package org.apache.wsrp4j.persistence.driver;
   
   import oasis.names.tc.wsrp.v1.types.CookieProtocol;
  @@ -33,7 +27,7 @@
    * 
    * @see ServiceDescription
    *
  - * @version 1.0
  + * @version $Id$
    */
   public class WSRPServiceDescription extends ServiceDescription
   {
  
  
  
  1.4       +3 -3      ws-wsrp4j/src/org/apache/wsrp4j/persistence/driver/PersistentAccess.java
  
  Index: PersistentAccess.java
  ===================================================================
  RCS file: /home/cvs/ws-wsrp4j/src/org/apache/wsrp4j/persistence/driver/PersistentAccess.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- PersistentAccess.java	9 Aug 2005 09:10:29 -0000	1.3
  +++ PersistentAccess.java	10 Aug 2005 14:59:59 -0000	1.4
  @@ -23,8 +23,8 @@
   import org.apache.wsrp4j.exception.WSRPXHelper;
   import org.apache.wsrp4j.log.LogManager;
   import org.apache.wsrp4j.log.Logger;
  -
  -import org.apache.wsrp4j.persistence.*;
  +import org.apache.wsrp4j.persistence.ClientPersistentFactory;
  +import org.apache.wsrp4j.persistence.ServerPersistentFactory;
   
   /**
    * This class provides a static method to access the client and server
  @@ -33,7 +33,7 @@
    *
    * @author  <a href="mailto:Ralf.Altrichter@de.ibm.com">Ralf Altrichter</a>
    *
  - * @version 1.0
  + * @version $Id$
    */
   public class PersistentAccess
   {