Salome HOME
Modifications done to respect PMD rules. Versioning a document is fixed. Validation...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / service / UserService.java
index b170020041d3d56d68be8597a4a697f18f936b1a..168a6ce144f80d972bd67469567b2aa785088521 100644 (file)
@@ -28,11 +28,11 @@ import org.splat.manox.XMLException;
  */
 public interface UserService {
 
-       public User createUser(User.Properties uprop)
+       User createUser(User.Properties uprop)
                        throws MissedPropertyException, InvalidPropertyException,
                        MultiplyDefinedException;
 
-       public Set<User> importUsers(File xfile) throws XMLException,
+       Set<User> importUsers(File xfile) throws XMLException,
                        MismatchException;
 
        /**
@@ -48,15 +48,15 @@ public interface UserService {
         *            the user whose manager is get
         * @return the manager of the given user, if defined
         */
-       public User getManagerOf(User user);
+       User getManagerOf(User user);
 
-       public List<User> selectAllUsers();
+       List<User> selectAllUsers();
 
-       public User selectUser(String username);
+       User selectUser(String username);
 
-       public User selectUser(String username, String password);
+       User selectUser(String username, String password);
 
-       public User selectUser(long index);
+       User selectUser(long index);
 
-       public List<User> selectUsersWhere(User.Properties... uprop);
+       List<User> selectUsersWhere(User.Properties... uprop);
 }