C D E G I J L M N O P R S T U V 
All Classes All Packages

C

cancelJsExecution(Integer) - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecutionController
Cancel execution by id.
CANCELLED - com.anton.martynenko.jswrapper.jsexecution.enums.Status
JsExecution is cancelled.
com.anton.martynenko.jswrapper - package com.anton.martynenko.jswrapper
Root project's package.
com.anton.martynenko.jswrapper.jsexecution - package com.anton.martynenko.jswrapper.jsexecution
This package contains files related to JS code execution feature.
com.anton.martynenko.jswrapper.jsexecution.constants - package com.anton.martynenko.jswrapper.jsexecution.constants
This package contains constants used in JS execution feature.
com.anton.martynenko.jswrapper.jsexecution.enums - package com.anton.martynenko.jswrapper.jsexecution.enums
This package contains enum classes used in JS execution feature.
com.anton.martynenko.jswrapper.jsexecution.problem - package com.anton.martynenko.jswrapper.jsexecution.problem
This package contains Problem extensions used in JS execution feature and related files.
CREATE_JS_EXECUTION_REQUEST_BODY_EXAMPLE - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.JsonExamples
Json example of JsExecution object used as post query's body.
CREATED - com.anton.martynenko.jswrapper.jsexecution.enums.Status
JsExecution object is created.
createNew(JsExecutionDTO) - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecutionController
Runs new JS code execution.

D

deleteJsExecution(Integer) - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecutionController
Delete JsExecution by id.
deserialize(JsonParser, DeserializationContext) - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecutionDTODeserializer
 

E

ERROR_LOG - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.Property
jsexecution/{id}/errorlog endpoint.
EXCEPTION_INFO - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.Property
jsexecution/{id}/exceptioninfo endpoint.
ExceptionHandler - Class in com.anton.martynenko.jswrapper.jsexecution.problem
Universal exception handler.
ExceptionHandler() - Constructor for class com.anton.martynenko.jswrapper.jsexecution.problem.ExceptionHandler
 
EXECUTION_LOG - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.Property
jsexecution/{id}/executionlog endpoint.

G

getDetails(Integer, String) - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecutionController
Returns script body plain text of JsExecution by id.
getId() - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecution
Id getter.
getId() - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecutionDTO
Getter for property 'id'.
getOne(Integer) - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecutionController
Returns JsExecution by id.
getStatus() - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecution
Status getter.

I

ID - com.anton.martynenko.jswrapper.jsexecution.enums.SortBy
ID property for sorting cases.

J

JS_EXECUTION_ARRAY_EXAMPLE - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.JsonExamples
Json example of JsExecution objects array .
JS_EXECUTION_CAN_NOT_BE_CANCELLED_EXAMPLE - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.JsonExamples
Json example of JsExecutionCanNotBeCancelledProblem object .
JS_EXECUTION_CANCELLED_EXAMPLE - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.JsonExamples
Json example of cancelled JsExecution object .
JS_EXECUTION_NOT_FOUND_EXAMPLE - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.JsonExamples
Json example of JsExecutionNotFoundProblem object .
JS_EXECUTION_SUBMITTED_EXAMPLE - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.JsonExamples
Json example of submitted JsExecution object .
JS_EXECUTION_SUCCESS_EXAMPLE - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.JsonExamples
Json example of success JsExecution object .
JsExecution - Class in com.anton.martynenko.jswrapper.jsexecution
Object representing execution of JS code fragment with details.
JsExecution(String) - Constructor for class com.anton.martynenko.jswrapper.jsexecution.JsExecution
Basic constructor.
JsExecutionCanNotBeCancelledProblem - Exception in com.anton.martynenko.jswrapper.jsexecution.problem
Custom AbstractThrowableProblem's extension .
JsExecutionCanNotBeCancelledProblem(String) - Constructor for exception com.anton.martynenko.jswrapper.jsexecution.problem.JsExecutionCanNotBeCancelledProblem
Custom constructor which should be used when code trying to cancel not cancelable object .
JsExecutionController - Class in com.anton.martynenko.jswrapper.jsexecution
Main Spring MVC REST-controller.
JsExecutionController() - Constructor for class com.anton.martynenko.jswrapper.jsexecution.JsExecutionController
 
JsExecutionDTO - Class in com.anton.martynenko.jswrapper.jsexecution
Data transfer object representing immutable thread-safe snapshot of JsExecution object.
JsExecutionDTODeserializer - Class in com.anton.martynenko.jswrapper.jsexecution
JsExecution deserializer.
JsExecutionDTODeserializer() - Constructor for class com.anton.martynenko.jswrapper.jsexecution.JsExecutionDTODeserializer
 
JsExecutionDTOModelAssembler - Class in com.anton.martynenko.jswrapper.jsexecution
RepresentationModelAssembler bean.
JsExecutionDTOModelAssembler() - Constructor for class com.anton.martynenko.jswrapper.jsexecution.JsExecutionDTOModelAssembler
 
