javax.ws.rs.client.SyncInvoker Maven / Gradle / Ivy
/*
* #%L
* Apache Geronimo JAX-RS Spec 2.0
* %%
* Copyright (C) 2003 - 2014 The Apache Software Foundation
* %%
* 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.
* #L%
*/
package javax.ws.rs.client;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.Response;
public interface SyncInvoker {
// GET
Response get();
T get(Class responseType);
T get(GenericType responseType);
// PUT
Response put(Entity> entity);
T put(Entity> entity, Class responseType);
T put(Entity> entity, GenericType responseType);
// POST
Response post(Entity> entity);
T post(Entity> entity, Class responseType);
T post(Entity> entity, GenericType responseType);
// DELETE
Response delete();
T delete(Class responseType);
T delete(GenericType responseType);
// HEAD
Response head();
// OPTIONS
Response options();
T options(Class responseType);
T options(GenericType responseType);
// TRACE
Response trace();
T trace(Class responseType);
T trace(GenericType responseType);
// OTHERS
Response method(String name);
T method(String name, Class responseType);
T method(String name, GenericType responseType);
Response method(String name, Entity> entity);
T method(String name, Entity> entity, Class responseType);
T method(String name, Entity> entity, GenericType responseType);
}