Class DataEngineerRESTServices
java.lang.Object
org.odpi.openmetadata.tokencontroller.TokenController
org.odpi.openmetadata.viewservices.dataengineer.server.DataEngineerRESTServices
The DataEngineerRESTServices provides the server-side implementation of the Data Engineer Open Metadata
View Service (OMVS). This interface provides access to a person's profile, roles and network.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetTabularDataSetReport(String serverName, String tabularDataSetGUID, int startFromRow, int maxRowCount) Returns details of a tabular data set including the data rows that match the startFromRow and maxRowCount values.Methods inherited from class org.odpi.openmetadata.tokencontroller.TokenController
getUser
-
Constructor Details
-
DataEngineerRESTServices
public DataEngineerRESTServices()Default constructor
-
-
Method Details
-
getTabularDataSetReport
public TabularDataSetReportResponse getTabularDataSetReport(String serverName, String tabularDataSetGUID, int startFromRow, int maxRowCount) Returns details of a tabular data set including the data rows that match the startFromRow and maxRowCount values. If maxRowCount=0 then no data records are returned.- Parameters:
serverName- name of called servertabularDataSetGUID- unique identifier of tabular dat set assetstartFromRow- cursor position in the data setmaxRowCount- maximum number of rows to return. 0 means no rows.- Returns:
- a list of projects InvalidParameterException one of the parameters is null or invalid. PropertyServerException a problem retrieving information from the property server(s). UserNotAuthorizedException the requesting user is not authorized to issue this request.
-