-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
145549b
commit 2f71c26
Showing
21 changed files
with
133 additions
and
106 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 0 additions & 2 deletions
2
src/main/java/esendex/sdk/java/model/domain/impl/BaseContact.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/main/java/esendex/sdk/java/model/transfer/contact/ContactResponseDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package esendex.sdk.java.model.transfer.contact; | ||
|
||
|
||
import com.thoughtworks.xstream.annotations.XStreamAlias; | ||
|
||
@XStreamAlias("response") | ||
public class ContactResponseDto { | ||
|
||
@XStreamAlias("contact") | ||
private NewContactDto contact;// = new ArrayList(); | ||
|
||
} |
26 changes: 26 additions & 0 deletions
26
src/main/java/esendex/sdk/java/model/transfer/contact/NewContactDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package esendex.sdk.java.model.transfer.contact; | ||
|
||
import com.thoughtworks.xstream.annotations.XStreamAlias; | ||
import com.thoughtworks.xstream.annotations.XStreamOmitField; | ||
|
||
@XStreamAlias("contact") | ||
public class NewContactDto { | ||
|
||
@XStreamAlias("firstname") | ||
private String firstname; | ||
|
||
@XStreamAlias("lastname") | ||
private String lastname; | ||
|
||
@XStreamAlias("quickname") | ||
private String quickname; | ||
|
||
@XStreamAlias("phonenumber") | ||
private String phonenumber; | ||
|
||
@XStreamAlias("accountreference") | ||
private String accountreference; | ||
|
||
@XStreamOmitField | ||
private String link; | ||
} |
26 changes: 0 additions & 26 deletions
26
src/main/java/esendex/sdk/java/model/types/ContactType.java
This file was deleted.
Oops, something went wrong.
7 changes: 3 additions & 4 deletions
7
src/main/java/esendex/sdk/java/model/types/MessageDirection.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.