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

org.apache.commons.BaseConfig Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package org.apache.commons;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class BaseConfig {

    @Value("${com.jcl.pb.config.allauth}")
    private String allauth;

    public String getAllauth() {
        return allauth;
    }

    public void setAllauth(String allauth) {
        this.allauth = allauth;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy