You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jcs-dev@jakarta.apache.org by as...@apache.org on 2004/07/10 05:47:16 UTC

cvs commit: jakarta-turbine-jcs/src/java/org/apache/jcs/auxiliary/disk/bdbje/behavior IBDBJECacheAttributes.java

asmuts      2004/07/09 20:47:16

  Added:       src/java/org/apache/jcs/auxiliary/disk/bdbje/behavior
                        IBDBJECacheAttributes.java
  Log:
  Initial commit of an interface for the BDBJE attributes
  
  Revision  Changes    Path
  1.1                  jakarta-turbine-jcs/src/java/org/apache/jcs/auxiliary/disk/bdbje/behavior/IBDBJECacheAttributes.java
  
  Index: IBDBJECacheAttributes.java
  ===================================================================
  package org.apache.jcs.auxiliary.disk.bdbje.behavior;
  
  /*
   * Copyright 2001-2004 The Apache Software Foundation.
   *
   * Licensed under the Apache License, Version 2.0 (the "License")
   * you may not use this file except in compliance with the License.
   * You may obtain a copy of the License at
   *
   *     http://www.apache.org/licenses/LICENSE-2.0
   *
   * Unless required by applicable law or agreed to in writing, software
   * distributed under the License is distributed on an "AS IS" BASIS,
   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   * See the License for the specific language governing permissions and
   * limitations under the License.
   */
  
  
  import org.apache.jcs.auxiliary.AuxiliaryCacheAttributes;
  
  public interface IBDBJECacheAttributes
  {
    public String getCacheName();
  
    public int getCachePercent();
  
    public long getCacheSize();
  
    public String getDiskPath();
  
    public String getName();
  
    public void setCacheName(String s);
  
    public void setCachePercent(int perc);
  
    public void setCacheSize(long size);
  
    public void setDiskPath(String path);
  
    public void setName(String s);
  }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: turbine-jcs-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: turbine-jcs-dev-help@jakarta.apache.org