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

org.webpieces.plugins.properties.PropertiesConfig Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
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;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy