[infinispan-commits] Infinispan SVN: r1587 - trunk/server/memcached/src/main/java/org/infinispan/server/memcached.

infinispan-commits at lists.jboss.org infinispan-commits at lists.jboss.org
Wed Mar 10 11:47:29 EST 2010


Author: galder.zamarreno at jboss.com
Date: 2010-03-10 11:47:28 -0500 (Wed, 10 Mar 2010)
New Revision: 1587

Modified:
   trunk/server/memcached/src/main/java/org/infinispan/server/memcached/Command.java
   trunk/server/memcached/src/main/java/org/infinispan/server/memcached/CommandFactory.java
   trunk/server/memcached/src/main/java/org/infinispan/server/memcached/CommandInterceptor.java
   trunk/server/memcached/src/main/java/org/infinispan/server/memcached/InterceptorChain.java
   trunk/server/memcached/src/main/java/org/infinispan/server/memcached/InterceptorChainFactory.java
Log:
Update copyright and @since tag.

Modified: trunk/server/memcached/src/main/java/org/infinispan/server/memcached/Command.java
===================================================================
--- trunk/server/memcached/src/main/java/org/infinispan/server/memcached/Command.java	2010-03-10 14:01:23 UTC (rev 1586)
+++ trunk/server/memcached/src/main/java/org/infinispan/server/memcached/Command.java	2010-03-10 16:47:28 UTC (rev 1587)
@@ -1,6 +1,6 @@
 /*
  * JBoss, Home of Professional Open Source.
- * Copyright 2009, Red Hat, Inc. and/or its affiliates, and
+ * Copyright 2010, Red Hat, Inc. and/or its affiliates, and
  * individual contributors as indicated by the @author tags. See the
  * copyright.txt file in the distribution for a full listing of
  * individual contributors.
@@ -28,7 +28,7 @@
  * Command.
  * 
  * @author Galder Zamarreño
- * @since 4.0
+ * @since 4.1
  */
 public interface Command {
 

Modified: trunk/server/memcached/src/main/java/org/infinispan/server/memcached/CommandFactory.java
===================================================================
--- trunk/server/memcached/src/main/java/org/infinispan/server/memcached/CommandFactory.java	2010-03-10 14:01:23 UTC (rev 1586)
+++ trunk/server/memcached/src/main/java/org/infinispan/server/memcached/CommandFactory.java	2010-03-10 16:47:28 UTC (rev 1587)
@@ -1,6 +1,6 @@
 /*
  * JBoss, Home of Professional Open Source.
- * Copyright 2009, Red Hat, Inc. and/or its affiliates, and
+ * Copyright 2010, Red Hat, Inc. and/or its affiliates, and
  * individual contributors as indicated by the @author tags. See the
  * copyright.txt file in the distribution for a full listing of
  * individual contributors.
@@ -28,7 +28,7 @@
  * TODO: This only deals with text based protocols, needs further thought. Will be looked into when implementing Hot Rod
  * 
  * @author Galder Zamarreño
- * @since 4.0
+ * @since 4.1
  */
 public interface CommandFactory {
    Command createCommand(String line) throws IOException;

Modified: trunk/server/memcached/src/main/java/org/infinispan/server/memcached/CommandInterceptor.java
===================================================================
--- trunk/server/memcached/src/main/java/org/infinispan/server/memcached/CommandInterceptor.java	2010-03-10 14:01:23 UTC (rev 1586)
+++ trunk/server/memcached/src/main/java/org/infinispan/server/memcached/CommandInterceptor.java	2010-03-10 16:47:28 UTC (rev 1587)
@@ -1,6 +1,6 @@
 /*
  * JBoss, Home of Professional Open Source.
- * Copyright 2009, Red Hat, Inc. and/or its affiliates, and
+ * Copyright 2010, Red Hat, Inc. and/or its affiliates, and
  * individual contributors as indicated by the @author tags. See the
  * copyright.txt file in the distribution for a full listing of
  * individual contributors.
@@ -26,7 +26,7 @@
  * CommandInterceptor.
  * 
  * @author Galder Zamarreño
- * @since 4.0
+ * @since 4.1
  */
 public interface CommandInterceptor {
    CommandInterceptor getNext();

Modified: trunk/server/memcached/src/main/java/org/infinispan/server/memcached/InterceptorChain.java
===================================================================
--- trunk/server/memcached/src/main/java/org/infinispan/server/memcached/InterceptorChain.java	2010-03-10 14:01:23 UTC (rev 1586)
+++ trunk/server/memcached/src/main/java/org/infinispan/server/memcached/InterceptorChain.java	2010-03-10 16:47:28 UTC (rev 1587)
@@ -1,6 +1,6 @@
 /*
  * JBoss, Home of Professional Open Source.
- * Copyright 2009, Red Hat, Inc. and/or its affiliates, and
+ * Copyright 2010, Red Hat, Inc. and/or its affiliates, and
  * individual contributors as indicated by the @author tags. See the
  * copyright.txt file in the distribution for a full listing of
  * individual contributors.
@@ -30,7 +30,7 @@
  * InterceptorChain.
  * 
  * @author Galder Zamarreño
- * @since 4.0
+ * @since 4.1
  */
 public interface InterceptorChain {
    Object invoke(ChannelHandlerContext ctx, Command command) throws Throwable;

Modified: trunk/server/memcached/src/main/java/org/infinispan/server/memcached/InterceptorChainFactory.java
===================================================================
--- trunk/server/memcached/src/main/java/org/infinispan/server/memcached/InterceptorChainFactory.java	2010-03-10 14:01:23 UTC (rev 1586)
+++ trunk/server/memcached/src/main/java/org/infinispan/server/memcached/InterceptorChainFactory.java	2010-03-10 16:47:28 UTC (rev 1587)
@@ -1,6 +1,6 @@
 /*
  * JBoss, Home of Professional Open Source.
- * Copyright 2009, Red Hat, Inc. and/or its affiliates, and
+ * Copyright 2010, Red Hat, Inc. and/or its affiliates, and
  * individual contributors as indicated by the @author tags. See the
  * copyright.txt file in the distribution for a full listing of
  * individual contributors.
@@ -26,7 +26,7 @@
  * InterceptorChainFactory.
  * 
  * @author Galder Zamarreño
- * @since 4.0
+ * @since 4.1
  */
 public interface InterceptorChainFactory {
    InterceptorChain buildInterceptorChain();



More information about the infinispan-commits mailing list