All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.spincast.website.exchange.AppRouter Maven / Gradle / Ivy

The newest version!
package org.spincast.website.exchange;

import org.spincast.core.websocket.IDefaultWebsocketContext;
import org.spincast.plugins.routing.SpincastRouter;
import org.spincast.plugins.routing.SpincastRouterDeps;

import com.google.inject.Inject;

/**
 * The only purpose of this class is to make it
 * easier to inject the application specific router by using
 * "IAppRouter" instead of "IRouter<IAppRequestContext>".
 */
public class AppRouter extends SpincastRouter
                       implements IAppRouter {

    @Inject
    public AppRouter(SpincastRouterDeps spincastRouterDeps) {
        super(spincastRouterDeps);
        // nothing required
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy