Projet

Général

Profil

« Précédent | Suivant » 

Révision 675e977d

Ajouté par Remy Menard il y a presque 11 ans

  • ID 675e977d6baa946d508d77b8721408cbe9155a8e
  • Parent 8fd1d584

Version 2.1

  • All:
    - a few bugs fixed!
  • DELTa:
    - uses the new DS events
  • EpcisPHI, DiscoveryPHI:
    - improves the session management
    - the account creation by the web interface adds access policies to
    the interface ("admin" policies), this is always done even if a
    corresponding account exists in the LDAP directory
  • YPSilon:
    - simplifies the service
  • Installer:
    - upgrades Apache Tomcat to 7.0.42

Voir les différences:

YPSilon/YPSilon/src/main/java/fr/unicaen/iota/ypsilon/constants/Constants.java
public final class Constants {
private static final Log log = LogFactory.getLog(Constants.class);
public static final String PROP_SESSION_TIME_LEASE = "session-time-lease";
public static final String PROP_XACML_URL = "xacml-url";
public static final String PROP_LDAP_URL = "ldap-url";
public static final String PROP_LDAP_BASE_DN = "ldap-basedn";
public static final String PROP_LDAP_USER = "ldap-user";
public static final String PROP_LDAP_PASSWORD = "ldap-password";
public static final int SESSION_TIME_LEASE;
public static final String XACML_URL;
public static final String LDAP_URL;
public static final String LDAP_BASE_DN;
public static final String LDAP_USER;
......
public static final String LDAP_USER_ID;
public static final String LDAP_ATTRIBUTE_ALIAS;
public static final String LDAP_ATTRIBUTE_OWNER;
public static final String PKS_FILENAME;
public static final String PKS_PASSWORD;
public static final String TRUST_PKS_FILENAME;
public static final String TRUST_PKS_PASSWORD;
private Constants() {
}
......
} catch (IOException ex) {
log.fatal(null, ex);
}
SESSION_TIME_LEASE = Integer.parseInt(properties.getProperty(PROP_SESSION_TIME_LEASE));
XACML_URL = properties.getProperty(PROP_XACML_URL);
LDAP_URL = properties.getProperty(PROP_LDAP_URL);
LDAP_BASE_DN = properties.getProperty(PROP_LDAP_BASE_DN);
LDAP_USER = properties.getProperty(PROP_LDAP_USER);
......
LDAP_USER_ID = properties.getProperty("ldap-user-id");
LDAP_ATTRIBUTE_ALIAS = properties.getProperty("ldap-attribute-alias", "aliasdn");
LDAP_ATTRIBUTE_OWNER = properties.getProperty("ldap-attribute-owner", "owner");
PKS_FILENAME = properties.getProperty("pks-filename", "privatekeys.jks");
PKS_PASSWORD = properties.getProperty("pks-password", "changeit");
TRUST_PKS_FILENAME = properties.getProperty("trust-pks-filename", "publickeys.jks");
TRUST_PKS_PASSWORD = properties.getProperty("trust-pks-password", "changeit");
}
}

Formats disponibles : Unified diff