in wilma-application/modules/wilma-webapp/src/main/java/com/epam/wilma/webapp/config/servlet/stub/resource/StubResourceHandlerServlet.java [102:118]
private Path getResourcePath(final String type) {
Path path = null;
if (CONDITION_CHECKER.equals(type)) {
path = stubResourcePathProvider.getConditionCheckerPath();
} else if (RESPONSE_FORMATTER.equals(type)) {
path = stubResourcePathProvider.getResponseFormatterPath();
} else if (TEMPLATE.equals(type)) {
path = stubResourcePathProvider.getTemplatesPath();
} else if (INTERCEPTOR.equals(type)) {
path = stubResourcePathProvider.getInterceptorPath();
} else if (JAR.equals(type)) {
path = stubResourcePathProvider.getJarPath();
} else if (SEQUENCE_HANDLER.equals(type)) {
path = stubResourcePathProvider.getSequenceHandlerPath();
}
return path;
}