Navigation Menu

Skip to content

Commit

Permalink
Align with trunk reducing coupling with maven-user
Browse files Browse the repository at this point in the history
  • Loading branch information
carlossg committed Nov 6, 2006
1 parent a63f6aa commit dac0fdd
Show file tree
Hide file tree
Showing 16 changed files with 388 additions and 831 deletions.
Expand Up @@ -348,54 +348,99 @@ void reloadConfiguration()
// Security
// ----------------------------------------------------------------------

/**
* @deprecated use Security framework instead
*/
ContinuumSecurity getSecurity();

// ----------------------------------------------------------------------
// User
// ----------------------------------------------------------------------

/**
* @deprecated use Security framework instead
*/
void addUser( ContinuumUser user )
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
void addUser( Map configuration )
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
void updateUser( ContinuumUser user )
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
void updateUser( int userId, Map configuration )
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
List getUsers()
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
ContinuumUser getUser( int userId )
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
void removeUser( int userId )
throws ContinuumException;

// ----------------------------------------------------------------------
// User Group
// ----------------------------------------------------------------------

/**
* @deprecated use Security framework instead
*/
void addUserGroup( UserGroup userGroup );

/**
* @deprecated use Security framework instead
*/
void addUserGroup( Map configuration )
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
void updateUserGroup( UserGroup userGroup )
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
void updateUserGroup( int userGroupId, Map configuration )
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
List getUserGroups()
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
UserGroup getUserGroup( int userGroupId )
throws ContinuumException;

/**
* @deprecated use Security framework instead
*/
void removeUserGroup( int userGroupId )
throws ContinuumException;

Expand Down
Expand Up @@ -22,6 +22,8 @@
import java.util.List;

/**
* @deprecated use Security framework instead
*
* @author <a href="mailto:evenisse@apache.org">Emmanuel Venisse</a>
* @version $Id$
*/
Expand Down

0 comments on commit dac0fdd

Please sign in to comment.