|
⇤ ← Revision 1 as of 2005-09-26 12:24:39
Size: 825
Comment:
|
← Revision 2 as of 2009-09-20 22:01:31 ⇥
Size: 825
Comment: converted to 1.6 markup
|
| No differences found! | |
package scm.hivemind.statefulservice;
import org.apache.hivemind.impl.ConstructableServicePoint;
import org.apache.hivemind.internal.ServiceModel;
import org.apache.hivemind.internal.ServiceModelFactory;
/**
* Factory for the stateful service model.
*
* @author marcus
*/
public class StatefulServiceModelFactory implements ServiceModelFactory {
/**
*
*/
public StatefulServiceModelFactory() {
super();
// TODO Auto-generated constructor stub
}
/* (non-Javadoc)
* @see org.apache.hivemind.internal.ServiceModelFactory#createServiceModelForService(org.apache.hivemind.impl.ConstructableServicePoint)
*/
public ServiceModel createServiceModelForService(
ConstructableServicePoint servicePoint) {
return new StatefulServiceModel( servicePoint );
}
}