Class SyncInvokerImpl

java.lang.Object
org.apache.cxf.jaxrs.client.SyncInvokerImpl
All Implemented Interfaces:
jakarta.ws.rs.client.SyncInvoker

public class SyncInvokerImpl extends Object implements jakarta.ws.rs.client.SyncInvoker
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.ws.rs.core.Response
     
    <T> T
    delete(jakarta.ws.rs.core.GenericType<T> genericType)
     
    <T> T
    delete(Class<T> cls)
     
    jakarta.ws.rs.core.Response
    get()
     
    <T> T
    get(jakarta.ws.rs.core.GenericType<T> genericType)
     
    <T> T
    get(Class<T> cls)
     
     
    jakarta.ws.rs.core.Response
     
    jakarta.ws.rs.core.Response
    method(String method)
     
    jakarta.ws.rs.core.Response
    method(String method, jakarta.ws.rs.client.Entity<?> entity)
     
    <T> T
    method(String method, jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> genericType)
     
    <T> T
    method(String method, jakarta.ws.rs.client.Entity<?> entity, Class<T> cls)
     
    <T> T
    method(String method, jakarta.ws.rs.core.GenericType<T> genericType)
     
    <T> T
    method(String method, Class<T> cls)
     
    jakarta.ws.rs.core.Response
     
    <T> T
    options(jakarta.ws.rs.core.GenericType<T> genericType)
     
    <T> T
    options(Class<T> cls)
     
    jakarta.ws.rs.core.Response
    post(jakarta.ws.rs.client.Entity<?> entity)
     
    <T> T
    post(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> genericType)
     
    <T> T
    post(jakarta.ws.rs.client.Entity<?> entity, Class<T> cls)
     
    jakarta.ws.rs.core.Response
    put(jakarta.ws.rs.client.Entity<?> entity)
     
    <T> T
    put(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> genericType)
     
    <T> T
    put(jakarta.ws.rs.client.Entity<?> entity, Class<T> cls)
     
    jakarta.ws.rs.core.Response
     
    <T> T
    trace(jakarta.ws.rs.core.GenericType<T> genericType)
     
    <T> T
    trace(Class<T> cls)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • SyncInvokerImpl

      public SyncInvokerImpl(WebClient wc)
  • Method Details

    • delete

      public jakarta.ws.rs.core.Response delete()
      Specified by:
      delete in interface jakarta.ws.rs.client.SyncInvoker
    • delete

      public <T> T delete(Class<T> cls)
      Specified by:
      delete in interface jakarta.ws.rs.client.SyncInvoker
    • delete

      public <T> T delete(jakarta.ws.rs.core.GenericType<T> genericType)
      Specified by:
      delete in interface jakarta.ws.rs.client.SyncInvoker
    • get

      public jakarta.ws.rs.core.Response get()
      Specified by:
      get in interface jakarta.ws.rs.client.SyncInvoker
    • get

      public <T> T get(Class<T> cls)
      Specified by:
      get in interface jakarta.ws.rs.client.SyncInvoker
    • get

      public <T> T get(jakarta.ws.rs.core.GenericType<T> genericType)
      Specified by:
      get in interface jakarta.ws.rs.client.SyncInvoker
    • head

      public jakarta.ws.rs.core.Response head()
      Specified by:
      head in interface jakarta.ws.rs.client.SyncInvoker
    • options

      public jakarta.ws.rs.core.Response options()
      Specified by:
      options in interface jakarta.ws.rs.client.SyncInvoker
    • options

      public <T> T options(Class<T> cls)
      Specified by:
      options in interface jakarta.ws.rs.client.SyncInvoker
    • options

      public <T> T options(jakarta.ws.rs.core.GenericType<T> genericType)
      Specified by:
      options in interface jakarta.ws.rs.client.SyncInvoker
    • post

      public jakarta.ws.rs.core.Response post(jakarta.ws.rs.client.Entity<?> entity)
      Specified by:
      post in interface jakarta.ws.rs.client.SyncInvoker
    • post

      public <T> T post(jakarta.ws.rs.client.Entity<?> entity, Class<T> cls)
      Specified by:
      post in interface jakarta.ws.rs.client.SyncInvoker
    • post

      public <T> T post(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> genericType)
      Specified by:
      post in interface jakarta.ws.rs.client.SyncInvoker
    • put

      public jakarta.ws.rs.core.Response put(jakarta.ws.rs.client.Entity<?> entity)
      Specified by:
      put in interface jakarta.ws.rs.client.SyncInvoker
    • put

      public <T> T put(jakarta.ws.rs.client.Entity<?> entity, Class<T> cls)
      Specified by:
      put in interface jakarta.ws.rs.client.SyncInvoker
    • put

      public <T> T put(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> genericType)
      Specified by:
      put in interface jakarta.ws.rs.client.SyncInvoker
    • trace

      public jakarta.ws.rs.core.Response trace()
      Specified by:
      trace in interface jakarta.ws.rs.client.SyncInvoker
    • trace

      public <T> T trace(Class<T> cls)
      Specified by:
      trace in interface jakarta.ws.rs.client.SyncInvoker
    • trace

      public <T> T trace(jakarta.ws.rs.core.GenericType<T> genericType)
      Specified by:
      trace in interface jakarta.ws.rs.client.SyncInvoker
    • method

      public jakarta.ws.rs.core.Response method(String method)
      Specified by:
      method in interface jakarta.ws.rs.client.SyncInvoker
    • method

      public <T> T method(String method, Class<T> cls)
      Specified by:
      method in interface jakarta.ws.rs.client.SyncInvoker
    • method

      public <T> T method(String method, jakarta.ws.rs.core.GenericType<T> genericType)
      Specified by:
      method in interface jakarta.ws.rs.client.SyncInvoker
    • method

      public jakarta.ws.rs.core.Response method(String method, jakarta.ws.rs.client.Entity<?> entity)
      Specified by:
      method in interface jakarta.ws.rs.client.SyncInvoker
    • method

      public <T> T method(String method, jakarta.ws.rs.client.Entity<?> entity, Class<T> cls)
      Specified by:
      method in interface jakarta.ws.rs.client.SyncInvoker
    • method

      public <T> T method(String method, jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<T> genericType)
      Specified by:
      method in interface jakarta.ws.rs.client.SyncInvoker
    • getWebClient

      public WebClient getWebClient()