org.webpieces.plugins.properties.PropertiesConfig 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;
public class PropertiesConfig {
private String interfaceSuffixMatch = "WebpiecesManaged";
private String categoryMethod = "getCategory";
private int pollIntervalSeconds = 60;
public PropertiesConfig() {
}
public PropertiesConfig(String interfaceSuffixMatch) {
this.setInterfaceSuffixMatch(interfaceSuffixMatch);
}
public String getInterfaceSuffixMatch() {
return interfaceSuffixMatch;
}
public void setInterfaceSuffixMatch(String interfaceSuffixMatch) {
this.interfaceSuffixMatch = interfaceSuffixMatch;
}
public String getCategoryMethod() {
return categoryMethod;
}
public void setCategoryMethod(String categoryMethod) {
this.categoryMethod = categoryMethod;
}
public int getPollIntervalSeconds() {
return pollIntervalSeconds;
}
public void setPollIntervalSeconds(int pollIntervalSeconds) {
this.pollIntervalSeconds = pollIntervalSeconds;
}
}