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

com.soento.core.config.AuthConfig Maven / Gradle / Ivy

package com.soento.core.config;

import com.soento.core.lang.LoginFunc;
import org.springframework.stereotype.Component;

import java.util.ArrayList;
import java.util.List;

/**
 * @author soento
 */
@Component
public class AuthConfig {
    private List whitelist = new ArrayList<>();
    private List authList = new ArrayList<>();

    public List getWhitelist() {
        return whitelist;
    }

    public void setWhitelist(List whitelist) {
        this.whitelist = whitelist;
    }

    public List getAuthList() {
        return authList;
    }

    public void setAuthList(List authList) {
        this.authList = authList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy