[jboss-cvs] JBossAS SVN: r83316 - projects/security/security-jboss-sx/trunk/jbosssx/src/main/java/org/jboss/security.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jan 22 14:04:45 EST 2009


Author: sguilhen at redhat.com
Date: 2009-01-22 14:04:44 -0500 (Thu, 22 Jan 2009)
New Revision: 83316

Modified:
   projects/security/security-jboss-sx/trunk/jbosssx/src/main/java/org/jboss/security/SimplePrincipal.java
Log:
SECURITY-341: removed default serial version uid that was breaking compatibility with external tools such as JBoss Tools 


Modified: projects/security/security-jboss-sx/trunk/jbosssx/src/main/java/org/jboss/security/SimplePrincipal.java
===================================================================
--- projects/security/security-jboss-sx/trunk/jbosssx/src/main/java/org/jboss/security/SimplePrincipal.java	2009-01-22 18:40:32 UTC (rev 83315)
+++ projects/security/security-jboss-sx/trunk/jbosssx/src/main/java/org/jboss/security/SimplePrincipal.java	2009-01-22 19:04:44 UTC (rev 83316)
@@ -1,73 +1,78 @@
 /*
-* JBoss, Home of Professional Open Source
-* Copyright 2005, JBoss Inc., and individual contributors as indicated
-* by the @authors tag. See the copyright.txt in the distribution for a
-* full listing of individual contributors.
-*
-* This is free software; you can redistribute it and/or modify it
-* under the terms of the GNU Lesser General Public License as
-* published by the Free Software Foundation; either version 2.1 of
-* the License, or (at your option) any later version.
-*
-* This software is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-* Lesser General Public License for more details.
-*
-* You should have received a copy of the GNU Lesser General Public
-* License along with this software; if not, write to the Free
-* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
-* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
-*/
+ * JBoss, Home of Professional Open Source
+ * Copyright 2005, JBoss Inc., and individual contributors as indicated
+ * by the @authors tag. See the copyright.txt in the distribution for a
+ * full listing of individual contributors.
+ *
+ * This is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation; either version 2.1 of
+ * the License, or (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this software; if not, write to the Free
+ * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+ */
 package org.jboss.security;
 
+import java.io.Serializable;
 import java.security.Principal;
 
-/** A simple String based implementation of Principal. Typically
-a SimplePrincipal is created given a userID which is used
-as the Principal name.
+/**
+ * A simple String based implementation of Principal. Typically a SimplePrincipal is created given a userID which is
+ * used as the Principal name.
+ * 
+ * @author <a href="on at ibis.odessa.ua">Oleg Nitz</a>
+ * @author Scott.Stark at jboss.org
+ */
+public class SimplePrincipal implements Principal, Serializable
+{
+   private final String name;
 
- at author <a href="on at ibis.odessa.ua">Oleg Nitz</a>
- at author Scott.Stark at jboss.org
-*/
-public class SimplePrincipal implements Principal, java.io.Serializable
-{ 
-   private static final long serialVersionUID = 1L;
-   private String name;
+   public SimplePrincipal(String name)
+   {
+      this.name = name;
+   }
 
-  public SimplePrincipal(String name)
-  {
-    this.name = name;
-  }
+   /**
+    * Compare this SimplePrincipal's name against another Principal
+    * 
+    * @return true if name equals another.getName();
+    */
+   @Override
+   public boolean equals(Object another)
+   {
+      if (!(another instanceof Principal))
+         return false;
+      String anotherName = ((Principal) another).getName();
+      boolean equals = false;
+      if (name == null)
+         equals = anotherName == null;
+      else
+         equals = name.equals(anotherName);
+      return equals;
+   }
 
-  /** Compare this SimplePrincipal's name against another Principal
-  @return true if name equals another.getName();
-   */
-  public boolean equals(Object another)
-  {
-    if( !(another instanceof Principal) )
-      return false;
-    String anotherName = ((Principal)another).getName();
-    boolean equals = false;
-    if( name == null )
-      equals = anotherName == null;
-    else
-      equals = name.equals(anotherName);
-    return equals;
-  }
+   @Override
+   public int hashCode()
+   {
+      return (name == null ? 0 : name.hashCode());
+   }
 
-  public int hashCode()
-  {
-    return (name == null ? 0 : name.hashCode());
-  }
+   @Override
+   public String toString()
+   {
+      return name;
+   }
 
-  public String toString()
-  {
-    return name;
-  }
-
-  public String getName()
-  {
-    return name;
-  }
-} 
\ No newline at end of file
+   public String getName()
+   {
+      return name;
+   }
+}
\ No newline at end of file




More information about the jboss-cvs-commits mailing list