br.com.andrewribeiro.ribrest.services.command.AbstractCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Ribrest Show documentation
Show all versions of Ribrest Show documentation
Ribrest Framework - A simple Java framework that truly improve your productivity when developing restful based webservices.
package br.com.andrewribeiro.ribrest.services.command;
import br.com.andrewribeiro.ribrest.services.FlowContainer;
import javax.inject.Inject;
/**
*
* @author Andrew Ribeiro
*/
public abstract class AbstractCommand implements Command{
@Inject
protected FlowContainer flowContainer;
}