User: olegnitz
  Date: 01/09/01 15:03:14

  Modified:    src/main/org/jboss/ejb/plugins/cmp
                        ActivateEntityCommand.java CMPStoreManager.java
                        CommandFactory.java CreateEntityCommand.java
                        DestroyCommand.java FindEntitiesCommand.java
                        FindEntityCommand.java InitCommand.java
                        InitEntityCommand.java LoadEntitiesCommand.java
                        LoadEntityCommand.java PassivateEntityCommand.java
                        RemoveEntityCommand.java StartCommand.java
                        StopCommand.java StoreEntityCommand.java
  Log:
  converted tabs to spaces
  
  Revision  Changes    Path
  1.3       +4 -4      
jboss/src/main/org/jboss/ejb/plugins/cmp/ActivateEntityCommand.java
  
  Index: ActivateEntityCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/ActivateEntityCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- ActivateEntityCommand.java        2001/08/03 17:15:45     1.2
  +++ ActivateEntityCommand.java        2001/09/01 22:03:14     1.3
  @@ -18,14 +18,14 @@
    * initialize the "PersistenceContext" maintianed in the context.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStore.
  + * Multiplicity:   
  + *      One per CMPStore.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface ActivateEntityCommand
   {
  
  
  
  1.5       +13 -13    jboss/src/main/org/jboss/ejb/plugins/cmp/CMPStoreManager.java
  
  Index: CMPStoreManager.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/CMPStoreManager.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CMPStoreManager.java      2001/08/03 17:15:45     1.4
  +++ CMPStoreManager.java      2001/09/01 22:03:14     1.5
  @@ -42,17 +42,17 @@
    * are the classic EntityBean messages (e.g., activate, passivate...). 
    *
    * Dependency:
  - *           In general, this package depends as little as possible on other 
packages.
  + *      In general, this package depends as little as possible on other packages.
    * Specifically it depends on container information from org.jboss.ejb, such as
    * EntityEnterpriseContext.  Additionally, implementations of this class, will
    * depend on org.jboss.metadata to aquire information about the entity.
    *
    * Life-cycle:
  - *           Tied to the life-cycle of the entity container.
  + *      Tied to the life-cycle of the entity container.
    *
  - * Multiplicity:     
  - *           One per cmp entity bean. This could be less if another implementaion 
of 
  - * EntityPersistenceStore is created and thoes beans use the implementation         
 
  + * Multiplicity:   
  + *      One per cmp entity bean. This could be less if another implementaion of 
  + * EntityPersistenceStore is created and thoes beans use the implementation       
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>danch (Dan Christopherson)</a>
  @@ -61,7 +61,7 @@
    * @author <a href="mailto:[EMAIL PROTECTED]";>Joe Shevland</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
    * @see org.jboss.ejb.EntityPersistenceStore
  - * @version $Revision: 1.4 $
  + * @version $Revision: 1.5 $
    */                            
   public abstract class CMPStoreManager 
      implements EntityPersistenceStore2
  @@ -99,13 +99,13 @@
      public void setContainer(Container container) {
         this.container = (EntityContainer)container;
      }
  -     
  -     public Log getLog() {
  -             return log;
  -     }
  +   
  +   public Log getLog() {
  +      return log;
  +   }
   
  -     protected abstract CommandFactory createCommandFactory()  throws Exception ;
  -     
  +   protected abstract CommandFactory createCommandFactory()  throws Exception ;
  +   
      // Container Life cycle commands -------------------------
   
      public void init() throws Exception {
  @@ -226,7 +226,7 @@
      // This class supports tuned updates and read-only entities
   
      public static class PersistenceContext {
  -             public Map fieldState = new HashMap();
  +      public Map fieldState = new HashMap();
      }
   }
   
  
  
  
  1.3       +4 -4      jboss/src/main/org/jboss/ejb/plugins/cmp/CommandFactory.java
  
  Index: CommandFactory.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/CommandFactory.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- CommandFactory.java       2001/08/03 17:15:45     1.2
  +++ CommandFactory.java       2001/09/01 22:03:14     1.3
  @@ -10,14 +10,14 @@
    * CommandFactory follows an Abstract Factory pattern [Gamma et. al, 1995]
    *
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStore.
  + * Multiplicity:   
  + *      One per CMPStore.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface CommandFactory
   {
  
  
  
  1.3       +4 -4      
jboss/src/main/org/jboss/ejb/plugins/cmp/CreateEntityCommand.java
  
  Index: CreateEntityCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/CreateEntityCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- CreateEntityCommand.java  2001/08/03 17:15:45     1.2
  +++ CreateEntityCommand.java  2001/09/01 22:03:14     1.3
  @@ -18,14 +18,14 @@
    * This command should store the current state of the instance.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface CreateEntityCommand
   {
  
  
  
  1.3       +4 -4      jboss/src/main/org/jboss/ejb/plugins/cmp/DestroyCommand.java
  
  Index: DestroyCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/DestroyCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DestroyCommand.java       2001/08/03 17:15:45     1.2
  +++ DestroyCommand.java       2001/09/01 22:03:14     1.3
  @@ -11,14 +11,14 @@
    * DestroyCommand informs the store that the container is exiting. 
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface DestroyCommand
   {
  
  
  
  1.4       +4 -4      
jboss/src/main/org/jboss/ejb/plugins/cmp/FindEntitiesCommand.java
  
  Index: FindEntitiesCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/FindEntitiesCommand.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FindEntitiesCommand.java  2001/08/03 17:15:45     1.3
  +++ FindEntitiesCommand.java  2001/09/01 22:03:14     1.4
  @@ -17,14 +17,14 @@
    * FindEntitiesCommand handles finders that return collections.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStore.
  + * Multiplicity:   
  + *      One per CMPStore.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public interface FindEntitiesCommand
   {
  
  
  
  1.4       +4 -4      jboss/src/main/org/jboss/ejb/plugins/cmp/FindEntityCommand.java
  
  Index: FindEntityCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/FindEntityCommand.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- FindEntityCommand.java    2001/08/03 17:15:45     1.3
  +++ FindEntityCommand.java    2001/09/01 22:03:14     1.4
  @@ -15,14 +15,14 @@
    * FindEntityCommand handles finders that return a single bean.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.3 $
  + * @version $Revision: 1.4 $
    */
   public interface FindEntityCommand
   {
  
  
  
  1.3       +4 -4      jboss/src/main/org/jboss/ejb/plugins/cmp/InitCommand.java
  
  Index: InitCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/InitCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InitCommand.java  2001/08/03 17:15:45     1.2
  +++ InitCommand.java  2001/09/01 22:03:14     1.3
  @@ -13,14 +13,14 @@
    * the specific entity bean.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface InitCommand
   {
  
  
  
  1.3       +4 -4      jboss/src/main/org/jboss/ejb/plugins/cmp/InitEntityCommand.java
  
  Index: InitEntityCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/InitEntityCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- InitEntityCommand.java    2001/08/03 17:15:45     1.2
  +++ InitEntityCommand.java    2001/09/01 22:03:14     1.3
  @@ -17,13 +17,13 @@
    * to 0 or null, as is required by the EJB 2.0 specification.  
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface InitEntityCommand
   {
  
  
  
  1.3       +4 -4      
jboss/src/main/org/jboss/ejb/plugins/cmp/LoadEntitiesCommand.java
  
  Index: LoadEntitiesCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/LoadEntitiesCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LoadEntitiesCommand.java  2001/08/03 17:15:45     1.2
  +++ LoadEntitiesCommand.java  2001/09/01 22:03:14     1.3
  @@ -17,14 +17,14 @@
    * in the finder results.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>danch (Dan Christopherson)</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface LoadEntitiesCommand
   {
  
  
  
  1.3       +4 -4      jboss/src/main/org/jboss/ejb/plugins/cmp/LoadEntityCommand.java
  
  Index: LoadEntityCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/LoadEntityCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- LoadEntityCommand.java    2001/08/03 17:15:45     1.2
  +++ LoadEntityCommand.java    2001/09/01 22:03:14     1.3
  @@ -16,14 +16,14 @@
    * This command should load the current state of the instance.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface LoadEntityCommand
   {
  
  
  
  1.3       +4 -4      
jboss/src/main/org/jboss/ejb/plugins/cmp/PassivateEntityCommand.java
  
  Index: PassivateEntityCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/PassivateEntityCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- PassivateEntityCommand.java       2001/08/03 17:15:45     1.2
  +++ PassivateEntityCommand.java       2001/09/01 22:03:14     1.3
  @@ -20,14 +20,14 @@
    * cached (Commit options A and B) it will not call passivate.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStore.
  + * Multiplicity:   
  + *      One per CMPStore.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface PassivateEntityCommand
   {
  
  
  
  1.3       +4 -4      
jboss/src/main/org/jboss/ejb/plugins/cmp/RemoveEntityCommand.java
  
  Index: RemoveEntityCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/RemoveEntityCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- RemoveEntityCommand.java  2001/08/03 17:15:45     1.2
  +++ RemoveEntityCommand.java  2001/09/01 22:03:14     1.3
  @@ -17,14 +17,14 @@
    * This command should remove the current state of the instance.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface RemoveEntityCommand
   {
  
  
  
  1.3       +4 -4      jboss/src/main/org/jboss/ejb/plugins/cmp/StartCommand.java
  
  Index: StartCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/StartCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- StartCommand.java 2001/08/03 17:15:45     1.2
  +++ StartCommand.java 2001/09/01 22:03:14     1.3
  @@ -12,14 +12,14 @@
    * start sending other messages to the store.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface StartCommand
   {
  
  
  
  1.3       +4 -4      jboss/src/main/org/jboss/ejb/plugins/cmp/StopCommand.java
  
  Index: StopCommand.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/StopCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- StopCommand.java  2001/08/03 17:15:45     1.2
  +++ StopCommand.java  2001/09/01 22:03:14     1.3
  @@ -13,14 +13,14 @@
    * the store.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface StopCommand
   {
  
  
  
  1.3       +4 -4      jboss/src/main/org/jboss/ejb/plugins/cmp/StoreEntityCommand.java
  
  Index: StoreEntityCommand.java
  ===================================================================
  RCS file: 
/cvsroot/jboss/jboss/src/main/org/jboss/ejb/plugins/cmp/StoreEntityCommand.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- StoreEntityCommand.java   2001/08/03 17:15:45     1.2
  +++ StoreEntityCommand.java   2001/09/01 22:03:14     1.3
  @@ -16,14 +16,14 @@
    * This command should update the current state of the instance.
    *      
    * Life-cycle:
  - *           Tied to CMPStoreManager.
  + *      Tied to CMPStoreManager.
    *    
  - * Multiplicity:     
  - *           One per CMPStoreManager.
  + * Multiplicity:   
  + *      One per CMPStoreManager.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>Dain Sundstrom</a>
    * @author <a href="mailto:[EMAIL PROTECTED]";>Justin Forder</a>
  - * @version $Revision: 1.2 $
  + * @version $Revision: 1.3 $
    */
   public interface StoreEntityCommand
   {
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to