01: package org.concern.controller.jmx;
02:
03: import org.concern.Collaboration;
04: import org.concern.ControllerException;
05:
06: /**
07: * @see org.concern.controller.jmx.ControllerService
08: * @author hengels
09: */
10: public interface CollaborationServiceMBean extends Collaboration {
11: /**
12: * Create the <tt>Collaboration</tt> and bind it to the jndi name
13: */
14: public void start() throws ControllerException;
15:
16: /**
17: * Unbind the <tt>Collaboration</tt> or stub from jndi
18: */
19: public void stop();
20:
21: String getJndiName();
22:
23: void setJndiName(String jndiName);
24: }
|