You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by lh...@apache.org on 2010/01/21 16:10:26 UTC

svn commit: r901733 - in /incubator/shiro/trunk: ./ core/src/main/java/org/apache/shiro/session/mgt/ src/docbkx/resources/xsl/ support/spring/src/test/java/org/apache/shiro/spring/remoting/

Author: lhazlewood
Date: Thu Jan 21 15:10:26 2010
New Revision: 901733

URL: http://svn.apache.org/viewvc?rev=901733&view=rev
Log:
Updated copyright dates to reflect 2010

Modified:
    incubator/shiro/trunk/NOTICE.txt
    incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/mgt/LocalSessionManager.java
    incubator/shiro/trunk/src/docbkx/resources/xsl/fopdf.xsl
    incubator/shiro/trunk/support/spring/src/test/java/org/apache/shiro/spring/remoting/SecureRemoteInvocationFactoryTest.java

Modified: incubator/shiro/trunk/NOTICE.txt
URL: http://svn.apache.org/viewvc/incubator/shiro/trunk/NOTICE.txt?rev=901733&r1=901732&r2=901733&view=diff
==============================================================================
--- incubator/shiro/trunk/NOTICE.txt (original)
+++ incubator/shiro/trunk/NOTICE.txt Thu Jan 21 15:10:26 2010
@@ -1,5 +1,5 @@
 Apache Shiro
-Copyright 2008-2009 The Apache Software Foundation
+Copyright 2008-2010 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).

Modified: incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/mgt/LocalSessionManager.java
URL: http://svn.apache.org/viewvc/incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/mgt/LocalSessionManager.java?rev=901733&r1=901732&r2=901733&view=diff
==============================================================================
--- incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/mgt/LocalSessionManager.java (original)
+++ incubator/shiro/trunk/core/src/main/java/org/apache/shiro/session/mgt/LocalSessionManager.java Thu Jan 21 15:10:26 2010
@@ -25,7 +25,6 @@
  * in remoting scenarios.
  *
  * @author Les Hazlewood
- * @since Mar 26, 2009 2:34:44 PM
  */
 public interface LocalSessionManager extends SessionManager {
 

Modified: incubator/shiro/trunk/src/docbkx/resources/xsl/fopdf.xsl
URL: http://svn.apache.org/viewvc/incubator/shiro/trunk/src/docbkx/resources/xsl/fopdf.xsl?rev=901733&r1=901732&r2=901733&view=diff
==============================================================================
--- incubator/shiro/trunk/src/docbkx/resources/xsl/fopdf.xsl (original)
+++ incubator/shiro/trunk/src/docbkx/resources/xsl/fopdf.xsl Thu Jan 21 15:10:26 2010
@@ -68,7 +68,7 @@
                     <fo:table-row>
                         <fo:table-cell text-align="center">
                             <fo:block font-family="Helvetica" font-size="12pt" padding="10mm">
-                                <xsl:text>Copyright &#xA9; 2008-2009 Apache Software Foundation, </xsl:text>
+                                <xsl:text>Copyright &#xA9; 2008-2010 Apache Software Foundation, </xsl:text>
                                 <xsl:for-each select="bookinfo/authorgroup/author">
                                     <xsl:if test="position() > 1">
                                         <xsl:text>, </xsl:text>

Modified: incubator/shiro/trunk/support/spring/src/test/java/org/apache/shiro/spring/remoting/SecureRemoteInvocationFactoryTest.java
URL: http://svn.apache.org/viewvc/incubator/shiro/trunk/support/spring/src/test/java/org/apache/shiro/spring/remoting/SecureRemoteInvocationFactoryTest.java?rev=901733&r1=901732&r2=901733&view=diff
==============================================================================
--- incubator/shiro/trunk/support/spring/src/test/java/org/apache/shiro/spring/remoting/SecureRemoteInvocationFactoryTest.java (original)
+++ incubator/shiro/trunk/support/spring/src/test/java/org/apache/shiro/spring/remoting/SecureRemoteInvocationFactoryTest.java Thu Jan 21 15:10:26 2010
@@ -4,10 +4,7 @@
 import org.apache.shiro.session.mgt.SessionManager;
 import org.apache.shiro.subject.Subject;
 import org.apache.shiro.util.ThreadContext;
-import static org.easymock.EasyMock.*;
 import org.junit.After;
-import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNull;
 import org.junit.Before;
 import org.junit.Test;
 import org.springframework.remoting.support.RemoteInvocation;
@@ -15,11 +12,14 @@
 import java.lang.reflect.Method;
 import java.util.UUID;
 
+import static org.easymock.EasyMock.*;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNull;
+
 /**
  * //TODO - Class JavaDoc!
  *
  * @author Les Hazlewood
- * @since Mar 28, 2009 4:14:01 PM
  */
 public class SecureRemoteInvocationFactoryTest {