Skip to content

Instantly share code, notes, and snippets.

@BenDol
Created May 6, 2015 04:40
Show Gist options
  • Save BenDol/f18239d6cc5eb85f75c8 to your computer and use it in GitHub Desktop.
Save BenDol/f18239d6cc5eb85f75c8 to your computer and use it in GitHub Desktop.
/*
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