Uses of Class
com.ellucian.ethos.integration.client.errors.EthosError
-
Packages that use EthosError Package Description com.ellucian.ethos.integration.client com.ellucian.ethos.integration.client.errors -
-
Uses of EthosError in com.ellucian.ethos.integration.client
Methods in com.ellucian.ethos.integration.client that return EthosError Modifier and Type Method Description EthosError
EthosResponseConverter. toSingleEthosError(EthosResponse ethosResponse)
Converts an ethosResponse to an EthosError object.Methods in com.ellucian.ethos.integration.client that return types with arguments of type EthosError Modifier and Type Method Description List<EthosError>
EthosResponseConverter. toEthosErrorList(EthosResponse ethosResponse)
Converts an ethosResponse to a list of EthosError objects. -
Uses of EthosError in com.ellucian.ethos.integration.client.errors
Methods in com.ellucian.ethos.integration.client.errors that return EthosError Modifier and Type Method Description static EthosError
ErrorFactory. createErrorFromJson(String json)
Create an Error object using a JSON string.EthosError
EthosErrorsClient. getByIdAsEthosError(String id)
Get a single error as an EthosError object, using the given ID.Methods in com.ellucian.ethos.integration.client.errors that return types with arguments of type EthosError Modifier and Type Method Description static List<EthosError>
ErrorFactory. createErrorListFromJson(String json)
Create an Error array using a JSON string.List<EthosError>
EthosErrorsClient. getAllErrorsAsEthosErrors()
Gets all of the errors for the given tenant per access token, as a list of EthosErrors.List<EthosError>
EthosErrorsClient. getAsEthosErrors()
Get an initial list of EthosErrors from the tenant associated with the access token.List<EthosError>
EthosErrorsClient. getErrorsFromOffsetAsEthosErrors(int offset)
Gets all of the errors for the given tenant per access token from the given offset, as a list of EthosErrors.Methods in com.ellucian.ethos.integration.client.errors with parameters of type EthosError Modifier and Type Method Description EthosResponse
EthosErrorsClient. post(EthosError error)
Create the given Error in your tenant with a POST request to the Ethos Integration errors service.
-