Package com.oracle.content.sdk.request
Class GetItemLanguageVariationsRequest
java.lang.Object
com.oracle.content.sdk.request.core.ContentRequest<T,C>
 
com.oracle.content.sdk.request.core.ContentRequestById<GetItemLanguageVariationsRequest,AssetLanguageVariations>
 
com.oracle.content.sdk.request.GetItemLanguageVariationsRequest
public class GetItemLanguageVariationsRequest
extends ContentRequestById<GetItemLanguageVariationsRequest,AssetLanguageVariations> 
Request class used to get the item language variations for a published
 content item that has language variations.
 
   
 // create request to get item language variations for a content item id
 GetItemLanguageVariationsRequest request =
      new GetItemLanguageVariationsRequest(deliveryClient, contentItemId);
  - 
Nested Class Summary
Nested classes/interfaces inherited from class com.oracle.content.sdk.request.core.ContentRequestById
ContentRequestById.IdType - 
Field Summary
Fields inherited from class com.oracle.content.sdk.request.core.ContentRequestById
id, idTypeFields inherited from class com.oracle.content.sdk.request.core.ContentRequest
client, links, objectClass - 
Constructor Summary
ConstructorsConstructorDescriptionGetItemLanguageVariationsRequest(ContentDeliveryClient client, String id, ContentRequestById.IdType idType) Construct request to get item language variations - 
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<com.google.gson.JsonElement>getCall()Get the retrofit call to make for this request..Methods inherited from class com.oracle.content.sdk.request.core.ContentRequest
deserializeObject, fetch, fetchAsync, fetchResult, getCacheControl, getThis, gson, links, linksNone, noCache, observable, observableResult 
- 
Constructor Details
- 
GetItemLanguageVariationsRequest
public GetItemLanguageVariationsRequest(ContentDeliveryClient client, String id, ContentRequestById.IdType idType) Construct request to get item language variations- Parameters:
 client- delivery client to useid- content item ididType- id type either ID or slug
 - 
GetItemLanguageVariationsRequest
 
 - 
 - 
Method Details
- 
getCall
public retrofit2.Call<com.google.gson.JsonElement> getCall()Description copied from class:ContentRequestGet the retrofit call to make for this request..- Specified by:
 getCallin classContentRequest<GetItemLanguageVariationsRequest,AssetLanguageVariations> - Returns:
 - return the retrofit call object to use for this request
 
 
 -