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

de.fichtelmax.mojo.messagebundle.model.MessagePropertyInfo Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package de.fichtelmax.mojo.messagebundle.model;

public class MessagePropertyInfo {
	private String propertyName;
	private String value;

	public String getPropertyName() {
		return propertyName;
	}

	public void setPropertyName(String propertyName) {
		this.propertyName = propertyName;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy