use of com.tvd12.ezyfoxserver.command.impl.EzyAppSetupImpl in project ezyfox-server by youngmonkeys.
the class EzySimpleAppContext method doInit.
@Override
protected void doInit() {
EzySetup setup = new EzyAppSetupImpl(app);
this.sendResponse = new EzyAppSendResponseImpl(this);
this.properties.put(EzyAppSendResponse.class, sendResponse);
this.properties.put(EzyHandleException.class, new EzyAppHandleExceptionImpl(app));
this.properties.put(EzySetup.class, setup);
this.properties.put(EzyAppSetup.class, setup);
}
use of com.tvd12.ezyfoxserver.command.impl.EzyAppSetupImpl in project ezyfox-server by youngmonkeys.
the class EzyAppSetupImplTest method test.
@Test
public void test() {
EzySimpleApplication app = new EzySimpleApplication();
EzyAppSetupImpl cmd = new EzyAppSetupImpl(app);
cmd.setRequestController((ctx, event) -> {
});
}
Aggregations