Interface Movie
-
- All Known Implementing Classes:
MovieDTO
public interface Movie
Interface representing a Movie data transfer object.
The methods of this class provide easy access to all movie related data which was returned by the remote service in JSON format. Please note that, as the remote service declares all of the properties to be optional, most of the methods are marked asNullable
. Methods returning collection-based values however will return an empty collection in case no corresponding data was received.
The sole purpose of these DTO objects is to encapsulate the exact raw JSON data as received from the remote service in order to facilitate API integration by working with simple Java POJO's instead of nested JSON nodes. Although there will be no intense post-processing of the actual JSON values a type-casting may be applied to some of them to improve the usability and relieve the API user of this task.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
Movie.Artwork
Interface representing a movies Artwork data transfer object.static interface
Movie.Genre
Interface representing a movies Genre data transfer object.static interface
Movie.People
Interface representing a movies People data transfer object.static interface
Movie.ReleaseDate
Interface representing a movies ReleaseDate data transfer object.static interface
Movie.RemoteId
Interface representing a movies RemoteId data transfer object.static interface
Movie.Trailer
Interface representing a movies Trailer data transfer object.static interface
Movie.Translation
Interface representing a movies Translation data transfer object.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Movie.People>
getActors()
Get all objects of the {data.people.actors
} JSON property in a listList<Movie.Artwork>
getArtworks()
Get all objects of the {data.artworks
} JSON property in a listList<Movie.People>
getDirectors()
Get all objects of the {data.people.directors
} JSON property in a listList<Movie.Genre>
getGenres()
Get all objects of the {data.genres
} JSON property in a listLong
getId()
Get the value of the {data.id
} JSON propertyList<Movie.People>
getProducers()
Get all objects of the {data.people.producers
} JSON property in a listList<Movie.ReleaseDate>
getReleaseDates()
Get all objects of the {data.release_dates
} JSON property in a listList<Movie.RemoteId>
getRemoteIds()
Get all objects of the {data.remoteids
} JSON property in a listLong
getRuntime()
Get the value of the {data.runtime
} JSON propertyList<Movie.Trailer>
getTrailers()
Get all objects of the {data.trailers
} JSON property in a listList<Movie.Translation>
getTranslations()
Get all objects of the {data.translations
} JSON property in a listString
getUrl()
Get the value of the {data.url
} JSON propertyList<Movie.People>
getWriters()
Get all objects of the {data.people.writers
} JSON property in a list
-
-
-
Method Detail
-
getArtworks
List<Movie.Artwork> getArtworks()
Get all objects of the {data.artworks
} JSON property in a list- Returns:
- The
artworks
property from the received JSON as list
-
getGenres
List<Movie.Genre> getGenres()
Get all objects of the {data.genres
} JSON property in a list- Returns:
- The
genres
property from the received JSON as list
-
getId
@Nullable Long getId()
Get the value of the {data.id
} JSON property- Returns:
- The
id
property from the received JSON
-
getActors
List<Movie.People> getActors()
Get all objects of the {data.people.actors
} JSON property in a list- Returns:
- The
actors
property from the received JSONs people-node as list
-
getDirectors
List<Movie.People> getDirectors()
Get all objects of the {data.people.directors
} JSON property in a list- Returns:
- The
directors
property from the received JSONs people-node as list
-
getProducers
List<Movie.People> getProducers()
Get all objects of the {data.people.producers
} JSON property in a list- Returns:
- The
producers
property from the received JSONs people-node as list
-
getWriters
List<Movie.People> getWriters()
Get all objects of the {data.people.writers
} JSON property in a list- Returns:
- The
writers
property from the received JSONs people-node as list
-
getReleaseDates
List<Movie.ReleaseDate> getReleaseDates()
Get all objects of the {data.release_dates
} JSON property in a list- Returns:
- The
release_dates
property from the received JSON as list
-
getRemoteIds
List<Movie.RemoteId> getRemoteIds()
Get all objects of the {data.remoteids
} JSON property in a list- Returns:
- The
remoteids
property from the received JSON as list
-
getRuntime
@Nullable Long getRuntime()
Get the value of the {data.runtime
} JSON property- Returns:
- The
runtime
property from the received JSON
-
getTrailers
List<Movie.Trailer> getTrailers()
Get all objects of the {data.trailers
} JSON property in a list- Returns:
- The
trailers
property from the received JSON as list
-
getTranslations
List<Movie.Translation> getTranslations()
Get all objects of the {data.translations
} JSON property in a list- Returns:
- The
translations
property from the received JSON as list
-
-