Return-Path: X-Original-To: apmail-archiva-commits-archive@www.apache.org Delivered-To: apmail-archiva-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D33B6F751 for ; Sun, 5 May 2013 11:23:49 +0000 (UTC) Received: (qmail 2902 invoked by uid 500); 5 May 2013 11:23:49 -0000 Delivered-To: apmail-archiva-commits-archive@archiva.apache.org Received: (qmail 2840 invoked by uid 500); 5 May 2013 11:23:49 -0000 Mailing-List: contact commits-help@archiva.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@archiva.apache.org Delivered-To: mailing list commits@archiva.apache.org Received: (qmail 2833 invoked by uid 99); 5 May 2013 11:23:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 May 2013 11:23:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 05 May 2013 11:23:33 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 6DAC52388CB5; Sun, 5 May 2013 11:22:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1479293 [32/32] - in /archiva/site-content/redback/components/spring-cache: ./ spring-cache-api/ spring-cache-providers/ spring-cache-providers/spring-cache-ehcache/ spring-cache-providers/spring-cache-hashmap/ spring-cache-providers/sprin... Date: Sun, 05 May 2013 11:21:52 -0000 To: commits@archiva.apache.org From: olamy@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130505112207.6DAC52388CB5@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/Wine.html URL: http://svn.apache.org/viewvc/archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/Wine.html?rev=1479293&view=auto ============================================================================== --- archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/Wine.html (added) +++ archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/Wine.html Sun May 5 11:21:47 2013 @@ -0,0 +1,75 @@ + + + + +Wine xref + + + +
+
+1   package org.apache.archiva.redback.components.cache.test.examples.wine;
+2   
+3   /*
+4    * Licensed to the Apache Software Foundation (ASF) under one
+5    * or more contributor license agreements.  See the NOTICE file
+6    * distributed with this work for additional information
+7    * regarding copyright ownership.  The ASF licenses this file
+8    * to you under the Apache License, Version 2.0 (the
+9    * "License"); you may not use this file except in compliance
+10   * with the License.  You may obtain a copy of the License at
+11   *
+12   *  http://www.apache.org/licenses/LICENSE-2.0
+13   *
+14   * Unless required by applicable law or agreed to in writing,
+15   * software distributed under the License is distributed on an
+16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+17   * KIND, either express or implied.  See the License for the
+18   * specific language governing permissions and limitations
+19   * under the License.
+20   */
+21  
+22  import java.io.Serializable;
+23  
+24  /**
+25   * @since 5 February, 2007
+26   *
+27   * @author Olivier Lamy
+28   */
+29  public class Wine
+30      implements Serializable
+31  {
+32      private String name;
+33  
+34      private String localisation;
+35  
+36      public Wine( String name, String localisation )
+37      {
+38          this.name = name;
+39          this.localisation = localisation;
+40      }
+41  
+42      public String getLocalisation()
+43      {
+44          return localisation;
+45      }
+46  
+47      public void setLocalisation( String localisation )
+48      {
+49          this.localisation = localisation;
+50      }
+51  
+52      public String getName()
+53      {
+54          return name;
+55      }
+56  
+57      public void setName( String name )
+58      {
+59          this.name = name;
+60      }
+61  
+62  }
+
+
+ Added: archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/WineDao.html URL: http://svn.apache.org/viewvc/archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/WineDao.html?rev=1479293&view=auto ============================================================================== --- archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/WineDao.html (added) +++ archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/WineDao.html Sun May 5 11:21:47 2013 @@ -0,0 +1,43 @@ + + + + +WineDao xref + + + +
+
+1   package org.apache.archiva.redback.components.cache.test.examples.wine;
+2   
+3   /*
+4    * Licensed to the Apache Software Foundation (ASF) under one
+5    * or more contributor license agreements.  See the NOTICE file
+6    * distributed with this work for additional information
+7    * regarding copyright ownership.  The ASF licenses this file
+8    * to you under the Apache License, Version 2.0 (the
+9    * "License"); you may not use this file except in compliance
+10   * with the License.  You may obtain a copy of the License at
+11   *
+12   *  http://www.apache.org/licenses/LICENSE-2.0
+13   *
+14   * Unless required by applicable law or agreed to in writing,
+15   * software distributed under the License is distributed on an
+16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+17   * KIND, either express or implied.  See the License for the
+18   * specific language governing permissions and limitations
+19   * under the License.
+20   */
+21  
+22  /**
+23   * @author Olivier Lamy
+24   *
+25   * @since 5 February, 2007
+26   */
+27  public interface WineDao
+28  {
+29      Wine getWine( String name );
+30  }
+
+
+ Added: archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/WineService.html URL: http://svn.apache.org/viewvc/archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/WineService.html?rev=1479293&view=auto ============================================================================== --- archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/WineService.html (added) +++ archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/WineService.html Sun May 5 11:21:47 2013 @@ -0,0 +1,43 @@ + + + + +WineService xref + + + +
+
+1   package org.apache.archiva.redback.components.cache.test.examples.wine;
+2   
+3   /*
+4    * Licensed to the Apache Software Foundation (ASF) under one
+5    * or more contributor license agreements.  See the NOTICE file
+6    * distributed with this work for additional information
+7    * regarding copyright ownership.  The ASF licenses this file
+8    * to you under the Apache License, Version 2.0 (the
+9    * "License"); you may not use this file except in compliance
+10   * with the License.  You may obtain a copy of the License at
+11   *
+12   *  http://www.apache.org/licenses/LICENSE-2.0
+13   *
+14   * Unless required by applicable law or agreed to in writing,
+15   * software distributed under the License is distributed on an
+16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+17   * KIND, either express or implied.  See the License for the
+18   * specific language governing permissions and limitations
+19   * under the License.
+20   */
+21  
+22  /**
+23   * @author Olivier Lamy
+24   *
+25   * @since 5 February, 2007
+26   */
+27  public interface WineService
+28  {
+29      Wine getWine( String name );
+30  }
+
+
+ Added: archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/package-frame.html URL: http://svn.apache.org/viewvc/archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/package-frame.html?rev=1479293&view=auto ============================================================================== --- archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/package-frame.html (added) +++ archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/package-frame.html Sun May 5 11:21:47 2013 @@ -0,0 +1,39 @@ + + + + + + Spring Cache Component 2.1-SNAPSHOT Reference Package org.apache.archiva.redback.components.cache.test.examples.wine + + + + +

