Class RCSBusinessMessaging

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String DEFAULT_BASE_URL
      The default encoded base URL of the service.
      static java.lang.String DEFAULT_BATCH_PATH
      The default encoded batch path of the service.
      static java.lang.String DEFAULT_ROOT_URL
      The default encoded root URL of the service.
      static java.lang.String DEFAULT_SERVICE_PATH
      The default encoded service path of the service.
    • Constructor Summary

      Constructors 
      Constructor Description
      RCSBusinessMessaging​(com.google.api.client.http.HttpTransport transport, com.google.api.client.json.JsonFactory jsonFactory, com.google.api.client.http.HttpRequestInitializer httpRequestInitializer)
      Constructor.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      RCSBusinessMessaging.Files files()
      An accessor for creating requests from the Files collection.
      protected void initialize​(com.google.api.client.googleapis.services.AbstractGoogleClientRequest<?> httpClientRequest)  
      RCSBusinessMessaging.Phones phones()
      An accessor for creating requests from the Phones collection.
      RCSBusinessMessaging.Users users()
      An accessor for creating requests from the Users collection.
      • Methods inherited from class com.google.api.client.googleapis.services.json.AbstractGoogleJsonClient

        getJsonFactory, getObjectParser
      • Methods inherited from class com.google.api.client.googleapis.services.AbstractGoogleClient

        batch, batch, getApplicationName, getBaseUrl, getGoogleClientRequestInitializer, getRequestFactory, getRootUrl, getServicePath, getSuppressPatternChecks, getSuppressRequiredParameterChecks
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • DEFAULT_ROOT_URL

        public static final java.lang.String DEFAULT_ROOT_URL
        The default encoded root URL of the service. This is determined when the library is generated and normally should not be changed.
        Since:
        1.7
        See Also:
        Constant Field Values
      • DEFAULT_SERVICE_PATH

        public static final java.lang.String DEFAULT_SERVICE_PATH
        The default encoded service path of the service. This is determined when the library is generated and normally should not be changed.
        Since:
        1.7
        See Also:
        Constant Field Values
      • DEFAULT_BATCH_PATH

        public static final java.lang.String DEFAULT_BATCH_PATH
        The default encoded batch path of the service. This is determined when the library is generated and normally should not be changed.
        Since:
        1.23
        See Also:
        Constant Field Values
      • DEFAULT_BASE_URL

        public static final java.lang.String DEFAULT_BASE_URL
        The default encoded base URL of the service. This is determined when the library is generated and normally should not be changed.
        See Also:
        Constant Field Values
    • Constructor Detail

      • RCSBusinessMessaging

        public RCSBusinessMessaging​(com.google.api.client.http.HttpTransport transport,
                                    com.google.api.client.json.JsonFactory jsonFactory,
                                    com.google.api.client.http.HttpRequestInitializer httpRequestInitializer)
        Constructor.

        Use RCSBusinessMessaging.Builder if you need to specify any of the optional parameters.

        Parameters:
        transport - HTTP transport, which should normally be:
        • Google App Engine: com.google.api.client.extensions.appengine.http.UrlFetchTransport
        • Android: newCompatibleTransport from com.google.api.client.extensions.android.http.AndroidHttp
        • Java: GoogleNetHttpTransport.newTrustedTransport()
        jsonFactory - JSON factory, which may be:
        • Jackson: com.google.api.client.json.jackson2.JacksonFactory
        • Google GSON: com.google.api.client.json.gson.GsonFactory
        • Android Honeycomb or higher: com.google.api.client.extensions.android.json.AndroidJsonFactory
        httpRequestInitializer - HTTP request initializer or null for none
        Since:
        1.7
    • Method Detail

      • initialize

        protected void initialize​(com.google.api.client.googleapis.services.AbstractGoogleClientRequest<?> httpClientRequest)
                           throws java.io.IOException
        Overrides:
        initialize in class com.google.api.client.googleapis.services.AbstractGoogleClient
        Throws:
        java.io.IOException
      • files

        public RCSBusinessMessaging.Files files()
        An accessor for creating requests from the Files collection.

        The typical use is:

           RCSBusinessMessaging rcsbusinessmessaging = new RCSBusinessMessaging(...);
           RCSBusinessMessaging.Files.List request = rcsbusinessmessaging.files().list(parameters ...)
         
        Returns:
        the resource collection
      • phones

        public RCSBusinessMessaging.Phones phones()
        An accessor for creating requests from the Phones collection.

        The typical use is:

           RCSBusinessMessaging rcsbusinessmessaging = new RCSBusinessMessaging(...);
           RCSBusinessMessaging.Phones.List request = rcsbusinessmessaging.phones().list(parameters ...)
         
        Returns:
        the resource collection
      • users

        public RCSBusinessMessaging.Users users()
        An accessor for creating requests from the Users collection.

        The typical use is:

           RCSBusinessMessaging rcsbusinessmessaging = new RCSBusinessMessaging(...);
           RCSBusinessMessaging.Users.List request = rcsbusinessmessaging.users().list(parameters ...)
         
        Returns:
        the resource collection