-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #441 from EsupPortail/test
Test
- Loading branch information
Showing
26 changed files
with
554 additions
and
269 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
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
76 changes: 76 additions & 0 deletions
76
src/main/java/org/esupportail/esupsignature/dto/HttpSession.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,76 @@ | ||
package org.esupportail.esupsignature.dto; | ||
|
||
import java.util.Date; | ||
|
||
public class HttpSession { | ||
|
||
Date createdDate; | ||
|
||
Date lastRequest; | ||
|
||
String sessionId; | ||
|
||
String remoteIp; | ||
|
||
String originRequestUri; | ||
|
||
String userEppn; | ||
|
||
boolean expired; | ||
|
||
public Date getCreatedDate() { | ||
return createdDate; | ||
} | ||
|
||
public void setCreatedDate(Date createdDate) { | ||
this.createdDate = createdDate; | ||
} | ||
|
||
public Date getLastRequest() { | ||
return lastRequest; | ||
} | ||
|
||
public void setLastRequest(Date lastRequest) { | ||
this.lastRequest = lastRequest; | ||
} | ||
|
||
public String getSessionId() { | ||
return sessionId; | ||
} | ||
|
||
public void setSessionId(String sessionId) { | ||
this.sessionId = sessionId; | ||
} | ||
|
||
public String getRemoteIp() { | ||
return remoteIp; | ||
} | ||
|
||
public void setRemoteIp(String remoteIp) { | ||
this.remoteIp = remoteIp; | ||
} | ||
|
||
public String getOriginRequestUri() { | ||
return originRequestUri; | ||
} | ||
|
||
public void setOriginRequestUri(String originRequestUri) { | ||
this.originRequestUri = originRequestUri; | ||
} | ||
|
||
public String getUserEppn() { | ||
return userEppn; | ||
} | ||
|
||
public void setUserEppn(String userEppn) { | ||
this.userEppn = userEppn; | ||
} | ||
|
||
public boolean isExpired() { | ||
return expired; | ||
} | ||
|
||
public void setExpired(boolean expired) { | ||
this.expired = expired; | ||
} | ||
} |
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.