epugh 2003/08/23 08:26:16
Modified: security/src/java/org/apache/fulcrum/security/entity
User.java
Removed: security/src/java/org/apache/fulcrum/security/entity/impl
RoleImpl.java GroupImpl.java UserImpl.java
PermissionImpl.java
Log:
Refactored the packaging. Now there is a a model/ directory where the model lives,
and a spi/ where the various service providers live. I think this will allow better
mixing and matching of models and implementors. Also makes the names clearer.
Revision Changes Path
1.2 +3 -14
jakarta-turbine-fulcrum/security/src/java/org/apache/fulcrum/security/entity/User.java
Index: User.java
===================================================================
RCS file:
/home/cvs/jakarta-turbine-fulcrum/security/src/java/org/apache/fulcrum/security/entity/User.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- User.java 23 Aug 2003 03:56:26 -0000 1.1
+++ User.java 23 Aug 2003 15:26:16 -0000 1.2
@@ -74,13 +74,7 @@
* @return A String with the password for the user.
*/
String getPassword();
- /**
- * Returns the username for this user.
- *
- * @return A String with the username.
- */
- String getUserName();
-
+
/**
* Set password. Application should not use this method
* directly, see [EMAIL PROTECTED] #getPassword()}.
@@ -89,10 +83,5 @@
* @param password The new password.
*/
void setPassword(String password);
- /**
- * Sets the username for this user.
- *
- * @param username The user's username.
- */
- void setUserName(String username);
+
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]