@RestController public class SummaryController extends Object
| Constructor and Description |
|---|
SummaryController(SummaryService service) |
| Modifier and Type | Method and Description |
|---|---|
PlatformSummary |
getOrganizationsAndUsers() |
OrganizationSummary |
getOrganizationUsers(String orgGuid) |
@Autowired public SummaryController(SummaryService service)
@RequestMapping(value="/rest/organizations/summary",
method=GET,
produces="application/json")
public PlatformSummary getOrganizationsAndUsers()
@RequestMapping(value="/rest/organizations/{orgGuid}/summary",
method=GET,
produces="application/json")
public OrganizationSummary getOrganizationUsers(@PathVariable(value="orgGuid")
String orgGuid)
Copyright © 2016 Pivotal Software, Inc.. All rights reserved.