net.leanix.dropkit.oauth.CrossOriginConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leanix-dropkit Show documentation
Show all versions of leanix-dropkit Show documentation
Base functionality for leanIX dropwizard-based services
package net.leanix.dropkit.oauth;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CrossOriginConfig {
@JsonProperty
private String whitelist;
public String getWhitelist() {
return whitelist;
}
public void setWhitelist(String whitelist) {
this.whitelist = whitelist;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy