Created
May 6, 2015 04:34
-
-
Save BenDol/b9e1a4b2903f22cdf12e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The protocol for rest controller: {@link nz.co.doltech.actions.server.controllers.ManagementsController} | |
*/ | |
@Path(Managements.ROOT) | |
public interface ManagementsProtocol extends Protocol { | |
@POST | |
@Path(PATH_REQUEST_COUNT) | |
RestAction<RequestCounts> getRequestCounts(Filter filter); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment