Skip to content

Commit

Permalink
added javadoc,fixes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Mesut Celik committed Sep 9, 2016
1 parent 393977a commit d596150
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 0 additions & 3 deletions checkstyle/suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@
<!-- Suppress strict duplicate code checking -->
<suppress checks="StrictDuplicateCode" files="\.java" lines="1-15"/>

<!-- Web -->
<suppress checks="JavadocType" files="com/hazelcast/web/"/>

<!-- Exclude Clover instrumented sources -->
<suppress checks="" files="/src-instrumented/"/>

Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/hazelcast/web/HazelcastHttpSession.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
import java.util.StringTokenizer;
import java.util.concurrent.ConcurrentHashMap;

/**
* HazelcastHttpSession is HttpSession implementation based on Hazelcast Imap.
* It contains the methods used to get, put, manage the current state of the HttpSession.
*/
public class HazelcastHttpSession implements HttpSession {

volatile String invalidatedOriginalSessionId;
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/hazelcast/web/WebDataSerializerHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@
import com.hazelcast.web.entryprocessor.GetSessionStateEntryProcessor;
import com.hazelcast.web.entryprocessor.SessionUpdateEntryProcessor;

/**
* WebDataSerializerHook is used to create IdentifiedDataSerializable instances of serializable classes
* in Hazelcast Filter Based Session Replication Module
*/
public class WebDataSerializerHook implements DataSerializerHook {

/**
Expand Down

0 comments on commit d596150

Please sign in to comment.