package application.helpers.wrappers; /** * This class wraps the occupation given by the user. * @author Bianca * */ public class Occupation { private String levelOne; private String levelTwo; private String levelThree; private String levelFour; public Occupation(String levelOne) { setLevelOne(levelOne); } public String getLevelOne() { return levelOne; } public void setLevelOne(String levelOne) { this.levelOne = levelOne; } public String getLevelTwo() { return levelTwo; } public void setLevelTwo(String levelTwo) { this.levelTwo = levelTwo; } public String getLevelThree() { return levelThree; } public void setLevelThree(String levelThree) { this.levelThree = levelThree; } public String getLevelFour() { return levelFour; } public void setLevelFour(String levelFour) { this.levelFour = levelFour; } }