Skip to content
Snippets Groups Projects
Commit 8e670df6 authored by Dominik Pilar's avatar Dominik Pilar
Browse files

Added elasticsearch audit configuration.

parent 10885fff
No related branches found
No related tags found
2 merge requests!14Resolve "Integrate the necessary parts of the kypo2-training",!9Resolve "Create missing service classes"
This commit is part of merge request !9. Comments created here will be created in the context of that merge request.
package cz.muni.ics.kypo.training.adaptive;
import cz.muni.ics.kypo.commons.startup.config.MicroserviceRegistrationConfiguration;
import cz.muni.ics.kypo.training.adaptive.config.ObjectMapperConfigElasticsearch;
import cz.muni.ics.kypo.training.adaptive.config.ValidationMessagesConfig;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Import;
@SpringBootApplication
@Import(value = {MicroserviceRegistrationConfiguration.class})
@Import(value = {
MicroserviceRegistrationConfiguration.class,
ValidationMessagesConfig.class,
ObjectMapperConfigElasticsearch.class
})
public class DemoApplication {
public static void main(String[] args) {
......
package cz.muni.csirt.kypo.elasticsearch.service.config;
package cz.muni.ics.kypo.training.adaptive.config;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.PropertyNamingStrategy;
......
package cz.muni.ics.kypo.training.adaptive.exceptions;
/**
* The type Elasticsearch training service layer exception.
*/
public class ElasticsearchTrainingServiceLayerException extends RuntimeException {
/**
* Instantiates a new Elasticsearch training service layer exception.
*/
public ElasticsearchTrainingServiceLayerException() {
}
/**
* Instantiates a new Elasticsearch training service layer exception.
*
* @param message the message
*/
public ElasticsearchTrainingServiceLayerException(String message) {
super(message);
}
/**
* Instantiates a new Elasticsearch training service layer exception.
*
* @param message the message
* @param ex the exception
*/
public ElasticsearchTrainingServiceLayerException(String message, Throwable ex) {
super(message, ex);
}
/**
* Instantiates a new Elasticsearch training service layer exception.
*
* @param ex the exception
*/
public ElasticsearchTrainingServiceLayerException(Throwable ex) {
super(ex);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment