Subversion Repositories bacoAlunos

Rev

Rev 1927 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.domain;
// Generated 29/jan/2018 12:25:13 by Hibernate Tools 3.2.0.b9


import pt.estgp.estgweb.domain.typesgen.VariableType;

/**
 * BpmnVariable generated by hbm2java
 */

public abstract class BpmnVariable extends pt.estgp.estgweb.domain.DomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {


     private long id;
     private 1.5.0/docs/api/java/lang/String.html">String name;
     private VariableType type;

    public BpmnVariable() {
    }

   
    public long getId() {
        return this.id;
    }
   
    public void setId(long id) {
        this.id = id;
    }
    public 1.5.0/docs/api/java/lang/String.html">String getName() {
        return this.name;
    }
   
    public void setName(1.5.0/docs/api/java/lang/String.html">String name) {
        this.name = name;
    }
    public VariableType getType() {
        return this.type;
    }
   
    public void setType(VariableType type) {
        this.type = type;
    }




}