com.phloc.commons.url.ReadonlySimpleURL Maven / Gradle / Ivy
/**
* Copyright (C) 2006-2014 phloc systems
* http://www.phloc.com
* office[at]phloc[dot]com
*
* 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
*
* 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 com.phloc.commons.url;
import java.util.Map;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
/**
* Abstraction of the string parts of a URL but much simpler (and faster) than
* {@link java.net.URL}.
*
* @author Philip Helger
*/
public final class ReadonlySimpleURL extends AbstractSimpleURL
{
/** Empty URL */
public static final ReadonlySimpleURL EMPTY_URL = new ReadonlySimpleURL (URLData.EMPTY_URL_DATA);
public ReadonlySimpleURL (@Nonnull final String sHref)
{
super (sHref);
}
public ReadonlySimpleURL (@Nonnull final String sHref, @Nullable final Map aParams)
{
super (sHref, aParams);
}
public ReadonlySimpleURL (@Nonnull final String sHref,
@Nullable final Map aParams,
@Nullable final String sAnchor)
{
super (sHref, aParams, sAnchor);
}
public ReadonlySimpleURL (@Nonnull final IURLData aURL)
{
super (aURL);
}
}