/*
 * 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.url;

import org.apache.commons.vfs2.FileType;
import org.apache.commons.vfs2.provider.URLFileName;

A URL FileName.
/** * A URL FileName. */
public class UrlFileName extends URLFileName {
The constructor.
Params:
  • scheme – The scheme to use.
  • hostName – The host name.
  • port – The port.
  • defaultPort – The default port.
  • userName – The user's login id.
  • password – The user's credentials.
  • path – The file path.
  • type – The file type.
  • queryString – Parameters to use when locating or creating the file name.
/** * The constructor. * * @param scheme The scheme to use. * @param hostName The host name. * @param port The port. * @param defaultPort The default port. * @param userName The user's login id. * @param password The user's credentials. * @param path The file path. * @param type The file type. * @param queryString Parameters to use when locating or creating the file name. */
public UrlFileName(final String scheme, final String hostName, final int port, final int defaultPort, final String userName, final String password, final String path, final FileType type, final String queryString) { super(scheme, hostName, port, defaultPort, userName, password, path, type, queryString); } @Override protected void appendRootUri(final StringBuilder buffer, final boolean addPassword) { if (getHostName() != null && !"".equals(getHostName())) { super.appendRootUri(buffer, addPassword); return; } buffer.append(getScheme()); buffer.append(":"); } }