package com.phonoforce.tramory.entities;
public class Transition implements IEntity {
private int transitionId;
private int customerId;
private String description;
public Transition(int transitionId, int customerId, String description) {
this.transitionId = transitionId;
this.customerId = customerId;
this.description = description;
}
public int getId() {
return transitionId;
}
public void setId(int transitionId) { this.transitionId = transitionId; }
public int getCustomerId() {
return customerId;
}
public void setCustomerId(int customerId) {
this.customerId = customerId;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public String toString() {
return "Transition{" +
"transitionId=" + transitionId +
", customerId=" + customerId +
", description='" + description + '\'' +
'}';
}
}