/** * 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.hadoop.yarn.api.records; import org.apache.hadoop.classification.InterfaceAudience.Public; import org.apache.hadoop.classification.InterfaceStability.Evolving; /** * <p><code>URL</code> represents a serializable {@link java.net.URL}.</p> */ @Public @Evolving public interface URL { /** * Get the scheme of the URL. * @return scheme of the URL */ @Public @Evolving public abstract String getScheme(); /** * Set the scheme of the URL * @param scheme scheme of the URL */ @Public @Evolving public abstract void setScheme(String scheme); /** * Get the host of the URL. * @return host of the URL */ @Public @Evolving public abstract String getHost(); /** * Set the host of the URL. * @param host host of the URL */ @Public @Evolving public abstract void setHost(String host); /** * Get the port of the URL. * @return port of the URL */ @Public @Evolving public abstract int getPort(); /** * Set the port of the URL * @param port port of the URL */ @Public @Evolving public abstract void setPort(int port); /** * Get the file of the URL. * @return file of the URL */ @Public @Evolving public abstract String getFile(); /** * Set the file of the URL. * @param file file of the URL */ @Public @Evolving public abstract void setFile(String file); }