mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
23 lines
533 B
Java
Generated
23 lines
533 B
Java
Generated
// Generated automatically from javax.servlet.SessionCookieConfig for testing purposes
|
|
|
|
package javax.servlet;
|
|
|
|
|
|
public interface SessionCookieConfig
|
|
{
|
|
String getComment();
|
|
String getDomain();
|
|
String getName();
|
|
String getPath();
|
|
boolean isHttpOnly();
|
|
boolean isSecure();
|
|
int getMaxAge();
|
|
void setComment(String p0);
|
|
void setDomain(String p0);
|
|
void setHttpOnly(boolean p0);
|
|
void setMaxAge(int p0);
|
|
void setName(String p0);
|
|
void setPath(String p0);
|
|
void setSecure(boolean p0);
|
|
}
|