git-svn-id: https://subversion.switch.ch/svn/shibboleth/java-idp/trunk@1509
ab3bd59b-922f-494d-bb5f-
6f0a3c29deca
query =
new SAMLAttributeQuery(
subject, // Subject (i.e. Handle) from authentication
- entity.getId(), // ID of user's Entity (i.e. IdP)
+ appinfo.getProviderId(), // SP Entity name
attributeDesignators // Attributes to request, null for everything
);
}
return false;
}
+
+ public String getProviderId() {
+ String entityId = this.applicationConfig.getProviderId();
+ if (entityId==null && this!=defaultApplicationInfo) {
+ entityId = defaultApplicationInfo.getProviderId();
+ }
+ return entityId;
+ }
}