You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tv...@apache.org on 2013/08/25 16:49:53 UTC

svn commit: r1517304 - in /commons/proper/jcs/trunk: sandbox/yajcache/README.txt src/java/org/apache/commons/jcs/admin/JCSAdmin.jsp

Author: tv
Date: Sun Aug 25 14:49:52 2013
New Revision: 1517304

URL: http://svn.apache.org/r1517304
Log:
Change package to org.apache.commons.jcs, groupId to org.apache.commons, artifactId to commons-jcs and version to 2.0-SNAPSHOT

Modified:
    commons/proper/jcs/trunk/sandbox/yajcache/README.txt
    commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/admin/JCSAdmin.jsp

Modified: commons/proper/jcs/trunk/sandbox/yajcache/README.txt
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/sandbox/yajcache/README.txt?rev=1517304&r1=1517303&r2=1517304&view=diff
==============================================================================
--- commons/proper/jcs/trunk/sandbox/yajcache/README.txt (original)
+++ commons/proper/jcs/trunk/sandbox/yajcache/README.txt Sun Aug 25 14:49:52 2013
@@ -34,7 +34,7 @@ Usage
 -----
 All caches should be retrieved or removed via
 
-    org.apache.jcs.yajcache.core.CacheManager
+    org.apache.commons.jcs.yajcache.core.CacheManager
 
 Pre-requisite
 -------------

Modified: commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/admin/JCSAdmin.jsp
URL: http://svn.apache.org/viewvc/commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/admin/JCSAdmin.jsp?rev=1517304&r1=1517303&r2=1517304&view=diff
==============================================================================
--- commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/admin/JCSAdmin.jsp (original)
+++ commons/proper/jcs/trunk/src/java/org/apache/commons/jcs/admin/JCSAdmin.jsp Sun Aug 25 14:49:52 2013
@@ -19,10 +19,10 @@
 <%@ page import="java.util.HashMap" %>
 <%@ page import="java.util.List" %>
 <%@ page import="java.util.Iterator" %>
-<%@ page import="org.apache.jcs.admin.*" %>
-<%@ page import="org.apache.jcs.*" %>
+<%@ page import="org.apache.commons.jcs.admin.*" %>
+<%@ page import="org.apache.commons.jcs.*" %>
 
-<jsp:useBean id="jcsBean" scope="request" class="org.apache.jcs.admin.JCSAdminBean" />
+<jsp:useBean id="jcsBean" scope="request" class="org.apache.commons.jcs.admin.JCSAdminBean" />
 
 <html>
 
@@ -151,7 +151,7 @@
 
 			    JCS cache = JCS.getInstance( cacheName );
 
-				org.apache.jcs.engine.behavior.ICacheElement element = cache.getCacheElement( key );
+				org.apache.commons.jcs.engine.behavior.ICacheElement element = cache.getCacheElement( key );
 %>
 <h1> Item for key [<%=key%>] in region [<%=cacheName%>] </h1>