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

org.webpieces.plugins.properties.beans.KeyUtil Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.webpieces.plugins.properties.beans;

public class KeyUtil {

	public static String PLUGIN_PROPERTIES_KEY = "PLUGIN_PROPERTIES_KEY";

	public static String formKey(String category, String beanName, String propertyName) {
		String key = category+":"+beanName+":"+propertyName;
		return key;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy