Class UnixFileListResponse
- java.lang.Object
-
- zowe.client.sdk.zosfiles.uss.reaponse.UnixFileListResponse
-
public final class UnixFileListResponse extends Object
Response object representing a Unix File List response from USS. Contains a list of UnixFile items and metadata about the response.- Version:
- 5.0
- Author:
- Frank Giordano
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<UnixFile>getItems()Retrieve list of UnixFile itemsintgetJsonVersion()Retrieve JSON versionintgetReturnedRows()Retrieve the number of returned rowsintgetTotalRows()Retrieve the total number of rowsStringtoString()Return string value representing UnixFileListResponse object
-
-
-
Constructor Detail
-
UnixFileListResponse
public UnixFileListResponse(Integer jsonVersion, Integer returnedRows, Integer totalRows, List<UnixFile> items)
Jackson constructor for UnixFileListResponse- Parameters:
jsonVersion- JSON version of the responsereturnedRows- number of items returnedtotalRows- total number of itemsitems- list of UnixFile objects
-
-
Method Detail
-
getJsonVersion
public int getJsonVersion()
Retrieve JSON version- Returns:
- jsonVersion
-
getReturnedRows
public int getReturnedRows()
Retrieve the number of returned rows- Returns:
- returnedRows
-
getTotalRows
public int getTotalRows()
Retrieve the total number of rows- Returns:
- totalRows
-
getItems
public List<UnixFile> getItems()
Retrieve list of UnixFile items- Returns:
- list of UnixFile objects
-
-