Uses of Class
com.gentics.contentnode.rest.client.exceptions.RestException
-
Packages that use RestException Package Description com.gentics.contentnode.rest.client com.gentics.contentnode.rest.client.exceptions -
-
Uses of RestException in com.gentics.contentnode.rest.client
Methods in com.gentics.contentnode.rest.client that throw RestException Modifier and Type Method Description void
RestClient. assertMatchingVersion()
Checks if the version of the REST API on the server is the same that is used by the client; if there is a mismatch between the two versions, a RestException is thrownvoid
RestClient. assertResponse(GenericResponse response)
Analyzes the response of a finished request and asserts that it was executed without errors; if a problem occurred during the request, a specialized RestException is thrownUser
RestClient. authenticate(String sid, String sessionSecret)
Authenticate with given sid and session secretjavax.ws.rs.client.WebTarget
RestClient. base()
Provides access to the WebTarget that is used as the base for all commands to the serverList<org.apache.http.cookie.Cookie>
RestClient. getCookies()
Get the cookies currently stored in the clientvoid
RestClient. login(String username, String password)
Logs the specified user into the system using the password givenvoid
RestClient. logout()
Logs out the current uservoid
RestClient. ssologin()
Performs login on an SSO system - before this works, necessary filters have to be defined -
Uses of RestException in com.gentics.contentnode.rest.client.exceptions
Subclasses of RestException in com.gentics.contentnode.rest.client.exceptions Modifier and Type Class Description class
AuthRequiredRestException
Exception that is thrown when the session identification is missing or invalidclass
FailureRestException
Exception that is thrown when an unexpected error has occurred (example: a database error prevented saving)class
InvalidDataRestException
Exception that is thrown when data for the request was invalid or insufficientclass
MaintenanceModeRestException
Exception that is thrown when it is not possible to send requests to a system because it is currently in maintenance modeclass
NotFoundRestException
Exception that is thrown when a requested object was not found in the systemclass
PermissionRestException
Exception that is thrown when the user did not have sufficient permissions to carry out the action
-