1/*2 * Copyright 2000-2001,2004 The Apache Software Foundation.3 * 4 * Licensed under the Apache License, Version 2.0 (the "License");5 * you may not use this file except in compliance with the License.6 * You may obtain a copy of the License at7 * 8 * http://www.apache.org/licenses/LICENSE-2.09 * 10 * Unless required by applicable law or agreed to in writing, software11 * distributed under the License is distributed on an "AS IS" BASIS,12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.13 * See the License for the specific language governing permissions and14 * limitations under the License.15 */1617packageorg.apache.jetspeed.om.security;
181920/***21 * A Principal based on the user id.22 *23 * @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>24 * @version $Id: UserIdPrincipal.java,v 1.3 2004/02/23 03:14:12 jford Exp $25 */26publicclassUserIdPrincipal implements java.security.Principal
27 {
28privatefinal String userId;
2930publicUserIdPrincipal(String userId)
31 {
32this.userId = userId;
33 }
3435/***36 * Compares this principal to the specified object. Returns true37 * if the object passed in matches the principal represented by38 * the implementation of this interface.39 *40 * @param another principal to compare with.41 *42 * @return true if the principal passed in is the same as that43 * encapsulated by this principal, and false otherwise.4445 */46publicboolean equals(Object another)
47 {
48if (!(another instanceof UserIdPrincipal))
49return false;
50UserIdPrincipal principal = (UserIdPrincipal)another;
51returnthis.getName().equals(principal.getName());
52 }
5354/***55 * Returns a string representation of this principal.56 *57 * @return a string representation of this principal.58 */59public String toString()
60 {
61returnthis.userId;
62 }
636465/***66 * Returns the name of this principal.67 *68 * @return the name of this principal.69 */70public String getName()
71 {
72returnthis.userId;
73 }
7475 }
7677