io.undertow.server.handlers.CookieImpl Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote Jakarta Enterprise Beans and Jakarta Messaging, including
all dependencies. It is intended for use by those not using maven, maven users should just import the Jakarta Enterprise Beans and
Jakarta Messaging BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
/*
* JBoss, Home of Professional Open Source.
* Copyright 2014 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.undertow.server.handlers;
import java.util.Date;
import java.util.Locale;
import io.undertow.UndertowMessages;
/**
* @author Stuart Douglas
*/
public class CookieImpl implements Cookie {
private final String name;
private String value;
private String path;
private String domain;
private Integer maxAge;
private Date expires;
private boolean discard;
private boolean secure;
private boolean httpOnly;
private int version = 0;
private String comment;
private boolean sameSite;
private String sameSiteMode;
public CookieImpl(final String name, final String value) {
this.name = name;
this.value = value;
}
public CookieImpl(final String name) {
this.name = name;
}
public String getName() {
return name;
}
public String getValue() {
return value;
}
public CookieImpl setValue(final String value) {
this.value = value;
return this;
}
public String getPath() {
return path;
}
public CookieImpl setPath(final String path) {
this.path = path;
return this;
}
public String getDomain() {
return domain;
}
public CookieImpl setDomain(final String domain) {
this.domain = domain;
return this;
}
public Integer getMaxAge() {
return maxAge;
}
public CookieImpl setMaxAge(final Integer maxAge) {
this.maxAge = maxAge;
return this;
}
public boolean isDiscard() {
return discard;
}
public CookieImpl setDiscard(final boolean discard) {
this.discard = discard;
return this;
}
public boolean isSecure() {
return secure;
}
public CookieImpl setSecure(final boolean secure) {
this.secure = secure;
return this;
}
public int getVersion() {
return version;
}
public CookieImpl setVersion(final int version) {
this.version = version;
return this;
}
public boolean isHttpOnly() {
return httpOnly;
}
public CookieImpl setHttpOnly(final boolean httpOnly) {
this.httpOnly = httpOnly;
return this;
}
public Date getExpires() {
return expires;
}
public CookieImpl setExpires(final Date expires) {
this.expires = expires;
return this;
}
public String getComment() {
return comment;
}
public Cookie setComment(final String comment) {
this.comment = comment;
return this;
}
@Override
public boolean isSameSite() {
return sameSite;
}
@Override
public Cookie setSameSite(final boolean sameSite) {
this.sameSite = sameSite;
return this;
}
@Override
public String getSameSiteMode() {
return sameSiteMode;
}
@Override
public Cookie setSameSiteMode(final String sameSiteMode) {
if (sameSiteMode != null) {
switch (sameSiteMode.toLowerCase(Locale.ENGLISH)) {
case "strict":
this.setSameSite(true);
this.sameSiteMode = "Strict";
break;
case "lax":
this.setSameSite(true);
this.sameSiteMode = "Lax";
break;
default:
throw UndertowMessages.MESSAGES.invalidSameSiteMode(sameSiteMode);
}
}
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy