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

com.jslsolucoes.auth.ee.strategy.impl.Auth Maven / Gradle / Ivy

There is a newer version: 1.0.32
Show newest version
package com.jslsolucoes.auth.ee.strategy.impl;

import javax.inject.Inject;

import com.jslsolucoes.properties.ee.Properties;
import com.jslsolucoes.properties.ee.PropertyValue;

@Properties("auth.properties")
public class Auth {

    	@Inject
    	@PropertyValue(key = "auth.authorizationKey", defaultValue = "")
	private String authorizationKey;

	public String getAuthorizationKey() {
		return authorizationKey;
	}

	public void setAuthorizationKey(String authorizationKey) {
		this.authorizationKey = authorizationKey;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy