Skip to main content
summaryrefslogtreecommitdiffstats
blob: 65c40e8475bc884a7f42bea6c5b8eefee1ef1e1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************************************************************
 * Copyright (c) 2012 Boeing.
 * 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:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.ote.master.rest.client.internal;

import java.net.URI;

import com.sun.jersey.api.client.AsyncWebResource;
import com.sun.jersey.api.client.WebResource;

public interface WebClientProvider {

   WebResource createResource(URI uri) throws Exception;

   AsyncWebResource createAsyncResource(URI uri) throws Exception;

}

Back to the top