package com.zuehlke.camp2014.schild.siegfried.domain;
public class Move {
public Move() {
this.moveId = "";
this.userId = "";
this.plateId = "";
}
public Move(String moveId, String userId, String plateId) {
super();
this.moveId = moveId;
this.userId = userId;
this.plateId = plateId;
}
public String getMoveId() {
return moveId;
}
public void setMoveId(String moveId) {
this.moveId = moveId;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getPlateId() {
return plateId;
}
public void setPlateId(String plateId) {
this.plateId = plateId;
}
String moveId;
String userId;
String plateId;
public String toString() {
return userId + ", "+plateId;
}
}