+ org.apache.archiva.redback.components.cache.test.examples.wine +

+ +

Classes

+ + + + + \ No newline at end of file Added: archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/package-summary.html URL: http://svn.apache.org/viewvc/archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/package-summary.html?rev=1479293&view=auto ============================================================================== --- archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/package-summary.html (added) +++ archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/examples/wine/package-summary.html Sun May 5 11:21:47 2013 @@ -0,0 +1,92 @@ + + + + + + Spring Cache Component 2.1-SNAPSHOT Reference Package org.apache.archiva.redback.components.cache.test.examples.wine + + + +
+ +
+
+ +
+ +

Package org.apache.archiva.redback.components.cache.test.examples.wine

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class Summary
+ AbstractTestWineService +
+ DefaultWineService +
+ MockWineDao +
+ Wine +
+ WineDao +
+ WineService +
+ +
+ +
+
+ +
+
+ Copyright © 2006-2013 The Apache Software Foundation. All Rights Reserved. + + \ No newline at end of file Added: archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/package-frame.html URL: http://svn.apache.org/viewvc/archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/package-frame.html?rev=1479293&view=auto ============================================================================== --- archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/package-frame.html (added) +++ archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/package-frame.html Sun May 5 11:21:47 2013 @@ -0,0 +1,33 @@ + + + + + + Spring Cache Component 2.1-SNAPSHOT Reference Package org.apache.archiva.redback.components.cache.test + + + + +

+ org.apache.archiva.redback.components.cache.test +

+ +

Classes

+ + + + + \ No newline at end of file Added: archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/package-summary.html URL: http://svn.apache.org/viewvc/archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/package-summary.html?rev=1479293&view=auto ============================================================================== --- archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/package-summary.html (added) +++ archiva/site-content/redback/components/spring-cache/xref/org/apache/archiva/redback/components/cache/test/package-summary.html Sun May 5 11:21:47 2013 @@ -0,0 +1,82 @@ + + + + + + Spring Cache Component 2.1-SNAPSHOT Reference Package org.apache.archiva.redback.components.cache.test + + + +
+ +
+
+ +
+ +

Package org.apache.archiva.redback.components.cache.test

+ + + + + + + + + + + + + + + + + + + + + +
Class Summary
+ AbstractCacheTestCase +
+ Digits +
+ EnglishNumberFormat +
+ NumberText +
+ +
+ +
+
+ +
+
+ Copyright © 2006-2013 The Apache Software Foundation. All Rights Reserved. + + \ No newline at end of file Added: archiva/site-content/redback/components/spring-cache/xref/overview-frame.html URL: http://svn.apache.org/viewvc/archiva/site-content/redback/components/spring-cache/xref/overview-frame.html?rev=1479293&view=auto ============================================================================== --- archiva/site-content/redback/components/spring-cache/xref/overview-frame.html (added) +++ archiva/site-content/redback/components/spring-cache/xref/overview-frame.html Sun May 5 11:21:47 2013 @@ -0,0 +1,48 @@ + + + + + + Spring Cache Component 2.1-SNAPSHOT Reference + + + + +

+ All Classes +

+ +

Packages

+ + + + + Added: archiva/site-content/redback/components/spring-cache/xref/overview-summary.html URL: http://svn.apache.org/viewvc/archiva/site-content/redback/components/spring-cache/xref/overview-summary.html?rev=1479293&view=auto ============================================================================== --- archiva/site-content/redback/components/spring-cache/xref/overview-summary.html (added) +++ archiva/site-content/redback/components/spring-cache/xref/overview-summary.html Sun May 5 11:21:47 2013 @@ -0,0 +1,104 @@ + + + + + + Spring Cache Component 2.1-SNAPSHOT Reference + + + +
+
    +
  • Overview
  • +
  • Package
  • +
+
+
+ +
+ +

Spring Cache Component 2.1-SNAPSHOT Reference

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Packages
+ org.apache.archiva.redback.components.cache +
+ org.apache.archiva.redback.components.cache.builder +
+ org.apache.archiva.redback.components.cache.ehcache +
+ org.apache.archiva.redback.components.cache.factory +
+ org.apache.archiva.redback.components.cache.hashmap +
+ org.apache.archiva.redback.components.cache.impl +
+ org.apache.archiva.redback.components.cache.oscache +
+ org.apache.archiva.redback.components.cache.test +
+ org.apache.archiva.redback.components.cache.test.examples.wine +
+ +
+
    +
  • Overview
  • +
  • Package
  • +
+
+
+ +
+ +
+ Copyright © 2006-2013 The Apache Software Foundation. All Rights Reserved. + + \ No newline at end of file Added: archiva/site-content/redback/components/spring-cache/xref/stylesheet.css URL: http://svn.apache.org/viewvc/archiva/site-content/redback/components/spring-cache/xref/stylesheet.css?rev=1479293&view=auto ============================================================================== --- archiva/site-content/redback/components/spring-cache/xref/stylesheet.css (added) +++ archiva/site-content/redback/components/spring-cache/xref/stylesheet.css Sun May 5 11:21:47 2013 @@ -0,0 +1,116 @@ +/* Javadoc style sheet */ +/* Define colors, fonts and other style attributes here to override the defaults */ +body { + background-color: #fff; + font-family: Arial, Helvetica, sans-serif; +} + +a:link { + color: #00f; +} +a:visited { + color: #00a; +} + +a:active, a:hover { + color: #f30 !important; +} + +ul, li { + list-style-type:none; + margin:0; + padding:0; +} + +table td { + padding: 3px; + border: 1px solid #000; +} +table { + width:100%; + border: 1px solid #000; + border-collapse: collapse; +} + +div.overview { + background-color:#ddd; + padding: 4px 4px 4px 0; +} +div.overview li, div.framenoframe li { + display: inline; +} +div.framenoframe { + text-align: center; + font-size: x-small; +} +div.framenoframe li { + margin: 0 3px 0 3px; +} +div.overview li { + margin:3px 3px 0 3px; + padding: 4px; +} +li.selected { + background-color:#888; + color: #fff; + font-weight: bold; +} + +table.summary { + margin-bottom: 20px; +} +table.summary td, table.summary th { + font-weight: bold; + text-align: left; + padding: 3px; +} +table.summary th { + background-color:#036; + color: #fff; +} +table.summary td { + background-color:#eee; + border: 1px solid black; +} + +em { + color: #A00; +} +em.comment { + color: #390; +} +.string { + color: #009; +} +div#footer { + text-align:center; +} +#overview { + padding:2px; +} + +hr { + height: 1px; + color: #000; +} + +/* JXR style sheet */ +.jxr_comment +{ + color: #390; +} + +.jxr_javadoccomment +{ + color: #A00; +} + +.jxr_string +{ + color: #009; +} + +.jxr_keyword +{ + color: #000; +} \ No newline at end of file