// ***********************************************************************
  // Overriden Methods of RemoteServicesImpl class below
  // ***********************************************************************
  public void createEntry(
      SSOToken token, String entryName, int objectType, String parentDN, Map attributes)
      throws AMEntryExistsException, AMException, SSOException {

    super.createEntry(token, entryName, objectType, parentDN, attributes);
    String cacheDN =
        AMNamingAttrManager.getNamingAttr(objectType) + "=" + entryName + "," + parentDN;
    removeFromCache(cacheDN);
  }