Package de.dlr.proseo.usermgr.rest
Schnittstelle UserController
- Alle bekannten Implementierungsklassen:
UserControllerDecorator,UserControllerImpl
public interface UserController
No description
(Generated with springmvc-raml-parser v.2.0.5)
-
Methodenübersicht
Modifizierer und TypMethodeBeschreibungorg.springframework.http.ResponseEntity<?> countUsers(String missionCode) Count the users matching the specified mission.org.springframework.http.ResponseEntity<RestUser> createUser(@Valid RestUser restUser) Create a new userorg.springframework.http.ResponseEntity<?> deleteUserByName(String username) Delete a user by user nameorg.springframework.http.ResponseEntity<RestUser> getUserByName(String username) Get a user by nameGet users by mission (may be null, if root user sends request)org.springframework.http.ResponseEntity<RestUser> modifyUser(String username, RestUser restUser) Update a user by name
-
Methodendetails
-
getUsers
org.springframework.http.ResponseEntity<List<RestUser>> getUsers(String mission, Integer recordFrom, Integer recordTo) Get users by mission (may be null, if root user sends request) -
createUser
Create a new user -
countUsers
Count the users matching the specified mission. -
getUserByName
Get a user by name -
deleteUserByName
Delete a user by user name -
modifyUser
Update a user by name
-