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 Typ
    Methode
    Beschreibung
    org.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 user
    org.springframework.http.ResponseEntity<?>
    Delete a user by user name
    org.springframework.http.ResponseEntity<RestUser>
    Get a user by name
    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)
    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

      org.springframework.http.ResponseEntity<RestUser> createUser(@Valid @Valid RestUser restUser)
      Create a new user
    • countUsers

      org.springframework.http.ResponseEntity<?> countUsers(String missionCode)
      Count the users matching the specified mission.
    • getUserByName

      org.springframework.http.ResponseEntity<RestUser> getUserByName(String username)
      Get a user by name
    • deleteUserByName

      org.springframework.http.ResponseEntity<?> deleteUserByName(String username)
      Delete a user by user name
    • modifyUser

      org.springframework.http.ResponseEntity<RestUser> modifyUser(String username, RestUser restUser)
      Update a user by name