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

com.github.javaclub.configcenter.spring.property.SpringValueDefinition Maven / Gradle / Ivy

The newest version!
package com.github.javaclub.configcenter.spring.property;

public class SpringValueDefinition {

	private final String key;
	private final String placeholder;
	private final String propertyName;

	public SpringValueDefinition(String key, String placeholder, String propertyName) {
		this.key = key;
		this.placeholder = placeholder;
		this.propertyName = propertyName;
	}

	public String getKey() {
		return key;
	}

	public String getPlaceholder() {
		return placeholder;
	}

	public String getPropertyName() {
		return propertyName;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy