@Path(value="/api/identity/scim2/v1.[\\d]+/Users") @Consumes(value="application/json") @Produces(value="application/json") @ApplicationPath(value="/Users") public class UsersApi extends Object implements org.wso2.msf4j.Microservice
| Constructor and Description |
|---|
UsersApi() |
| Modifier and Type | Method and Description |
|---|---|
javax.ws.rs.core.Response |
usersGet(Integer startIndex,
Integer count,
String filter,
org.wso2.msf4j.Request request) |
javax.ws.rs.core.Response |
usersIdDelete(String id,
org.wso2.msf4j.Request request) |
javax.ws.rs.core.Response |
usersIdGet(String id,
org.wso2.msf4j.Request request) |
javax.ws.rs.core.Response |
usersIdPut(String id,
UserDTO body,
org.wso2.msf4j.Request request) |
javax.ws.rs.core.Response |
usersPost(UserDTO body,
org.wso2.msf4j.Request request) |
javax.ws.rs.core.Response |
usersSearchPost(UserSearchDTO body,
org.wso2.msf4j.Request request) |
@OPTIONS
@GET
@Consumes(value="application/json")
@Produces(value="application/json")
public javax.ws.rs.core.Response usersGet(@DefaultValue(value="0") @QueryParam(value="startIndex")
Integer startIndex,
@DefaultValue(value="25") @QueryParam(value="count")
Integer count,
@QueryParam(value="filter")
String filter,
@Context
org.wso2.msf4j.Request request)
throws NotFoundException
NotFoundException@OPTIONS
@DELETE
@Path(value="/{id}")
@Consumes(value="application/json")
@Produces(value="application/json")
public javax.ws.rs.core.Response usersIdDelete(@PathParam(value="id")
String id,
@Context
org.wso2.msf4j.Request request)
throws NotFoundException
NotFoundException@OPTIONS
@GET
@Path(value="/{id}")
@Consumes(value="application/json")
@Produces(value="application/json")
public javax.ws.rs.core.Response usersIdGet(@PathParam(value="id")
String id,
@Context
org.wso2.msf4j.Request request)
throws NotFoundException
NotFoundException@OPTIONS
@PUT
@Path(value="/{id}")
@Consumes(value="application/json")
@Produces(value="application/json")
public javax.ws.rs.core.Response usersIdPut(@PathParam(value="id")
String id,
UserDTO body,
@Context
org.wso2.msf4j.Request request)
throws NotFoundException
NotFoundException@OPTIONS @POST @Consumes(value="application/json") @Produces(value="application/json") public javax.ws.rs.core.Response usersPost(UserDTO body, @Context org.wso2.msf4j.Request request) throws NotFoundException
NotFoundException@OPTIONS @POST @Path(value="/.search") @Consumes(value="application/json") @Produces(value="application/json") public javax.ws.rs.core.Response usersSearchPost(UserSearchDTO body, @Context org.wso2.msf4j.Request request) throws NotFoundException
NotFoundExceptionCopyright © 2018 WSO2. All rights reserved.