Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make domain objects serializable #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/Account.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
package com.printnode.api;


import java.io.Serializable;

/**
* Account object.
* When being used, will generally be created via the blank constructor.
* The other constructor is for CreateAccountJson,
* which requires firstname, lastname, email and password to be set.
* */
public class Account {
public class Account implements Serializable {

/**
* Id of this account. Not set if made from CreateAccountJson.
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/Auth.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package com.printnode.api;

import java.io.Serializable;

/**
* Auth class required for any APIClient creation.
* Will throw an exception if neither ApiKey or EmailPassword are set.
* */
public class Auth {
public class Auth implements Serializable {

/**
* API-Key to authenticate with.
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/Capabilities.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
import com.google.gson.JsonObject;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
Expand All @@ -12,7 +14,7 @@
* PrintNode API Docs Link:
* <a href=https://www.printnode.com/docs/api/curl/#printer-capabilitie://www.printnode.com/docs/api/curl/#printer-capabilities>Capabilities</a>
* */
public class Capabilities {
public class Capabilities implements Serializable {

/**
* The response body.
Expand Down
5 changes: 4 additions & 1 deletion src/main/java/com/printnode/api/Client.java
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
package com.printnode.api;

import com.google.gson.JsonObject;

import java.io.Serializable;

/**
* Object for a client.
* */
public class Client {
public class Client implements Serializable {

/**
* The body of the response that made this client.
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/Computer.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import com.google.gson.JsonObject;

import java.io.Serializable;

/**
* Object for a computer.
* */
public class Computer {
public class Computer implements Serializable {

/**
* The respose body that made this computer.
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/Download.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import com.google.gson.JsonObject;

import java.io.Serializable;

/**
* Object for latest downloadable clients.
* */
public class Download {
public class Download implements Serializable {

/**
* The response body that made this Download.
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/Options.java
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package com.printnode.api;

import java.io.Serializable;

/**
* Object to be serailized into JSON in createPrintJob.
* */
public class Options {
public class Options implements Serializable {

/**
* Which bin you want to use....
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/PrintJob.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import com.google.gson.JsonObject;

import java.io.Serializable;

/**
* Object for a PrintJob.
* */
public class PrintJob {
public class PrintJob implements Serializable {

/**
* The response body that made this PrintJob.
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/Printer.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import com.google.gson.JsonObject;

import java.io.Serializable;

/**
* Object for a printer.
* */
public class Printer {
public class Printer implements Serializable {

/**
* The response body that made this Printer.
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/Scale.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

/**
* Object for a Whoami.
* */
public class Scale {
public class Scale implements Serializable {

/**
* response body that made this Whoami.
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/State.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

import com.google.gson.JsonObject;

import java.io.Serializable;

/**
* Object for a State.
* */
public class State {
public class State implements Serializable {

/**
* The response body that made this State.
Expand Down
4 changes: 3 additions & 1 deletion src/main/java/com/printnode/api/Whoami.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;

/**
* Object for a Whoami.
* */
public class Whoami {
public class Whoami implements Serializable {

/**
* response body that made this Whoami.
Expand Down