/** * */ package org.wamblee; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; @XmlAccessorType(XmlAccessType.FIELD) public class BeanInfo { public String name; public String intf; public String impl; public BeanInfo() { } public BeanInfo(String aName, String aInterface, String aImplementation) { name = aName; intf = aInterface; impl = aImplementation; } public String getImpl() { return impl; } public String getIntf() { return intf; } public String getName() { return name; } public void setImpl(String aImpl) { impl = aImpl; } public void setIntf(String aIntf) { intf = aIntf; } public void setName(String aName) { name = aName; } }