/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.dhaval.web.vaadin.simple.domain;

import java.io.Serializable;
import java.util.HashSet;
import java.util.Set;

/**
 *
 * @author dhaval
 */
public class Form implements Serializable{

    private String name;
    private String description;
    private Set<FormField> fields;

    public Form(String name, String description) {
        this.name = name;
        this.description = description;
    }

    public String getDescription() {
        return description;
    }


    public String getName() {
        return name;
    }

    public void setFields(Set<FormField> fields) {
        this.fields = fields;
    }

    public Set<FormField> getFields() {
        return fields;
    }

    
}
