Methods Summary |
---|
public void | create()
System.out.println("ServiceOne - Creating");
|
public void | destroy()
System.out.println("ServiceOne - Destroying");
|
public int | getAttribute()
return this.attribute;
|
public java.lang.String | sayHello()
return "Hello from service One";
|
public void | setAttribute(int attribute)
this.attribute = attribute;
|
public void | start()
System.out.println("ServiceOne - Starting");
|
public void | stop()
System.out.println("ServiceOne - Stopping");
|