use of com.tvd12.ezyfoxserver.support.test.data.GreetRequest in project ezyfox-server by youngmonkeys.
the class HelloController method greet.
@EzyDoHandle("Hello")
public void greet(GreetRequest request, EzyUser user, EzySession session) {
GreetResponse response = new GreetResponse("Hello " + request.getWho() + "!");
System.out.println("HelloController::Big/Hello response: " + response);
}
use of com.tvd12.ezyfoxserver.support.test.data.GreetRequest in project ezyfox-server by youngmonkeys.
the class HelloController method greet.
@EzyDoHandle("Hello5")
public void greet(@EzyRequestData GreetRequest request, EzyUser user, EzySession session, char nothing) {
GreetResponse response = new GreetResponse("Hello " + request.getWho() + "!");
System.out.println("HelloController::Big/Hello response: " + response);
}
use of com.tvd12.ezyfoxserver.support.test.data.GreetRequest in project ezyfox-server by youngmonkeys.
the class HelloController method greet.
@EzyDoHandle("Hello4")
public void greet(@EzyRequestData GreetRequest request, EzyUser user, EzySession session, boolean nothing) {
GreetResponse response = new GreetResponse("Hello " + request.getWho() + "!");
System.out.println("HelloController::Big/Hello response: " + response);
}
use of com.tvd12.ezyfoxserver.support.test.data.GreetRequest in project ezyfox-server by youngmonkeys.
the class HelloController method greet.
@EzyDoHandle("Hello3")
public void greet(@EzyRequestData GreetRequest request, EzyUser user, EzySession session, int nothing) {
GreetResponse response = new GreetResponse("Hello " + request.getWho() + "!");
System.out.println("HelloController::Big/Hello response: " + response);
}
Aggregations