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

com.github.edgar615.util.spring.auth.AuthProperties Maven / Gradle / Ivy

There is a newer version: 0.2.11
Show newest version
package com.github.edgar615.util.spring.auth;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Service;

import java.util.List;

/**
 * Created by Edgar on 2017/11/16.
 *
 * @author Edgar  Date 2017/11/16
 */
@ConfigurationProperties(prefix = "auth")
@Service
public class AuthProperties {
  private List ignore;

  public List getIgnore() {
    return ignore;
  }

  public void setIgnore(List ignore) {
    this.ignore = ignore;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy