blob: adec1fd87e403c4be42510aa5277db9f84dc8768 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2008 Tasktop Technologies and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.commons.net;
import java.net.Proxy;
import javax.net.ssl.X509TrustManager;
import org.eclipse.core.runtime.IProgressMonitor;
/**
* @since 2.2
* @author Steffen Pingel
*/
public abstract class AbstractWebLocation {
private final String url;
/**
* @since 2.2
*/
public AbstractWebLocation(String url) {
this.url = url;
}
/**
* @since 2.2
*/
public abstract AuthenticationCredentials getCredentials(AuthenticationType type);
/**
* @since 2.2
*/
public abstract Proxy getProxyForHost(String host, String proxyType);
/**
* @since 2.2
*/
public X509TrustManager getTrustManager() {
return null;
}
/**
* @since 2.2
*/
public String getUrl() {
return url;
}
/**
* @since 3.0
*/
public void requestCredentials(AuthenticationType type, String message, IProgressMonitor monitor)
throws UnsupportedRequestException {
throw new UnsupportedRequestException();
}
}