49 lines
987 B
Java
49 lines
987 B
Java
package com.nttdata.calender.presets;
|
|
|
|
public class Preset {
|
|
private String id;
|
|
private String name;
|
|
private String definition;
|
|
private String presetType;
|
|
|
|
public Preset(String id, String name, String definition, String presetType) {
|
|
this.id = id;
|
|
this.name = name;
|
|
this.definition = definition;
|
|
this.presetType = presetType;
|
|
}
|
|
|
|
public String getId() {
|
|
return this.id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getDefinition() {
|
|
return this.definition;
|
|
}
|
|
|
|
public void setDefinition(String definition) {
|
|
this.definition = definition;
|
|
}
|
|
|
|
public String getPresetType() {
|
|
return this.presetType;
|
|
}
|
|
|
|
public void setPresetType(String presetType) {
|
|
this.presetType = presetType;
|
|
}
|
|
|
|
}
|