/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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
 *
 *      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 org.apache.commons.vfs2.provider.webdav;

import org.apache.commons.vfs2.FileSystem;
import org.apache.commons.vfs2.FileSystemOptions;
import org.apache.commons.vfs2.provider.http.HttpFileSystemConfigBuilder;

Configuration options for WebDav.
Since:2.0
/** * Configuration options for WebDav. * * @since 2.0 */
public final class WebdavFileSystemConfigBuilder extends HttpFileSystemConfigBuilder { private static final WebdavFileSystemConfigBuilder BUILDER = new WebdavFileSystemConfigBuilder(); private static final boolean DEFAULT_FOLLOW_REDIRECT = false; private WebdavFileSystemConfigBuilder() { super("webdav."); }
Gets the singleton builder.
Returns:the singleton builder.
/** * Gets the singleton builder. * * @return the singleton builder. */
public static HttpFileSystemConfigBuilder getInstance() { return BUILDER; }
The user name to be associated with changes to the file.
Params:
  • opts – The FileSystem options
  • creatorName – The creator name to be associated with the file.
/** * The user name to be associated with changes to the file. * * @param opts The FileSystem options * @param creatorName The creator name to be associated with the file. */
public void setCreatorName(final FileSystemOptions opts, final String creatorName) { setParam(opts, "creatorName", creatorName); }
Return the user name to be associated with changes to the file.
Params:
  • opts – The FileSystem options
Returns:The creatorName.
/** * Return the user name to be associated with changes to the file. * * @param opts The FileSystem options * @return The creatorName. */
public String getCreatorName(final FileSystemOptions opts) { return getString(opts, "creatorName"); }
Gets whether to follow redirects for the connection.
Params:
  • opts – The FileSystem options.
See Also:
Returns:true to follow redirects, false not to.
Since:2.1
/** * Gets whether to follow redirects for the connection. * * @param opts The FileSystem options. * @return {@code true} to follow redirects, {@code false} not to. * @see #setFollowRedirect * @since 2.1 */
@Override public boolean getFollowRedirect(final FileSystemOptions opts) { return getBoolean(opts, KEY_FOLLOW_REDIRECT, DEFAULT_FOLLOW_REDIRECT); }
Whether to use versioning.
Params:
  • opts – The FileSystem options.
  • versioning – true if versioning should be enabled.
/** * Whether to use versioning. * * @param opts The FileSystem options. * @param versioning true if versioning should be enabled. */
public void setVersioning(final FileSystemOptions opts, final boolean versioning) { setParam(opts, "versioning", Boolean.valueOf(versioning)); }
The cookies to add to the request.
Params:
  • opts – The FileSystem options.
Returns:true if versioning is enabled.
/** * The cookies to add to the request. * * @param opts The FileSystem options. * @return true if versioning is enabled. */
public boolean isVersioning(final FileSystemOptions opts) { return getBoolean(opts, "versioning", false); }
Returns:The Webdav FileSystem Class object.
/** * @return The Webdav FileSystem Class object. */
@Override protected Class<? extends FileSystem> getConfigClass() { return WebdavFileSystem.class; } }