public interface UserApi
UserAsyncApi| Modifier and Type | Method and Description |
|---|---|
User |
get(String name)
Retrieves information about the specified user, including the user's path, GUID, and ARN.
|
User |
getCurrent()
Retrieves information about the current user, including the user's path, GUID, and ARN.
|
PagedIterable<User> |
list()
returns all users in order.
|
IterableWithMarker<User> |
listAt(String marker)
retrieves up to 100 users in order, starting at
marker |
IterableWithMarker<User> |
listFirstPage()
retrieves up to 100 users in order.
|
PagedIterable<User> |
listPathPrefix(String pathPrefix)
returns all users in order at the specified
pathPrefix. |
IterableWithMarker<User> |
listPathPrefixAt(String pathPrefix,
String marker)
retrieves up to 100 users in order at the specified
pathPrefix, starting at marker. |
IterableWithMarker<User> |
listPathPrefixFirstPage(String pathPrefix)
retrieves up to 100 users in order at the specified
pathPrefix. |
User getCurrent()
PagedIterable<User> list()
IterableWithMarker<User> listFirstPage()
IterableWithMarker<User> listAt(String marker)
markermarker - starting point to resume the listPagedIterable<User> listPathPrefix(String pathPrefix)
pathPrefix.pathPrefix - ex. /division_abc/subdivision_xyz/IterableWithMarker<User> listPathPrefixFirstPage(String pathPrefix)
pathPrefix.pathPrefix - ex. /division_abc/subdivision_xyz/IterableWithMarker<User> listPathPrefixAt(String pathPrefix, String marker)
pathPrefix, starting at marker.pathPrefix - ex. /division_abc/subdivision_xyz/marker - starting point to resume the listCopyright © 2009-2013 jclouds. All Rights Reserved.