Uses of Class
de.aristaflow.ilm.util.IlmException
-
-
Uses of IlmException in de.aristaflow.ilm.base.configuration
Subclasses of IlmException in de.aristaflow.ilm.base.configuration Modifier and Type Class Description classAbortServiceExceptionclassConfigurationException -
Uses of IlmException in de.aristaflow.ilm.base.security
Subclasses of IlmException in de.aristaflow.ilm.base.security Modifier and Type Class Description classAuthenticationExceptionclassPasswordPolicyException -
Uses of IlmException in de.aristaflow.ilm.base.service
Subclasses of IlmException in de.aristaflow.ilm.base.service Modifier and Type Class Description classAbortTransactionExceptionclassServiceNotKnownException -
Uses of IlmException in de.aristaflow.ilm.core.orgmodelmanager
Subclasses of IlmException in de.aristaflow.ilm.core.orgmodelmanager Modifier and Type Class Description classOrgModelExceptionclassPolicyResolutionException -
Uses of IlmException in de.aristaflow.ilm.core.resmodelmanager
Subclasses of IlmException in de.aristaflow.ilm.core.resmodelmanager Modifier and Type Class Description classXPathEvaluationException -
Uses of IlmException in de.aristaflow.ilm.model.common
Subclasses of IlmException in de.aristaflow.ilm.model.common Modifier and Type Class Description classDataConsistencyException -
Uses of IlmException in de.aristaflow.ilm.model.datamanagement
Subclasses of IlmException in de.aristaflow.ilm.model.datamanagement Modifier and Type Class Description classInvalidDataContainerExceptionclassInvalidDataTypeException -
Uses of IlmException in de.aristaflow.ilm.model.execution
Subclasses of IlmException in de.aristaflow.ilm.model.execution Modifier and Type Class Description classAgentUnknownExceptionclassInvalidActivityStateExceptionclassWrongAgentExceptionFields in de.aristaflow.ilm.model.execution declared as IlmException Modifier and Type Field Description @Valid IlmExceptionExecutionContextResponse. exception -
Uses of IlmException in de.aristaflow.ilm.model.processmodel
Subclasses of IlmException in de.aristaflow.ilm.model.processmodel Modifier and Type Class Description classInvalidInstanceStateExceptionclassInvalidTemplateStateException -
Uses of IlmException in de.aristaflow.ilm.model.runtimeenvironment
Subclasses of IlmException in de.aristaflow.ilm.model.runtimeenvironment Modifier and Type Class Description classUnknownSessionExceptionclassWrongRuntimeManagerExceptionFields in de.aristaflow.ilm.model.runtimeenvironment declared as IlmException Modifier and Type Field Description @Valid IlmExceptionSessionContextResponse. exception -
Uses of IlmException in de.aristaflow.ilm.model.runtimeenvironment.guicontext
Subclasses of IlmException in de.aristaflow.ilm.model.runtimeenvironment.guicontext Modifier and Type Class Description classIncompatibleGuiContextExceptionA specific exception indicating that aGUIContextcannot be converted to an ILM compatible one. -
Uses of IlmException in de.aristaflow.ilm.model.scripts
Subclasses of IlmException in de.aristaflow.ilm.model.scripts Modifier and Type Class Description classScriptEnvironmentExceptionclassScriptEvaluationExceptionclassScriptException -
Uses of IlmException in de.aristaflow.ilm.model.worklistmodel
Subclasses of IlmException in de.aristaflow.ilm.model.worklistmodel Modifier and Type Class Description classInvalidWorklistItemStateException -
Uses of IlmException in de.aristaflow.ilm.util
Subclasses of IlmException in de.aristaflow.ilm.util Modifier and Type Class Description classDataSourceExceptionclassInterruptExceptionRenamed to avoid naming conflicts withjava.lang.InterruptedExceptionwhen used without package.classLockExceptionclassParameterExceptionThis exception is used for problems with request parameters.classParameterMissingExceptionThis exception is used for a missing request parameter.classParameterTypeExceptionThis exception is used for request parameters having the wrong type.classPlainTextExceptionThis exception is used for exceptional responses containing content oftext type.classWrappingExceptionThis class is a generic exception that wraps arbitrary exceptions which are not represented as subclasses ofIlmException.Methods in de.aristaflow.ilm.util that return IlmException Modifier and Type Method Description static IlmExceptionTransformation. toIlm(Throwable t)Creates a newIlmExceptionthat is closest to the designated throwable.Methods in de.aristaflow.ilm.util with parameters of type IlmException Modifier and Type Method Description static <T extends Throwable>
TTransformation. fromIlm(IlmException ilm, T af)Takes over the stack trace and the cause (if available) from the designated ilm exception to the designated throwable. -
Uses of IlmException in de.aristaflow.ilm.ws.rest.base.service
Fields in de.aristaflow.ilm.ws.rest.base.service with type parameters of type IlmException Modifier and Type Field Description protected Map<javax.ws.rs.core.Response.Status.Family,Pair<Boolean,Class<? extends IlmException>>>AbstractRestStub.Request. excpRespFamilyThe expected exceptional responses for specific status families.protected Map<javax.ws.rs.core.Response.StatusType,Pair<Boolean,Class<? extends IlmException>>>AbstractRestStub.Request. excpRespStatusThe expected exceptional responses for specific status types.Methods in de.aristaflow.ilm.ws.rest.base.service that return IlmException Modifier and Type Method Description protected IlmExceptionAbstractRestStub.Request. readExceptionalBody(URL url, int respCode, boolean excpCode, String respMsg, InputStream respBody, Charset charset, String expType)Tries to read an exception body from the response of the designated URL having the designated (exceptional) response code and message.IlmExceptionExceptionHandling. wrapUnexpectedException(Throwable cause)Method parameters in de.aristaflow.ilm.ws.rest.base.service with type arguments of type IlmException Modifier and Type Method Description AbstractRestStub.RequestAbstractRestStub.Request. addExceptionalResponse(javax.ws.rs.core.Response.Status.Family family, boolean allowPlainText, Class<? extends IlmException> excpClass)Adds the designated response status and the class as expected exception.AbstractRestStub.RequestAbstractRestStub.Request. addExceptionalResponse(javax.ws.rs.core.Response.StatusType status, boolean allowPlainText, Class<? extends IlmException> excpClass)Adds the designated response status and the class as expected exception.Methods in de.aristaflow.ilm.ws.rest.base.service that throw IlmException Modifier and Type Method Description protected <T> TAbstractRestStub.Request. getResponse(javax.ws.rs.core.Response.StatusType expStatus, boolean allowPlainText, Class<T> expType)Gets the response (body) for this request.protected <T> TAbstractRestStub.Request. getResponse(javax.ws.rs.core.Response.StatusType expStatus, boolean allowPlainText, String expTypeName, Function<InputStream,Pair<T,IOException>> readValue)Gets the response (body) for this request.<T> TAbstractRestStub.Request. getResponse(javax.ws.rs.core.Response.StatusType expStatus, com.fasterxml.jackson.core.type.TypeReference<T> expType)Gets the response (body) for this request.<T> TAbstractRestStub.Request. getResponse(javax.ws.rs.core.Response.StatusType expStatus, Class<T> expType)Gets the response (body) for this request.StringAbstractRestStub.Request. getStringResponse(javax.ws.rs.core.Response.StatusType expStatus)Gets the string response for this request.voidAbstractRestStub.Request. getVoidResponse()Just waits for the void response, i.
-