Die Klasse ProductBaseDsp:
public class ProductBaseDsp {
/**
* ProductKey
*/
protected String key = "";
/**
* Name of the Product
*/
protected String name = "";
/**
* Description for the Product
*/
protected String description = "";
/**
* Type for the Node
*/
protected String type = "";
/**
* Constructor
*/
public ProductBaseDsp() {
super();
}
public String getName() { return name; }
public String getDescription() { return description; }
public String getType() { return type; }
}