
com.stormpath.sdk.servlet.idsite.DefaultIdSiteOrganizationContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stormpath-sdk-servlet Show documentation
Show all versions of stormpath-sdk-servlet Show documentation
Servlet-specific additions allowing one to more easily deploy the Stormpath SDK in a servlet-container-based
web application.
The newest version!
package com.stormpath.sdk.servlet.idsite;
/**
* @since 1.0.RC5
*/
public class DefaultIdSiteOrganizationContext implements IdSiteOrganizationContext {
private final String organizationNameKey;
private final Boolean useSubdomain;
private final Boolean showOrganizationField;
public DefaultIdSiteOrganizationContext(String organizationNameKey, Boolean useSubdomain, Boolean showOrganizationField) {
this.organizationNameKey = organizationNameKey;
this.useSubdomain = useSubdomain;
this.showOrganizationField = showOrganizationField;
}
@Override
public String getOrganizationNameKey() {
return organizationNameKey;
}
@Override
public Boolean isUseSubdomain() {
return useSubdomain;
}
@Override
public Boolean isShowOrganizationField() {
return showOrganizationField;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy