Package com.logicaldoc.webservice.soap
Interface SecurityService
-
- All Known Implementing Classes:
SoapSecurityClient
,SoapSecurityService
public interface SecurityService
Security Web Service definition interface- Since:
- 6.1
- Author:
- Matteo Caruso - LogicalDOC
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
changePassword(String sid, long userId, String oldPassword, String newPassword)
changes the password of a user.
0 if all is ok, 1 if the password is incorrect, 2 if the new password cannot be notified, otherwise a positive number grater than 2void
deleteGroup(String sid, long groupId)
Deletes an existing group with the given identifiervoid
deleteUser(String sid, long userId)
Deletes an existing user with the given identifierWSGroup
getGroup(String sid, long groupId)
Gets group metadata of an existing group with the given identifierWSUser
getUser(String sid, long userId)
Gets user metadata of an existing user with the given identifierWSUser
getUserByUsername(String sid, String username)
Gets user metadata of an existing user with the given usernameWSGroup[]
listGroups(String sid)
Gets group metadata of all existing groups.WSUser[]
listUsers(String sid, String group)
Gets metadata of all existing userslong
storeGroup(String sid, WSGroup group)
Creates/Updates a group.long
storeUser(String sid, WSUser user)
Creates/Updates a user.
-
-
-
Method Detail
-
listUsers
WSUser[] listUsers(String sid, String group) throws Exception
Gets metadata of all existing users- Parameters:
sid
- identifier of the session, must be an administratorgroup
- name od the group- Returns:
- A value object containing the users metadata
- Throws:
Exception
- error in the server application
-
listGroups
WSGroup[] listGroups(String sid) throws Exception
Gets group metadata of all existing groups.- Parameters:
sid
- identifier of the session, must be an administrator- Returns:
- A value object containing the groups metadata
- Throws:
Exception
- error in the server application
-
storeUser
long storeUser(String sid, WSUser user) throws Exception
Creates/Updates a user. You can completely customize the user through a value object containing the user's metadata. The current user must be an administrator- Parameters:
sid
- identifier of the session, must be an administratoruser
- Web service value object containing the user's metadata- Returns:
- id of the created/updated user
- Throws:
Exception
- error in the server application
-
storeGroup
long storeGroup(String sid, WSGroup group) throws Exception
Creates/Updates a group. You can completely customize the group through a value object containing the group's metadata.- Parameters:
sid
- Session identifier. Must be an administrator.group
- Web service value object containing the group's metadata- Returns:
- id of the created/updated group.
- Throws:
Exception
- error in the server application
-
deleteUser
void deleteUser(String sid, long userId) throws Exception
Deletes an existing user with the given identifier- Parameters:
sid
- Session identifier. Must be an administratoruserId
- The user id- Throws:
Exception
- error in the server application
-
deleteGroup
void deleteGroup(String sid, long groupId) throws Exception
Deletes an existing group with the given identifier- Parameters:
sid
- Session identifier. Must be an administratorgroupId
- The group id- Throws:
Exception
- error in the server application
-
changePassword
int changePassword(String sid, long userId, String oldPassword, String newPassword) throws Exception
changes the password of a user.
0 if all is ok, 1 if the password is incorrect, 2 if the new password cannot be notified, otherwise a positive number grater than 2- Parameters:
sid
- identifier of the sessionuserId
- The user Identifier. Must be an administrator.oldPassword
- can be nullnewPassword
- the new password- Returns:
- 0 if all is ok, 1 if the password is incorrect, 2 if the new password cannot be notified, otherwise a positive number grater than 2
- Throws:
Exception
- error in the server application
-
getUser
WSUser getUser(String sid, long userId) throws Exception
Gets user metadata of an existing user with the given identifier- Parameters:
sid
- Session identifieruserId
- The user id- Returns:
- A value object containing the user's metadata
- Throws:
Exception
- error in the server application
-
getUserByUsername
WSUser getUserByUsername(String sid, String username) throws Exception
Gets user metadata of an existing user with the given username- Parameters:
sid
- Session identifierusername
- The user name- Returns:
- A value object containing the user's metadata
- Throws:
Exception
- error in the server application
-
getGroup
WSGroup getGroup(String sid, long groupId) throws Exception
Gets group metadata of an existing group with the given identifier- Parameters:
sid
- Session identifiergroupId
- The group id- Returns:
- A value object containing the group's metadata
- Throws:
Exception
- error in the server application
-
-