[Statelessfilter-commits] SF.net SVN: statelessfilter:[109] trunk
Status: Beta
Brought to you by:
nricheton
|
From: <nri...@us...> - 2012-08-30 21:55:35
|
Revision: 109
http://statelessfilter.svn.sourceforge.net/statelessfilter/?rev=109&view=rev
Author: nricheton
Date: 2012-08-30 21:55:28 +0000 (Thu, 30 Aug 2012)
Log Message:
-----------
Javadoc
Modified Paths:
--------------
trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/utils/CookieUtils.java
trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/wrappers/BufferedServletOutputStream.java
trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/wrappers/StatelessRequestWrapper.java
trunk/stateless-session/src/main/java/net/sourceforge/statelessfilter/backend/session/SessionBackend.java
Modified: trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/utils/CookieUtils.java
===================================================================
--- trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/utils/CookieUtils.java 2012-08-30 21:44:27 UTC (rev 108)
+++ trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/utils/CookieUtils.java 2012-08-30 21:55:28 UTC (rev 109)
@@ -38,6 +38,9 @@
*
* @param name
* @param content
+ * a valid cookie content string. Binary content should be Base64
+ * encoded. Text must be escaped to prevent issues with cookie
+ * attributes like path or maxage.
* @return
* @throws SignatureException
*/
@@ -51,6 +54,9 @@
*
* @param name
* @param content
+ * a valid cookie content string. Binary content should be Base64
+ * encoded. Text must be escaped to prevent issues with cookie
+ * attributes like path or maxage.
* @param domain
* @param path
* @param maxAge
@@ -68,6 +74,9 @@
*
* @param name
* @param content
+ * a valid cookie content string. Binary content should be Base64
+ * encoded. Text must be escaped to prevent issues with cookie
+ * attributes like path or maxage.
* @param domain
* @param path
* @param maxAge
Modified: trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/wrappers/BufferedServletOutputStream.java
===================================================================
--- trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/wrappers/BufferedServletOutputStream.java 2012-08-30 21:44:27 UTC (rev 108)
+++ trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/wrappers/BufferedServletOutputStream.java 2012-08-30 21:55:28 UTC (rev 109)
@@ -1,17 +1,17 @@
/*
- * Copyright 2009-2010 Capgemini
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Copyright 2009-2012 Capgemini
*
- * http://www.apache.org/licenses/LICENSE-2.0
+ * Licensed under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with the
+ * License. You may obtain a copy of the License at
*
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
+ * http://www.apache.org/licenses/LICENSE-2.0
*
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
*/
package net.sourceforge.statelessfilter.wrappers;
Modified: trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/wrappers/StatelessRequestWrapper.java
===================================================================
--- trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/wrappers/StatelessRequestWrapper.java 2012-08-30 21:44:27 UTC (rev 108)
+++ trunk/stateless-core/src/main/java/net/sourceforge/statelessfilter/wrappers/StatelessRequestWrapper.java 2012-08-30 21:55:28 UTC (rev 109)
@@ -1,5 +1,7 @@
/*
- * Copyright 2009-2010 Capgemini Licensed under the Apache License, Version 2.0
+ * Copyright 2009-2012 Capgemini
+ *
+ * Licensed under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
Modified: trunk/stateless-session/src/main/java/net/sourceforge/statelessfilter/backend/session/SessionBackend.java
===================================================================
--- trunk/stateless-session/src/main/java/net/sourceforge/statelessfilter/backend/session/SessionBackend.java 2012-08-30 21:44:27 UTC (rev 108)
+++ trunk/stateless-session/src/main/java/net/sourceforge/statelessfilter/backend/session/SessionBackend.java 2012-08-30 21:55:28 UTC (rev 109)
@@ -1,5 +1,6 @@
-/*
- * Copyright 2009-2010 Capgemini Licensed under the Apache License, Version 2.0
+/* Copyright 2009-2012 Capgemini
+ *
+ * Licensed under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
*
@@ -54,7 +55,7 @@
}
/**
- * @see com.capgemini.stateless.backend.session.ISessionBackend#destroy()
+ * @see net.sourceforge.statelessfilter.backend.session.ISessionBackend#destroy()
*/
public void destroy() {
@@ -62,7 +63,7 @@
}
/**
- * @see com.capgemini.stateless.backend.session.ISessionBackend#getId()
+ * @see net.sourceforge.statelessfilter.backend.session.ISessionBackend#getId()
*/
public String getId() {
@@ -70,7 +71,7 @@
}
/**
- * @see com.capgemini.stateless.backend.session.ISessionBackend#init(java.util.Map)
+ * @see net.sourceforge.statelessfilter.backend.session.ISessionBackend#init(java.util.Map)
*/
public void init(Map<String, String> config) throws Exception {
@@ -82,7 +83,7 @@
}
/**
- * @see com.capgemini.stateless.backend.session.ISessionBackend#restore(javax.servlet.http.HttpServletRequest)
+ * @see net.sourceforge.statelessfilter.backend.session.ISessionBackend#restore(javax.servlet.http.HttpServletRequest)
*/
public ISessionData restore(HttpServletRequest request) {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|