auxiliary-builds/javagroups/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java [354:375]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public static final int UPDATE = 1;
        public static final int REMOVE = 2;
        public static final int REMOVE_ALL = 3;
        public static final int GET = 5;

        private ICacheElement<K, V> cacheElement;
        private int command;

        public Request( ICacheElement<K, V> cacheElement, int command )
        {
            this.cacheElement = cacheElement;
            this.command = command;
        }

        public ICacheElement<K, V> getCacheElement()
        {
            return cacheElement;
        }

        public int getCommand()
        {
            return command;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



auxiliary-builds/jdk14/src/java/org/apache/commons/jcs/auxiliary/javagroups/JavaGroupsCache.java [413:438]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public static final int UPDATE = 1;

        public static final int REMOVE = 2;

        public static final int REMOVE_ALL = 3;

        public static final int GET = 5;

        private ICacheElement<K, V> cacheElement;

        private int command;

        public Request( ICacheElement<K, V> cacheElement, int command )
        {
            this.cacheElement = cacheElement;
            this.command = command;
        }

        public ICacheElement<K, V> getCacheElement()
        {
            return cacheElement;
        }

        public int getCommand()
        {
            return command;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



