comparison src/org/dancres/blitz/config/CacheSize.java @ 0:3dc0c5604566

Initial checkin of blitz 2.0 fcs - no installer yet.
author Dan Creswell <dan.creswell@gmail.com>
date Sat, 21 Mar 2009 11:00:06 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:3dc0c5604566
1 package org.dancres.blitz.config;
2
3 /**
4 <p>Use this constraint to specify a per-type Entry cache size which will
5 override the global default specified in <code>entryReposCacheSize</code>
6 </p>
7 */
8 public class CacheSize implements EntryConstraint {
9 private int theSize;
10
11 public CacheSize(int aSize) {
12 theSize = aSize;
13 }
14
15 public int getSize() {
16 return theSize;
17 }
18 }