Package com.lariflix.jemm.dtos
Class JellyfinCadStudioItems
java.lang.Object
com.lariflix.jemm.dtos.JellyfinCadStudioItems
This class represents a collection of studio items in the Jellyfin catalog.
It is used to store and manage a list of JellyfinCadStudioItem objects.
- Since:
- 1.0
- Author:
- Cesar Bianchi
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionint
int
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetItems()
Retrieves the list of JellyfinCadStudioItem objects.int
Retrieves the start index.int
Retrieves the total record count.void
setItems
(ArrayList<JellyfinCadStudioItem> items) Sets the list of JellyfinCadStudioItem objects.void
setStartIndex
(int startIndex) Sets the start index.void
setTotalRecordCount
(int totalRecordCount) Sets the total record count.
-
Field Details
-
items
-
totalRecordCount
public int totalRecordCount -
startIndex
public int startIndex
-
-
Constructor Details
-
JellyfinCadStudioItems
public JellyfinCadStudioItems()Default constructor for JellyfinCadStudioItems.
-
-
Method Details
-
getItems
Retrieves the list of JellyfinCadStudioItem objects.- Returns:
- The list of JellyfinCadStudioItem objects.
- Since:
- 1.0
-
setItems
Sets the list of JellyfinCadStudioItem objects.- Parameters:
items
- The list of JellyfinCadStudioItem objects.- Since:
- 1.0
-
getTotalRecordCount
public int getTotalRecordCount()Retrieves the total record count.- Returns:
- The total record count.
- Since:
- 1.0
-
setTotalRecordCount
public void setTotalRecordCount(int totalRecordCount) Sets the total record count.- Parameters:
totalRecordCount
- The total record count.- Since:
- 1.0
-
getStartIndex
public int getStartIndex()Retrieves the start index.- Returns:
- The start index.
- Since:
- 1.0
-
setStartIndex
public void setStartIndex(int startIndex) Sets the start index.- Parameters:
startIndex
- The start index.- Since:
- 1.0
-