ec.gob.senescyt.sniese.commons.security.shiro.PreferenciasShiro Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sniese-commons Show documentation
Show all versions of sniese-commons Show documentation
Librería que contiene clases de uso comun para sniese hechos en dropwizard
package ec.gob.senescyt.sniese.commons.security.shiro;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.dropwizard.Configuration;
public class PreferenciasShiro extends Configuration{
protected final static String PATRON_URL_POR_DEFECTO = "/*";
@JsonProperty("secured_url_pattern")
private String securedUrlPattern = PATRON_URL_POR_DEFECTO;
public String getSecuredUrlPattern() {
return securedUrlPattern;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy