Class AbstractRxInvoker<T>

  • All Implemented Interfaces:
    jakarta.ws.rs.client.RxInvoker<T>
    Direct Known Subclasses:
    MultiInvoker, UniInvoker

    public abstract class AbstractRxInvoker<T>
    extends Object
    implements jakarta.ws.rs.client.RxInvoker<T>
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T delete()  
      <R> T delete​(jakarta.ws.rs.core.GenericType<R> responseType)  
      <R> T delete​(Class<R> responseType)  
      T get()  
      <R> T get​(jakarta.ws.rs.core.GenericType<R> responseType)  
      <R> T get​(Class<R> responseType)  
      T head()  
      T method​(String name)  
      T method​(String name, jakarta.ws.rs.client.Entity<?> entity)  
      <R> T method​(String name, jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)  
      <R> T method​(String name, jakarta.ws.rs.core.GenericType<R> responseType)  
      <R> T method​(String name, Class<R> responseType)  
      T options()  
      <R> T options​(jakarta.ws.rs.core.GenericType<R> responseType)  
      <R> T options​(Class<R> responseType)  
      T post​(jakarta.ws.rs.client.Entity<?> entity)  
      <R> T post​(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<R> responseType)  
      <R> T post​(jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)  
      T put​(jakarta.ws.rs.client.Entity<?> entity)  
      <R> T put​(jakarta.ws.rs.client.Entity<?> entity, jakarta.ws.rs.core.GenericType<R> responseType)  
      <R> T put​(jakarta.ws.rs.client.Entity<?> entity, Class<R> responseType)  
      T trace()  
      <R> T trace​(jakarta.ws.rs.core.GenericType<R> responseType)  
      <R> T trace​(Class<R> responseType)  
      • Methods inherited from interface jakarta.ws.rs.client.RxInvoker

        method
    • Constructor Detail

      • AbstractRxInvoker

        public AbstractRxInvoker()
    • Method Detail

      • get

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

        public <R> T get​(Class<R> responseType)
        Specified by:
        get in interface jakarta.ws.rs.client.RxInvoker<T>
      • get

        public <R> T get​(jakarta.ws.rs.core.GenericType<R> responseType)
        Specified by:
        get in interface jakarta.ws.rs.client.RxInvoker<T>
      • put

        public T put​(jakarta.ws.rs.client.Entity<?> entity)
        Specified by:
        put in interface jakarta.ws.rs.client.RxInvoker<T>
      • put

        public <R> T put​(jakarta.ws.rs.client.Entity<?> entity,
                         Class<R> responseType)
        Specified by:
        put in interface jakarta.ws.rs.client.RxInvoker<T>
      • put

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

        public T post​(jakarta.ws.rs.client.Entity<?> entity)
        Specified by:
        post in interface jakarta.ws.rs.client.RxInvoker<T>
      • post

        public <R> T post​(jakarta.ws.rs.client.Entity<?> entity,
                          Class<R> responseType)
        Specified by:
        post in interface jakarta.ws.rs.client.RxInvoker<T>
      • post

        public <R> T post​(jakarta.ws.rs.client.Entity<?> entity,
                          jakarta.ws.rs.core.GenericType<R> responseType)
        Specified by:
        post in interface jakarta.ws.rs.client.RxInvoker<T>
      • delete

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

        public <R> T delete​(Class<R> responseType)
        Specified by:
        delete in interface jakarta.ws.rs.client.RxInvoker<T>
      • delete

        public <R> T delete​(jakarta.ws.rs.core.GenericType<R> responseType)
        Specified by:
        delete in interface jakarta.ws.rs.client.RxInvoker<T>
      • head

        public T head()
        Specified by:
        head in interface jakarta.ws.rs.client.RxInvoker<T>
      • options

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

        public <R> T options​(Class<R> responseType)
        Specified by:
        options in interface jakarta.ws.rs.client.RxInvoker<T>
      • options

        public <R> T options​(jakarta.ws.rs.core.GenericType<R> responseType)
        Specified by:
        options in interface jakarta.ws.rs.client.RxInvoker<T>
      • trace

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

        public <R> T trace​(Class<R> responseType)
        Specified by:
        trace in interface jakarta.ws.rs.client.RxInvoker<T>
      • trace

        public <R> T trace​(jakarta.ws.rs.core.GenericType<R> responseType)
        Specified by:
        trace in interface jakarta.ws.rs.client.RxInvoker<T>
      • method

        public T method​(String name)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<T>
      • method

        public <R> T method​(String name,
                            Class<R> responseType)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<T>
      • method

        public <R> T method​(String name,
                            jakarta.ws.rs.core.GenericType<R> responseType)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<T>
      • method

        public T method​(String name,
                        jakarta.ws.rs.client.Entity<?> entity)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<T>
      • method

        public <R> T method​(String name,
                            jakarta.ws.rs.client.Entity<?> entity,
                            Class<R> responseType)
        Specified by:
        method in interface jakarta.ws.rs.client.RxInvoker<T>