-
Notifications
You must be signed in to change notification settings - Fork 304
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
Showing
3 changed files
with
53 additions
and
14 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
25 changes: 25 additions & 0 deletions
25
...ssistant/src/main/java/com/chtrembl/petstoreassistant/model/AzurePetStoreSessionInfo.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,25 @@ | ||
package com.chtrembl.petstoreassistant.model; | ||
|
||
import java.io.Serializable; | ||
|
||
public class AzurePetStoreSessionInfo implements Serializable{ | ||
private String sessionID = null; | ||
private String csrfToken = null; | ||
private String newText = null; | ||
|
||
public AzurePetStoreSessionInfo(String sessionID, String csrfToken, String newText) { | ||
super(); | ||
this.sessionID = sessionID; | ||
this.csrfToken = csrfToken; | ||
this.newText = newText; | ||
} | ||
public String getSessionID() { | ||
return sessionID; | ||
} | ||
public String getCsrfToken() { | ||
return csrfToken; | ||
} | ||
public String getNewText() { | ||
return newText; | ||
} | ||
} |
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