Created
May 6, 2015 04:40
-
-
Save BenDol/f18239d6cc5eb85f75c8 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
/* | |
Management API Branch | |
*/ | |
/** Managements API Structure, root: {@value Managements#ROOT} */ | |
public static interface Managements extends PathBranch { | |
public static final String ROOT = "/" + Params.MANAGEMENTS; | |
public static final String PATH_ID = "/{" + Params.ID + "}"; | |
public static final String PATH_REQUEST_COUNT = "/request_counts"; | |
/** Resource specific params */ | |
public static interface Params { | |
public static final String MANAGEMENTS = "managements"; | |
public static final String ID = MANAGEMENTS + "_" + RestParams.ID; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment