public JBossCacheIdentityStoreWrapper(
      IdentityStore identityStore, IdentityStoreCacheProvider cacheSupport, String cacheScope)
      throws IdentityException {
    super(identityStore, cacheSupport, cacheScope);

    this.identityStore = identityStore;

    log.fine("------------------------------------------------------");
    log.fine(
        "JBossCacheIdentityStoreWrapper created ....."
            + "(IdentityStore: "
            + identityStore.getId()
            + "; cache scope: "
            + cacheScope
            + ")");
    log.fine("------------------------------------------------------");
  }
 @Override
 public String toString() {
   return "JBossCacheIdentityStoreWrapper (IdentityStore=" + identityStore.getId() + ")";
 }