
net.trajano.ms.oidc.spi.IssuersConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ms-oidc Show documentation
Show all versions of ms-oidc Show documentation
This microservice handles the authentication process via OpenID Connect.
package net.trajano.ms.oidc.spi;
import java.util.List;
import javax.xml.bind.annotation.XmlRootElement;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@XmlRootElement
@JsonIgnoreProperties(ignoreUnknown = true)
public class IssuersConfig {
private List issuers;
public List getIssuers() {
return issuers;
}
public void setIssuers(final List issuers) {
this.issuers = issuers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy