1 24 package org.riotfamily.riot.job; 25 26 31 public class JobDescription { 32 33 private String name; 34 35 private String description; 36 37 private int steps; 38 39 40 public JobDescription() { 41 } 42 43 public JobDescription(String name, int steps) { 44 this.name = name; 45 this.steps = steps; 46 } 47 48 public JobDescription(String name, String description, int steps) { 49 this.name = name; 50 this.description = description; 51 this.steps = steps; 52 } 53 54 public String getName() { 55 return this.name; 56 } 57 58 public void setName(String name) { 59 this.name = name; 60 } 61 62 65 public String getDescription() { 66 return this.description; 67 } 68 69 public void setDescription(String description) { 70 this.description = description; 71 } 72 73 77 public int getSteps() { 78 return this.steps; 79 } 80 81 public void setSteps(int steps) { 82 this.steps = steps; 83 } 84 85 } 86 | Popular Tags |