package-info.javaを作成。
@@ -0,0 +1,5 @@ | ||
1 | +/** | |
2 | + * Provides encoders to encode session attributes to the string. | |
3 | + * The encoder is defined as the init-param of {@link jp.sf.amateras.cookiesession.CookieSessionFilter} in web.xml. | |
4 | + */ | |
5 | +package jp.sf.amateras.cookiesession.encoder; | |
\ No newline at end of file |
@@ -0,0 +1,4 @@ | ||
1 | +/** | |
2 | + * Provides wrappers of Servlet API. These classes are used by only internal of CookieSessionFilter. | |
3 | + */ | |
4 | +package jp.sf.amateras.cookiesession.wrapper; | |
\ No newline at end of file |
@@ -0,0 +1,5 @@ | ||
1 | +/** | |
2 | + * Provides core classes of CookieSessionFilter such as {@link jp.sf.amateras.cookiesession.CookieSessionFilter} | |
3 | + * and {@link jp.sf.amateras.cookiesession.CookieSessionConfig}. | |
4 | + */ | |
5 | +package jp.sf.amateras.cookiesession; | |
\ No newline at end of file |
@@ -0,0 +1,5 @@ | ||
1 | +/** | |
2 | + * Provides containers to wrap primitive types. | |
3 | + * These containers are used by {@link jp.sf.amateras.cookiesession.encoder.JSONEncoder}. | |
4 | + */ | |
5 | +package jp.sf.amateras.cookiesession.primitive; | |
\ No newline at end of file |
@@ -0,0 +1,5 @@ | ||
1 | +/** | |
2 | + * Provides ciphers to crypt session attributes which are encoded as the string by {@link jp.sf.amateras.cookiesession.encoder.SessionEncoder}. | |
3 | + * The encoder is defined as the init-param of {@link jp.sf.amateras.cookiesession.CookieSessionFilter} in web.xml. | |
4 | + */ | |
5 | +package jp.sf.amateras.cookiesession.cipher; | |
\ No newline at end of file |
@@ -0,0 +1,4 @@ | ||
1 | +/** | |
2 | + * Provides utilities. | |
3 | + */ | |
4 | +package jp.sf.amateras.cookiesession.util; | |
\ No newline at end of file |
@@ -0,0 +1,4 @@ | ||
1 | +/** | |
2 | + * Provides utilities. | |
3 | + */ | |
4 | +package jp.sf.amateras.cookiesession.exception; | |
\ No newline at end of file |