Author: sebb Date: Mon Nov 15 03:20:52 2010 New Revision: 1035135 URL: http://svn.apache.org/viewvc?rev=1035135&view=rev Log: Adding @since tags
Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/http/HttpClientFactory.java commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileSystemConfigBuilder.java Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/http/HttpClientFactory.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/http/HttpClientFactory.java?rev=1035135&r1=1035134&r2=1035135&view=diff ============================================================================== --- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/http/HttpClientFactory.java (original) +++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/http/HttpClientFactory.java Mon Nov 15 03:20:52 2010 @@ -63,6 +63,7 @@ public final class HttpClientFactory * @param fileSystemOptions The file system options. * @return a new HttpClient connection. * @throws FileSystemException if an error occurs. + * @since 2.0 */ public static HttpClient createConnection(HttpFileSystemConfigBuilder builder, String scheme, String hostname, int port, String username, Modified: commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileSystemConfigBuilder.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileSystemConfigBuilder.java?rev=1035135&r1=1035134&r2=1035135&view=diff ============================================================================== --- commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileSystemConfigBuilder.java (original) +++ commons/proper/vfs/trunk/core/src/main/java/org/apache/commons/vfs2/provider/http/HttpFileSystemConfigBuilder.java Mon Nov 15 03:20:52 2010 @@ -39,6 +39,7 @@ public class HttpFileSystemConfigBuilder private static final String OPTION_NAME_PREEMPTIVE_AUTHENTICATION = "preemptiveAuth"; + /** @since 2.0 */ protected HttpFileSystemConfigBuilder(String prefix) { super(prefix); @@ -172,6 +173,7 @@ public class HttpFileSystemConfigBuilder * The maximum number of connections allowed. * @param opts The FileSystem options. * @param maxTotalConnections The maximum number of connections. + * @since 2.0 */ public void setMaxTotalConnections(FileSystemOptions opts, int maxTotalConnections) { @@ -182,6 +184,7 @@ public class HttpFileSystemConfigBuilder * Retrieve the maximum number of connections allowed. * @param opts The FileSystemOptions. * @return The maximum number of connections allowed. + * @since 2.0 */ public int getMaxTotalConnections(FileSystemOptions opts) { @@ -192,6 +195,7 @@ public class HttpFileSystemConfigBuilder * The maximum number of connections allowed to any host. * @param opts The FileSystem options. * @param maxHostConnections The maximum number of connections to a host. + * @since 2.0 */ public void setMaxConnectionsPerHost(FileSystemOptions opts, int maxHostConnections) { @@ -202,6 +206,7 @@ public class HttpFileSystemConfigBuilder * Retrieve the maximum number of connections allowed per host. * @param opts The FileSystemOptions. * @return The maximum number of connections allowed per host. + * @since 2.0 */ public int getMaxConnectionsPerHost(FileSystemOptions opts) { @@ -213,6 +218,7 @@ public class HttpFileSystemConfigBuilder * authentication is requested. * @param opts The FileSystemOptions. * @return true if preemptiveAuth is requested. + * @since 2.0 */ public boolean isPreemptiveAuth(FileSystemOptions opts) {