io.quarkus.vertx.http.runtime.security.ChallengeData Maven / Gradle / Ivy
The newest version!
package io.quarkus.vertx.http.runtime.security;
/**
* @author Michal Szynkiewicz, [email protected]
*/
public class ChallengeData {
public final int status;
public final CharSequence headerName;
public final String headerContent;
public ChallengeData(int status, CharSequence headerName, String headerContent) {
this.status = status;
this.headerName = headerName;
this.headerContent = headerContent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy