Coverage Report - org.mule.registry.impl.AbstractEntry
 
Classes in this File Line Coverage Branch Coverage Complexity
AbstractEntry
0%
0/25
N/A
1
 
 1  
 /*
 2  
  * $Id: AbstractEntry.java 7976 2007-08-21 14:26:13Z dirk.olmes $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.registry.impl;
 12  
 
 13  
 import org.mule.registry.Entry;
 14  
 import org.mule.registry.Registry;
 15  
 import org.mule.registry.RegistryException;
 16  
 
 17  
 import java.io.IOException;
 18  
 import java.io.Serializable;
 19  
 
 20  
 /**
 21  
  * @author <a href="mailto:gnt@codehaus.org">Guillaume Nodet</a>
 22  
  */
 23  
 public abstract class AbstractEntry implements Entry, Serializable
 24  
 {
 25  
 
 26  
     protected transient String currentState;
 27  
     protected String name;
 28  
     protected String installRoot;
 29  
     protected String stateAtShutdown;
 30  
     protected transient Registry registry;
 31  
 
 32  
     protected AbstractEntry(Registry registry)
 33  0
     {
 34  0
         this.currentState = UNKNOWN;
 35  0
         this.stateAtShutdown = UNKNOWN;
 36  0
         this.registry = registry;
 37  0
     }
 38  
 
 39  
     protected void readObject(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException
 40  
     {
 41  0
         in.defaultReadObject();
 42  0
         this.currentState = UNKNOWN;
 43  0
     }
 44  
 
 45  
     /*
 46  
      * (non-Javadoc)
 47  
      * 
 48  
      * @see org.mule.jbi.registry.Entry#getName()
 49  
      */
 50  
     public String getName()
 51  
     {
 52  0
         return this.name;
 53  
     }
 54  
 
 55  
     /*
 56  
      * (non-Javadoc)
 57  
      * 
 58  
      * @see org.mule.jbi.registry.Entry#getInstallRoot()
 59  
      */
 60  
     public String getInstallRoot()
 61  
     {
 62  0
         return this.installRoot;
 63  
     }
 64  
 
 65  
     /*
 66  
      * (non-Javadoc)
 67  
      * 
 68  
      * @see javax.jbi.management.LifeCycleMBean#getCurrentState()
 69  
      */
 70  
     public synchronized String getCurrentState()
 71  
     {
 72  0
         return this.currentState;
 73  
     }
 74  
 
 75  
     /*
 76  
      * (non-Javadoc)
 77  
      * 
 78  
      * @see org.mule.jbi.registry.Entry#getStatusAtShutdown()
 79  
      */
 80  
     public String getStateAtShutdown()
 81  
     {
 82  0
         return this.stateAtShutdown;
 83  
     }
 84  
 
 85  
     public void setCurrentState(String currentState) throws RegistryException
 86  
     {
 87  0
         this.currentState = currentState;
 88  0
         getRegistry().save();
 89  0
     }
 90  
 
 91  
     /*
 92  
      * (non-Javadoc)
 93  
      * 
 94  
      * @see org.mule.jbi.registry.Entry#setInstallRoot(java.lang.String)
 95  
      */
 96  
     public void setInstallRoot(String installRoot)
 97  
     {
 98  0
         this.installRoot = installRoot;
 99  0
     }
 100  
 
 101  
     public void setName(String name)
 102  
     {
 103  0
         this.name = name;
 104  0
     }
 105  
 
 106  
     public void setStateAtShutdown(String statusAtShutdown)
 107  
     {
 108  0
         this.stateAtShutdown = statusAtShutdown;
 109  0
     }
 110  
 
 111  
     public Registry getRegistry()
 112  
     {
 113  0
         return registry;
 114  
     }
 115  
 
 116  
     public void setRegistry(Registry registry)
 117  
     {
 118  0
         this.registry = registry;
 119  0
     }
 120  
 
 121  
     protected void checkDescriptor() throws RegistryException
 122  
     {
 123  
         // nothing to do (yet?)
 124  0
     }
 125  
 
 126  
 }