org.webpieces.plugins.properties.beans.KeyUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-properties Show documentation
Show all versions of plugin-properties Show documentation
Webpieces database backed property store
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;
}
}