org.webpieces.plugins.properties.beans.BeanMeta 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;
import java.util.List;
public class BeanMeta {
private List properties;
private String name;
private Class> interfaze;
public BeanMeta(String name, Class> interfaze, List properties) {
this.name = name;
this.interfaze = interfaze;
this.properties = properties;
}
public List getProperties() {
return properties;
}
public String getName() {
return name;
}
public Class> getInterface() {
return interfaze;
}
}