Commit a3f1d8dc by Tuomas Riihimäki

Rest documentation

1 parent eed117f3
...@@ -31,6 +31,7 @@ public class PrintedCardRestPojo { ...@@ -31,6 +31,7 @@ public class PrintedCardRestPojo {
private String template; private String template;
private String username; private String username;
private String wholeName; private String wholeName;
private String state; private String state;
private Date printTime; private Date printTime;
...@@ -65,6 +66,19 @@ public class PrintedCardRestPojo { ...@@ -65,6 +66,19 @@ public class PrintedCardRestPojo {
return wholeName; 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") @XmlElement(name = "state")
public String getState() { public String getState() {
return state; return state;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!