-
Notifications
You must be signed in to change notification settings - Fork 19
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 #436 from chrisshayan/Release48
Release48
- Loading branch information
Showing
103 changed files
with
10,926 additions
and
2,772 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
925 changes: 464 additions & 461 deletions
925
src/main/java/com/techlooper/config/CoreConfiguration.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
17 changes: 17 additions & 0 deletions
17
src/main/java/com/techlooper/config/web/sec/SessionListener.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,17 @@ | ||
package com.techlooper.config.web.sec; | ||
|
||
import javax.servlet.http.HttpSessionEvent; | ||
import javax.servlet.http.HttpSessionListener; | ||
|
||
/** | ||
* Created by phuonghqh on 10/12/15. | ||
*/ | ||
public class SessionListener implements HttpSessionListener { | ||
|
||
public void sessionCreated(HttpSessionEvent event) { | ||
event.getSession().setMaxInactiveInterval(15770000); | ||
} | ||
|
||
public void sessionDestroyed(HttpSessionEvent se) { | ||
} | ||
} |
Oops, something went wrong.