JsExecutionFactory - Class in com.anton.martynenko.jswrapper.jsexecution
Simple factory component.
JsExecutionFactory() - Constructor for class com.anton.martynenko.jswrapper.jsexecution.JsExecutionFactory
 
JsExecutionNotFoundProblem - Exception in com.anton.martynenko.jswrapper.jsexecution.problem
Custom AbstractThrowableProblem's extension .
JsExecutionNotFoundProblem(Integer) - Constructor for exception com.anton.martynenko.jswrapper.jsexecution.problem.JsExecutionNotFoundProblem
Custom constructor which should be used when JsExecution is not found.
JsExecutionService - Class in com.anton.martynenko.jswrapper.jsexecution
Service layer component for JS code executions business logic.
JsExecutionService() - Constructor for class com.anton.martynenko.jswrapper.jsexecution.JsExecutionService
 
JsonExamples - Class in com.anton.martynenko.jswrapper.jsexecution.constants
Response json body example constants.
JsWrapperServiceApplication - Class in com.anton.martynenko.jswrapper
Main class used to configure, run spring boot application, and prepare beans.
JsWrapperServiceApplication() - Constructor for class com.anton.martynenko.jswrapper.JsWrapperServiceApplication
 

L

listAll(Optional<Status>, Optional<SortBy>) - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecutionController
Returns JsExecution collection.

M

main(String[]) - Static method in class com.anton.martynenko.jswrapper.JsWrapperServiceApplication
Application entry point.

N

NO_SUCH_JS_EXECUTION_PROPERTY_EXAMPLE - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.JsonExamples
Json example of NoSuchPropertyProblem object .
NoSuchPropertyProblem - Exception in com.anton.martynenko.jswrapper.jsexecution.problem
Custom AbstractThrowableProblem's extension .
NoSuchPropertyProblem(String) - Constructor for exception com.anton.martynenko.jswrapper.jsexecution.problem.NoSuchPropertyProblem
Custom constructor which should be used when JsExecution has no requested property .

O

objectMapper() - Method in class com.anton.martynenko.jswrapper.JsWrapperServiceApplication
Prepare basic Jackson mapper to be injected as bean.

P

PLAIN_TEXT_EXAMPLE - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.JsonExamples
Plain text response example .
Property - Class in com.anton.martynenko.jswrapper.jsexecution.constants
Properties of jsExecution and it's endpoints.

R

REJECTED - com.anton.martynenko.jswrapper.jsexecution.enums.Status
JsExecution is rejected because of invalid code.
run() - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecution
 
RUNNING - com.anton.martynenko.jswrapper.jsexecution.enums.Status
JsExecution is running.

S

SCHEDULED_TIME - com.anton.martynenko.jswrapper.jsexecution.enums.SortBy
Scheduled time property for sorting cases.
SCRIPT_BODY - Static variable in class com.anton.martynenko.jswrapper.jsexecution.constants.Property
jsexecution/{id}/scriptbody endpoint.
setId(int) - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecution
Setter for property 'id'.
setStatus(Status) - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecution
Setter for property 'status'.
SortBy - Enum in com.anton.martynenko.jswrapper.jsexecution.enums
Sorting criteria enumeration.
Status - Enum in com.anton.martynenko.jswrapper.jsexecution.enums
JsExecution statuses.
storage() - Method in class com.anton.martynenko.jswrapper.JsWrapperServiceApplication
Runtime thread-safe executions object storage.
SUBMITTED - com.anton.martynenko.jswrapper.jsexecution.enums.Status
JsExecution object is submitted to pool.
SUCCESSFUL - com.anton.martynenko.jswrapper.jsexecution.enums.Status
JsExecution finished successfully.

T

taskExecutor() - Method in class com.anton.martynenko.jswrapper.JsWrapperServiceApplication
Prepare Spring Boot embedded task executor to be injected as bean.
toModel(JsExecutionDTO) - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecutionDTOModelAssembler
 
toString() - Method in enum com.anton.martynenko.jswrapper.jsexecution.enums.Status
 
toString() - Method in class com.anton.martynenko.jswrapper.jsexecution.JsExecution
 

U

UNSUCCESSFUL - com.anton.martynenko.jswrapper.jsexecution.enums.Status
JsExecution finished unsuccessfully (crushed or stopped manually).

V

valueOf(String) - Static method in enum com.anton.martynenko.jswrapper.jsexecution.enums.SortBy
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.anton.martynenko.jswrapper.jsexecution.enums.Status
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.anton.martynenko.jswrapper.jsexecution.enums.SortBy
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.anton.martynenko.jswrapper.jsexecution.enums.Status
Returns an array containing the constants of this enum type, in the order they are declared.
C D E G I J L M N O P R S T U V 
All Classes All Packages