/* (non-Javadoc)
  * @see org.apereo.portal.concurrency.IEntityCachingService#remove(java.lang.Class, java.lang.String)
  */
 public void remove(Class<? extends IBasicEntity> entityType, String key) throws CachingException {
   final IEntityCache entityCache = this.getCache(entityType);
   entityCache.remove(key);
 }