Commit a3f1d8dc by Tuomas Riihimäki

Rest documentation

1 parent eed117f3
......@@ -31,6 +31,7 @@ public class PrintedCardRestPojo {
private String template;
private String username;
private String wholeName;
private String state;
private Date printTime;
......@@ -65,6 +66,19 @@ public class PrintedCardRestPojo {
return wholeName;
}
/**
* Possible values: ( from CardState )
*
* <ul>
* <li>DATA_MISSING,
* <li>PENDING_VALIDATION,
* <li>REJECTED,
* <li>VALIDATED,
* <li>PRINTING_IN_PROGRESS,
* <li>PRINTED,
* <li>DELIVERED;
* </ul>
*/
@XmlElement(name = "state")
public String getState() {
return state;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!