Skip to content

Commit

Permalink
Add step to Application form
Browse files Browse the repository at this point in the history
  • Loading branch information
tifoha committed Jan 22, 2016
1 parent e0dbda7 commit 336692c
Showing 1 changed file with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@ public class ApplicationFormQuestion implements Comparable<ApplicationFormQuesti
@Column
private String xsdElementName;

@Column
private String stepName;

@Column
private Integer stepSortOrder;

@Column
private String text;

Expand Down Expand Up @@ -64,6 +70,22 @@ public void setXsdElementName(String xsdElementName) {
this.xsdElementName = xsdElementName;
}

public String getStepName() {
return stepName;
}

public void setStepName(String stepName) {
this.stepName = stepName;
}

public Integer getStepSortOrder() {
return stepSortOrder;
}

public void setStepSortOrder(Integer stepSortOrder) {
this.stepSortOrder = stepSortOrder;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
Expand Down

0 comments on commit 336692c

Please sign in to comment.