Skip to content

Instantly share code, notes, and snippets.

@dardison
Created July 14, 2015 18:19
Show Gist options
  • Save dardison/c56b7a670f303847a1c0 to your computer and use it in GitHub Desktop.
Save dardison/c56b7a670f303847a1c0 to your computer and use it in GitHub Desktop.
public class SaverProductRequestImpl {
private ProductForm model;
public ProductForm getModel() {
return model;
}
public void setModel(ProductForm model) {
this.model = model;
}
}
import java.util.Date;
import com.asbitec.vbi.license.manager.shared.model.FormModel;
public class ProductForm extends FormModel {
private String name;
private String version;
private Date releaseDate;
private Boolean active;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public Date getReleaseDate() {
return releaseDate;
}
public void setReleaseDate(Date releaseDate) {
this.releaseDate = releaseDate;
}
public Boolean getActive() {
return active;
}
public void setActive(Boolean active) {
this.active = active;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment