Clover coverage report -
Coverage timestamp: Thu Jul 5 2007 20:02:32 EDT
file stats: LOC: 32   Methods: 0
NCLOC: 17   Classes: 1
 
 Source file Conditionals Statements Methods TOTAL
InternalConstant.java - - - -
coverage
 1    /*
 2    * JBoss, Home of Professional Open Source
 3    *
 4    * Distributable under LGPL license.
 5    * See terms of license at gnu.org.
 6    */
 7   
 8    package org.jboss.cache.pojo.impl;
 9   
 10    import org.jboss.cache.Fqn;
 11   
 12    /**
 13    * Internal helper class to handle internal cache sotre, that is, the portion that is not part of
 14    * user's data.
 15    *
 16    * @author Ben Wang
 17    */
 18    public class InternalConstant
 19    {
 20    public static final String CLASS_INTERNAL = "__jboss:internal:class__";
 21    public static final String SERIALIZED = "__SERIALIZED__";
 22    public static final String JBOSS_INTERNAL_STRING = "__JBossInternal__";
 23    public static final String JBOSS_INTERNAL_ID_SEP_STRING = "_ID_";
 24    public static final Fqn JBOSS_INTERNAL = new Fqn(JBOSS_INTERNAL_STRING);
 25    public static final Fqn JBOSS_INTERNAL_ID_SEP = new Fqn(JBOSS_INTERNAL_ID_SEP_STRING);
 26    public static final Fqn JBOSS_INTERNAL_MAP = new Fqn(InternalConstant.JBOSS_INTERNAL, "__RefMap__");
 27    public static final String JBOSS_INTERNAL_STATIC = "__jboss:static__";
 28    public static final String ENUM_KEY = "name";
 29    public static final String POJOCACHE_KEY_PREFIX = "POJOCache.";
 30    public static final String POJOCACHE_STATUS = POJOCACHE_KEY_PREFIX + "Status";
 31    public static final String POJOCACHE_OPERATION = POJOCACHE_KEY_PREFIX + "Operation";
 32    }