All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cloud.agileframework.data.common.auth.AuthDataProperties Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
package cloud.agileframework.data.common.auth;

import com.google.common.collect.Maps;
import org.springframework.boot.context.properties.ConfigurationProperties;

import java.util.Map;

@ConfigurationProperties(prefix = "agile.data.auth")
public class AuthDataProperties {
    private boolean enable = false;
    private Map filterMapping = Maps.newHashMap();

    public boolean isEnable() {
        return enable;
    }

    public void setEnable(boolean enable) {
        this.enable = enable;
    }

    public Map getFilterMapping() {
        return filterMapping;
    }

    public void setFilterMapping(Map filterMapping) {
        this.filterMapping = filterMapping;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy