![JAR search and dependency download from the Maven repository](/logo.png)
com.hp.autonomy.hod.sso.InvalidOriginException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hod-sso-spring-security Show documentation
Show all versions of hod-sso-spring-security Show documentation
Library to assist with using Micro Focus Haven OnDemand SSO with Spring Security
package com.hp.autonomy.hod.sso;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;
import java.net.URL;
/**
* Indicates that the URL provided did not match the allowed origins.
*/
@Getter
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class InvalidOriginException extends Exception {
private static final long serialVersionUID = -7019284356750980660L;
private final URL url;
public InvalidOriginException(final URL url) {
super("Origin " + url.toString() + " is not allowed");
this.url = url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy