
com.stormpath.sdk.servlet.config.CookieProperties 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.config;
/**
* @since 1.0.0
*/
public interface CookieProperties {
String getCookieName();
String getCookieComment();
String getCookieDomain();
int getCookieMaxAge();
String getCookiePath();
boolean isCookieHttpOnly();
boolean isCookieSecure();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy