SYMBOL INDEX (1360 symbols across 163 files) FILE: common/src/main/java/com/kumuluz/ee/common/Component.java type Component (line 30) | public interface Component { method init (line 32) | void init(KumuluzServerWrapper server, EeConfig eeConfig); method load (line 34) | void load(); FILE: common/src/main/java/com/kumuluz/ee/common/ConfigExtension.java type ConfigExtension (line 32) | public interface ConfigExtension extends Extension { method getConfigurationSource (line 37) | @Deprecated method getConfigurationSources (line 42) | default List getConfigurationSources() { FILE: common/src/main/java/com/kumuluz/ee/common/Extension.java type Extension (line 33) | public interface Extension { method load (line 35) | void load(); method init (line 37) | void init(KumuluzServerWrapper server, EeConfig eeConfig); method isEnabled (line 39) | default boolean isEnabled() { method scanLibraries (line 43) | default List scanLibraries() { FILE: common/src/main/java/com/kumuluz/ee/common/KumuluzServer.java type KumuluzServer (line 34) | public interface KumuluzServer { method initServer (line 36) | void initServer(); method startServer (line 38) | void startServer(); method stopServer (line 40) | void stopServer(); method setServerConfig (line 42) | void setServerConfig(ServerConfig serverConfig); method getServerConfig (line 44) | ServerConfig getServerConfig(); FILE: common/src/main/java/com/kumuluz/ee/common/LogsExtension.java type LogsExtension (line 31) | public interface LogsExtension extends Extension { method getJavaUtilLogManagerClass (line 33) | Optional> getJavaUtilLogManagerClass(); method getJavaUtilLogHandler (line 35) | Optional getJavaUtilLogHandler(); FILE: common/src/main/java/com/kumuluz/ee/common/ServletServer.java type ServletServer (line 36) | public interface ServletServer extends KumuluzServer { method registerServlet (line 38) | void registerServlet(Class servletClass, String map... method registerServlet (line 40) | void registerServlet(Class servletClass, String map... method registerServlet (line 42) | void registerServlet(Class servletClass, String map... method registerListener (line 44) | void registerListener(EventListener listener); method registerFilter (line 46) | void registerFilter(Class filterClass, String pathSp... method registerFilter (line 48) | void registerFilter(Class filterClass, String pathSp... method registerFilter (line 50) | void registerFilter(Class filterClass, String pathSp... method registerFilter (line 52) | void registerFilter(Class filterClass, String pathSp... method registerResource (line 54) | void registerResource(Object o, String jndiName); method registerDataSource (line 56) | void registerDataSource(DataSource ds, String jndiName); method registerTransactionManager (line 58) | void registerTransactionManager(UserTransaction userTransaction); method initWebContext (line 60) | void initWebContext(List scanLibraries); method getRegisteredServlets (line 62) | List getRegisteredServlets(); FILE: common/src/main/java/com/kumuluz/ee/common/attributes/ClasspathAttributes.java class ClasspathAttributes (line 27) | public class ClasspathAttributes { FILE: common/src/main/java/com/kumuluz/ee/common/config/DataSourceConfig.java class DataSourceConfig (line 31) | public class DataSourceConfig { class Builder (line 33) | public static class Builder { method jndiName (line 46) | public Builder jndiName(String jndiName) { method driverClass (line 51) | public Builder driverClass(String driverClass) { method dataSourceClass (line 56) | public Builder dataSourceClass(String dataSourceClass) { method connectionUrl (line 61) | public Builder connectionUrl(String connectionUrl) { method username (line 66) | public Builder username(String username) { method password (line 71) | public Builder password(String password) { method pool (line 76) | public Builder pool(DataSourcePoolConfig.Builder pool) { method prop (line 81) | public Builder prop(String key, String value) { method build (line 86) | public DataSourceConfig build() { method DataSourceConfig (line 115) | private DataSourceConfig() { method getJndiName (line 118) | public String getJndiName() { method getDriverClass (line 122) | public String getDriverClass() { method getDataSourceClass (line 126) | public String getDataSourceClass() { method getConnectionUrl (line 130) | public String getConnectionUrl() { method getUsername (line 134) | public String getUsername() { method getPassword (line 138) | public String getPassword() { method getPool (line 142) | public DataSourcePoolConfig getPool() { method getProps (line 146) | public Map getProps() { FILE: common/src/main/java/com/kumuluz/ee/common/config/DataSourcePoolConfig.java class DataSourcePoolConfig (line 27) | public class DataSourcePoolConfig { class Builder (line 29) | public static class Builder { method autoCommit (line 69) | public Builder autoCommit(Boolean autoCommit) { method flushOnClose (line 74) | public Builder flushOnClose(Boolean flushOnClose) { method connectionTimeout (line 79) | public Builder connectionTimeout(Long connectionTimeout) { method idleTimeout (line 84) | public Builder idleTimeout(Long idleTimeout) { method maxLifetime (line 89) | public Builder maxLifetime(Long maxLifetime) { method minIdle (line 94) | @Deprecated method initialSize (line 100) | public Builder initialSize(Integer initialSize) { method minSize (line 105) | public Builder minSize(Integer minSize) { method maxSize (line 110) | public Builder maxSize(Integer maxSize) { method name (line 115) | @Deprecated method initializationFailTimeout (line 121) | @Deprecated method isolateInternalQueries (line 127) | @Deprecated method allowPoolSuspension (line 133) | @Deprecated method readOnly (line 139) | @Deprecated method registerMbeans (line 145) | @Deprecated method connectionInitSql (line 151) | public Builder connectionInitSql(String connectionInitSql) { method connectionValidSql (line 156) | public Builder connectionValidSql(String connectionValidSql) { method transactionIsolation (line 161) | public Builder transactionIsolation(String transactionIsolation) { method validationTimeout (line 166) | public Builder validationTimeout(Long validationTimeout) { method leakDetectionThreshold (line 171) | public Builder leakDetectionThreshold(Long leakDetectionThreshold) { method idleValidationTimeout (line 176) | public Builder idleValidationTimeout (Long idleValidationTimeout ) { method build (line 181) | public DataSourcePoolConfig build() { method DataSourcePoolConfig (line 248) | private DataSourcePoolConfig() { method getFlushOnClose (line 251) | public Boolean getFlushOnClose() { method getAutoCommit (line 255) | public Boolean getAutoCommit() { method getConnectionTimeout (line 259) | public Long getConnectionTimeout() { method getIdleTimeout (line 263) | public Long getIdleTimeout() { method getMaxLifetime (line 267) | public Long getMaxLifetime() { method getMinIdle (line 271) | @Deprecated method getInitialSize (line 276) | public Integer getInitialSize() { method getMinSize (line 280) | public Integer getMinSize() { method getMaxSize (line 284) | public Integer getMaxSize() { method getName (line 288) | @Deprecated method getInitializationFailTimeout (line 293) | @Deprecated method getIsolateInternalQueries (line 298) | @Deprecated method getAllowPoolSuspension (line 303) | @Deprecated method getReadOnly (line 308) | @Deprecated method getRegisterMbeans (line 313) | @Deprecated method getConnectionInitSql (line 318) | public String getConnectionInitSql() { method getConnectionValidSql (line 322) | public String getConnectionValidSql() { method getTransactionIsolation (line 326) | public String getTransactionIsolation() { method getValidationTimeout (line 330) | public Long getValidationTimeout() { method getLeakDetectionThreshold (line 334) | public Long getLeakDetectionThreshold() { method getIdleValidationTimeout (line 338) | public Long getIdleValidationTimeout() { FILE: common/src/main/java/com/kumuluz/ee/common/config/DevConfig.java class DevConfig (line 29) | public class DevConfig { class Builder (line 31) | public static class Builder { method scanLibraries (line 37) | public Builder scanLibraries(List scanLibraries) { method webappDir (line 42) | public Builder webappDir(String webappDir) { method runningTests (line 47) | public Builder runningTests(Boolean runningTests) { method build (line 52) | public DevConfig build() { method DevConfig (line 67) | private DevConfig() { method getWebappDir (line 70) | public String getWebappDir() { method getScanLibraries (line 74) | public List getScanLibraries() { method getRunningTests (line 78) | public Boolean getRunningTests() { FILE: common/src/main/java/com/kumuluz/ee/common/config/EeConfig.java class EeConfig (line 32) | public class EeConfig { class Builder (line 34) | public static class Builder { method name (line 47) | public Builder name(String name) { method version (line 52) | public Builder version(String version) { method debug (line 57) | public Builder debug(Boolean debug) { method env (line 62) | public Builder env(EnvConfig.Builder env) { method dev (line 67) | public Builder dev(DevConfig.Builder dev) { method server (line 72) | public Builder server(ServerConfig.Builder server) { method datasource (line 77) | public Builder datasource(DataSourceConfig.Builder datasource) { method xaDatasource (line 82) | public Builder xaDatasource(XaDataSourceConfig.Builder xaDatasource) { method mailSession (line 87) | public Builder mailSession(MailSessionConfig.Builder mailSession) { method build (line 92) | public EeConfig build() { method EeConfig (line 131) | private EeConfig() { method initialize (line 134) | public static void initialize(EeConfig eeConfig) { method getInstance (line 143) | public static EeConfig getInstance() { method getName (line 152) | public String getName() { method getVersion (line 156) | public String getVersion() { method getDebug (line 160) | public Boolean getDebug() { method getEnv (line 164) | public EnvConfig getEnv() { method getDev (line 168) | public DevConfig getDev() { method getServer (line 172) | public ServerConfig getServer() { method getDatasources (line 176) | public List getDatasources() { method getXaDatasources (line 180) | public List getXaDatasources() { method getMailSessions (line 184) | public List getMailSessions() { FILE: common/src/main/java/com/kumuluz/ee/common/config/EnvConfig.java class EnvConfig (line 27) | public class EnvConfig { class Builder (line 29) | public static class Builder { method name (line 33) | public Builder name(String name) { method build (line 38) | public EnvConfig build() { method EnvConfig (line 49) | private EnvConfig() { method getName (line 52) | public String getName() { FILE: common/src/main/java/com/kumuluz/ee/common/config/GzipConfig.java class GzipConfig (line 25) | public class GzipConfig { class Builder (line 27) | public static class Builder { method enabled (line 38) | public Builder enabled(Boolean enabled) { method minGzipSize (line 43) | public Builder minGzipSize(Integer minGzipSize) { method includedMethods (line 48) | public Builder includedMethods(List includedMethods) { method includedMimeTypes (line 53) | public Builder includedMimeTypes(List includedMimeTypes) { method excludedMimeTypes (line 58) | public Builder excludedMimeTypes(List excludedMimeTypes) { method excludedAgentPatterns (line 63) | public Builder excludedAgentPatterns(List excludedAgentPatte... method excludedPaths (line 68) | public Builder excludedPaths(List excludedPaths) { method includedPaths (line 73) | public Builder includedPaths(List includedPaths) { method build (line 78) | public GzipConfig build() { method GzipConfig (line 103) | private GzipConfig() { method getEnabled (line 106) | public Boolean getEnabled() { method setEnabled (line 110) | public void setEnabled(Boolean enabled) { method getMinGzipSize (line 114) | public Integer getMinGzipSize() { method setMinGzipSize (line 118) | public void setMinGzipSize(Integer minGzipSize) { method getIncludedMethods (line 122) | public List getIncludedMethods() { method setIncludedMethods (line 126) | public void setIncludedMethods(List includedMethods) { method getIncludedMimeTypes (line 130) | public List getIncludedMimeTypes() { method setIncludedMimeTypes (line 134) | public void setIncludedMimeTypes(List includedMimeTypes) { method getExcludedMimeTypes (line 138) | public List getExcludedMimeTypes() { method setExcludedMimeTypes (line 142) | public void setExcludedMimeTypes(List excludedMimeTypes) { method getExcludedPaths (line 146) | public List getExcludedPaths() { method setExcludedPaths (line 150) | public void setExcludedPaths(List excludedPaths) { method getIncludedPaths (line 154) | public List getIncludedPaths() { method setIncludedPaths (line 158) | public void setIncludedPaths(List includedPaths) { FILE: common/src/main/java/com/kumuluz/ee/common/config/MailServiceConfig.java class MailServiceConfig (line 3) | public class MailServiceConfig { class Builder (line 5) | public static class Builder { method protocol (line 16) | public Builder protocol(String protocol) { method host (line 21) | public Builder host(String host) { method port (line 26) | public Builder port(Integer port) { method starttls (line 31) | public Builder starttls(Boolean starttls) { method username (line 36) | public Builder username(String username) { method password (line 41) | public Builder password(String password) { method connectionTimeout (line 46) | public Builder connectionTimeout(Long connectionTimeout) { method timeout (line 51) | public Builder timeout(Long timeout) { method build (line 56) | public MailServiceConfig build() { method MailServiceConfig (line 81) | private MailServiceConfig(){ method getProtocol (line 84) | public String getProtocol() { method getHost (line 88) | public String getHost() { method getPort (line 92) | public Integer getPort() { method getStarttls (line 96) | public Boolean getStarttls() { method getUsername (line 100) | public String getUsername() { method getPassword (line 104) | public String getPassword() { method getConnectionTimeout (line 108) | public Long getConnectionTimeout() { method getTimeout (line 112) | public Long getTimeout() { FILE: common/src/main/java/com/kumuluz/ee/common/config/MailSessionConfig.java class MailSessionConfig (line 7) | public class MailSessionConfig { class Builder (line 9) | public static class Builder { method jndiName (line 19) | public Builder jndiName(String jndiName) { method debug (line 24) | public Builder debug(Boolean debug) { method transport (line 29) | public Builder transport(MailServiceConfig.Builder transport) { method store (line 34) | public Builder store(MailServiceConfig.Builder store) { method prop (line 39) | public Builder prop(String key, String value) { method build (line 44) | public MailSessionConfig build() { method MailSessionConfig (line 67) | private MailSessionConfig() { method getJndiName (line 71) | public String getJndiName() { method getDebug (line 75) | public Boolean getDebug() { method getTransport (line 79) | public MailServiceConfig getTransport() { method getStore (line 83) | public MailServiceConfig getStore() { method getProps (line 87) | public Map getProps() { FILE: common/src/main/java/com/kumuluz/ee/common/config/ServerConfig.java class ServerConfig (line 27) | public class ServerConfig { class Builder (line 29) | public static class Builder { method baseUrl (line 46) | public Builder baseUrl(String baseUrl) { method contextPath (line 51) | public Builder contextPath(String contextPath) { method dirBrowsing (line 56) | public Builder dirBrowsing(Boolean dirBrowsing) { method etags (line 61) | public Builder etags(Boolean etags) { method minThreads (line 66) | public Builder minThreads(Integer minThreads) { method maxThreads (line 71) | public Builder maxThreads(Integer maxThreads) { method forceHttps (line 76) | public Builder forceHttps(Boolean forceHttps) { method http (line 81) | public Builder http(ServerConnectorConfig.Builder http) { method https (line 86) | public Builder https(ServerConnectorConfig.Builder https) { method gzip (line 91) | public Builder gzip(GzipConfig.Builder gzip) { method showServerInfo (line 96) | public Builder showServerInfo(Boolean showServerInfo) { method forwardStartupException (line 101) | public Builder forwardStartupException(Boolean forwardStartupExcepti... method build (line 106) | public ServerConfig build() { method ServerConfig (line 143) | private ServerConfig() { method getBaseUrl (line 146) | public String getBaseUrl() { method getContextPath (line 150) | public String getContextPath() { method getDirBrowsing (line 154) | public Boolean getDirBrowsing() { method getEtags (line 158) | public Boolean getEtags() { method getMinThreads (line 162) | public Integer getMinThreads() { method getMaxThreads (line 166) | public Integer getMaxThreads() { method getForceHttps (line 170) | public Boolean getForceHttps() { method getShowServerInfo (line 174) | public Boolean getShowServerInfo(){ method getForwardStartupException (line 178) | public Boolean getForwardStartupException() { method getHttp (line 182) | public ServerConnectorConfig getHttp() { method getHttps (line 186) | public ServerConnectorConfig getHttps() { method getGzip (line 190) | public GzipConfig getGzip() { FILE: common/src/main/java/com/kumuluz/ee/common/config/ServerConnectorConfig.java class ServerConnectorConfig (line 30) | public class ServerConnectorConfig { class Builder (line 35) | public static class Builder { method port (line 53) | public Builder port(Integer port) { method address (line 58) | public Builder address(String address) { method enabled (line 63) | public Builder enabled(Boolean enabled) { method http2 (line 68) | public Builder http2(Boolean http2) { method proxyForwarding (line 73) | public Builder proxyForwarding(Boolean proxyForwarding) { method requestHeaderSize (line 78) | public Builder requestHeaderSize(Integer requestHeaderSize) { method responseHeaderSize (line 83) | public Builder responseHeaderSize(Integer responseHeaderSize) { method idleTimeout (line 88) | public Builder idleTimeout(Integer idleTimeout) { method keystorePath (line 93) | public Builder keystorePath(String keystorePath) { method keystorePassword (line 98) | public Builder keystorePassword(String keystorePassword) { method keyAlias (line 103) | public Builder keyAlias(String keyAlias) { method keyPassword (line 108) | public Builder keyPassword(String keyPassword) { method sslProtocols (line 113) | public Builder sslProtocols(List sslProtocols) { method sslCiphers (line 118) | public Builder sslCiphers(List sslCiphers) { method build (line 123) | public ServerConnectorConfig build() { method ServerConnectorConfig (line 161) | private ServerConnectorConfig() { method getPort (line 164) | public Integer getPort() { method getAddress (line 168) | public String getAddress() { method getEnabled (line 172) | public Boolean getEnabled() { method getHttp2 (line 176) | public Boolean getHttp2() { method getProxyForwarding (line 180) | public Boolean getProxyForwarding() { method getRequestHeaderSize (line 184) | public Integer getRequestHeaderSize() { method getResponseHeaderSize (line 188) | public Integer getResponseHeaderSize() { method getIdleTimeout (line 192) | public Integer getIdleTimeout() { method getKeystorePath (line 196) | public String getKeystorePath() { method getKeystorePassword (line 200) | public String getKeystorePassword() { method getKeyAlias (line 204) | public String getKeyAlias() { method getKeyPassword (line 208) | public String getKeyPassword() { method getSslProtocols (line 212) | public List getSslProtocols() { method getSslCiphers (line 216) | public List getSslCiphers() { FILE: common/src/main/java/com/kumuluz/ee/common/config/XaDataSourceConfig.java class XaDataSourceConfig (line 31) | public class XaDataSourceConfig { class Builder (line 33) | public static class Builder { method jndiName (line 44) | public Builder jndiName(String jndiName) { method xaDatasourceClass (line 49) | public Builder xaDatasourceClass(String xaDatasourceClass) { method username (line 54) | public Builder username(String username) { method password (line 59) | public Builder password(String password) { method pool (line 64) | public Builder pool(DataSourcePoolConfig.Builder pool) { method prop (line 69) | public Builder prop(String key, String value) { method build (line 74) | public XaDataSourceConfig build() { method XaDataSourceConfig (line 99) | private XaDataSourceConfig() { method getJndiName (line 102) | public String getJndiName() { method getXaDatasourceClass (line 106) | public String getXaDatasourceClass() { method getUsername (line 110) | public String getUsername() { method getPassword (line 114) | public String getPassword() { method getPool (line 118) | public DataSourcePoolConfig getPool() { method getProps (line 122) | public Map getProps() { FILE: common/src/main/java/com/kumuluz/ee/common/datasources/NonJtaXAConnectionWrapper.java class NonJtaXAConnectionWrapper (line 34) | @Deprecated method NonJtaXAConnectionWrapper (line 41) | public NonJtaXAConnectionWrapper(XAConnection xaConnection) { method createStatement (line 45) | @Override method prepareStatement (line 53) | @Override method prepareCall (line 61) | @Override method nativeSQL (line 69) | @Override method setAutoCommit (line 77) | @Override method getAutoCommit (line 85) | @Override method commit (line 93) | @Override method rollback (line 101) | @Override method close (line 109) | @Override method isClosed (line 123) | @Override method getMetaData (line 129) | @Override method setReadOnly (line 137) | @Override method isReadOnly (line 145) | @Override method setCatalog (line 153) | @Override method getCatalog (line 161) | @Override method setTransactionIsolation (line 169) | @Override method getTransactionIsolation (line 177) | @Override method getWarnings (line 185) | @Override method clearWarnings (line 193) | @Override method createStatement (line 201) | @Override method prepareStatement (line 209) | @Override method prepareCall (line 217) | @Override method getTypeMap (line 225) | @Override method setTypeMap (line 233) | @Override method setHoldability (line 241) | @Override method getHoldability (line 249) | @Override method setSavepoint (line 257) | @Override method setSavepoint (line 265) | @Override method rollback (line 273) | @Override method releaseSavepoint (line 281) | @Override method createStatement (line 289) | @Override method prepareStatement (line 297) | @Override method prepareCall (line 305) | @Override method prepareStatement (line 313) | @Override method prepareStatement (line 321) | @Override method prepareStatement (line 329) | @Override method createClob (line 337) | @Override method createBlob (line 345) | @Override method createNClob (line 353) | @Override method createSQLXML (line 361) | @Override method isValid (line 369) | @Override method setClientInfo (line 377) | @Override method setClientInfo (line 389) | @Override method getClientInfo (line 401) | @Override method getClientInfo (line 409) | @Override method createArrayOf (line 417) | @Override method createStruct (line 425) | @Override method setSchema (line 433) | @Override method getSchema (line 441) | @Override method abort (line 449) | @Override method setNetworkTimeout (line 457) | @Override method getNetworkTimeout (line 465) | @Override method unwrap (line 473) | @Override method isWrapperFor (line 481) | @Override method checkIfValid (line 489) | private void checkIfValid() throws SQLException { FILE: common/src/main/java/com/kumuluz/ee/common/datasources/NonJtaXADataSourceWrapper.java class NonJtaXADataSourceWrapper (line 37) | @Deprecated method NonJtaXADataSourceWrapper (line 42) | public NonJtaXADataSourceWrapper(XADataSource xaDataSource) { method getConnection (line 46) | @Override method getConnection (line 56) | @Override method unwrap (line 66) | @Override method isWrapperFor (line 80) | @Override method getLogWriter (line 94) | @Override method setLogWriter (line 102) | @Override method setLoginTimeout (line 110) | @Override method getLoginTimeout (line 118) | @Override method getParentLogger (line 126) | @Override method checkIfValid (line 134) | protected void checkIfValid() { FILE: common/src/main/java/com/kumuluz/ee/common/datasources/XADataSourceBuilder.java class XADataSourceBuilder (line 34) | @Deprecated method XADataSourceBuilder (line 39) | public XADataSourceBuilder(XaDataSourceConfig xaDataSourceConfig) { method constructXaDataSource (line 43) | public XADataSource constructXaDataSource() { method createXaDataSourceObject (line 65) | private XADataSource createXaDataSourceObject() { method setProperty (line 78) | private void setProperty(Object object, String name, String value) { FILE: common/src/main/java/com/kumuluz/ee/common/datasources/XADataSourceWrapper.java type XADataSourceWrapper (line 29) | @Deprecated FILE: common/src/main/java/com/kumuluz/ee/common/dependencies/EeComponentType.java type EeComponentType (line 27) | public enum EeComponentType { method EeComponentType (line 63) | EeComponentType(String name) { method getName (line 67) | public String getName() { FILE: common/src/main/java/com/kumuluz/ee/common/dependencies/EeExtensionGroup.java class EeExtensionGroup (line 3) | public class EeExtensionGroup { FILE: common/src/main/java/com/kumuluz/ee/common/exceptions/ComponentsException.java class ComponentsException (line 27) | public class ComponentsException extends RuntimeException { method ComponentsException (line 29) | public ComponentsException(String msg) { method ComponentsException (line 34) | public ComponentsException(String msg, Throwable cause) { FILE: common/src/main/java/com/kumuluz/ee/common/exceptions/KumuluzServerException.java class KumuluzServerException (line 27) | public class KumuluzServerException extends RuntimeException { method KumuluzServerException (line 29) | public KumuluzServerException(String msg) { method KumuluzServerException (line 34) | public KumuluzServerException(String msg, Throwable cause) { FILE: common/src/main/java/com/kumuluz/ee/common/filters/PoweredByFilter.java class PoweredByFilter (line 27) | public class PoweredByFilter implements Filter { method init (line 31) | @Override method doFilter (line 36) | @Override method destroy (line 46) | @Override FILE: common/src/main/java/com/kumuluz/ee/common/runtime/EeRuntime.java class EeRuntime (line 29) | public class EeRuntime { method EeRuntime (line 35) | protected EeRuntime() { method EeRuntime (line 38) | private EeRuntime(EeRuntimeInternal internalRuntime) { method initialize (line 42) | public static void initialize(EeRuntimeInternal runtimeInternal) { method getInstance (line 51) | public static EeRuntime getInstance() { method getInstanceId (line 60) | public String getInstanceId() { method getVersion (line 64) | public String getVersion() { method getEeComponents (line 68) | public List getEeComponents() { method getEeExtensions (line 72) | public List getEeExtensions() { FILE: common/src/main/java/com/kumuluz/ee/common/runtime/EeRuntimeComponent.java class EeRuntimeComponent (line 29) | public class EeRuntimeComponent { method EeRuntimeComponent (line 34) | public EeRuntimeComponent(EeComponentType type, String implementationN... method getType (line 39) | public EeComponentType getType() { method getImplementationName (line 43) | public String getImplementationName() { FILE: common/src/main/java/com/kumuluz/ee/common/runtime/EeRuntimeExtension.java class EeRuntimeExtension (line 27) | public class EeRuntimeExtension { method EeRuntimeExtension (line 32) | public EeRuntimeExtension(String group, String implementationName) { method getGroup (line 37) | public String getGroup() { method getImplementationName (line 41) | public String getImplementationName() { FILE: common/src/main/java/com/kumuluz/ee/common/runtime/EeRuntimeInternal.java class EeRuntimeInternal (line 32) | public class EeRuntimeInternal { method getInstanceId (line 39) | public String getInstanceId() { method setInstanceId (line 43) | public void setInstanceId(String instanceId) { method getVersion (line 47) | public String getVersion() { method setVersion (line 51) | public void setVersion(String version) { method getEeComponents (line 55) | public List getEeComponents() { method setEeComponents (line 59) | public void setEeComponents(List eeComponents) { method getEeExtensions (line 63) | public List getEeExtensions() { method setEeExtensions (line 67) | public void setEeExtensions(List eeExtensions) { FILE: common/src/main/java/com/kumuluz/ee/common/servlet/ServletWrapper.java class ServletWrapper (line 27) | public class ServletWrapper { method ServletWrapper (line 32) | public ServletWrapper(String name, String contextPath) { method getName (line 37) | public String getName() { method getContextPath (line 41) | public String getContextPath() { FILE: common/src/main/java/com/kumuluz/ee/common/utils/ClassUtils.java class ClassUtils (line 27) | public class ClassUtils { method isPresent (line 29) | public static boolean isPresent(String className) { method loadClass (line 34) | public static Class loadClass(String className) { FILE: common/src/main/java/com/kumuluz/ee/common/utils/EnvUtils.java class EnvUtils (line 32) | public class EnvUtils { method getEnv (line 34) | public static void getEnv(String var, Consumer consumer) { method getEnvAsInteger (line 41) | public static void getEnvAsInteger(String var, Consumer consu... FILE: common/src/main/java/com/kumuluz/ee/common/utils/ResourceUtils.java class ResourceUtils (line 38) | public class ResourceUtils { method getProjectWebResources (line 40) | public static String getProjectWebResources() { method isRunningInJar (line 102) | public static boolean isRunningInJar() { method isRunningTests (line 110) | public static boolean isRunningTests() { FILE: common/src/main/java/com/kumuluz/ee/common/utils/StringUtils.java class StringUtils (line 31) | public class StringUtils { method camelCaseToHyphenCase (line 39) | public static String camelCaseToHyphenCase(String s) { method hyphenCaseToCamelCase (line 61) | public static String hyphenCaseToCamelCase(String s) { method isNullOrEmpty (line 85) | public static boolean isNullOrEmpty(String s) { FILE: common/src/main/java/com/kumuluz/ee/common/wrapper/ComponentWrapper.java class ComponentWrapper (line 31) | public class ComponentWrapper { method ComponentWrapper (line 38) | public ComponentWrapper(Component component, String name, method getComponent (line 47) | public Component getComponent() { method setComponent (line 51) | public void setComponent(Component component) { method getDependencies (line 56) | public EeComponentDependency[] getDependencies() { method setDependencies (line 60) | public void setDependencies(EeComponentDependency[] dependencies) { method getOptionalDependencies (line 64) | public EeComponentOptional[] getOptionalDependencies() { method setOptionalDependencies (line 68) | public void setOptionalDependencies(EeComponentOptional[] optionalDepe... method getName (line 72) | public String getName() { method setName (line 76) | public void setName(String name) { FILE: common/src/main/java/com/kumuluz/ee/common/wrapper/EeComponentWrapper.java class EeComponentWrapper (line 34) | public class EeComponentWrapper extends ComponentWrapper { method EeComponentWrapper (line 38) | public EeComponentWrapper(Component component, String name, method EeComponentWrapper (line 45) | public EeComponentWrapper(Component component, String name, EeComponen... method getType (line 53) | public EeComponentType getType() { method setType (line 57) | public void setType(EeComponentType type) { FILE: common/src/main/java/com/kumuluz/ee/common/wrapper/ExtensionWrapper.java class ExtensionWrapper (line 7) | public class ExtensionWrapper { method ExtensionWrapper (line 15) | public ExtensionWrapper(T extension, String name, String group, EeComp... method getExtension (line 23) | public T getExtension() { method setExtension (line 27) | public void setExtension(T extension) { method getName (line 31) | public String getName() { method setName (line 35) | public void setName(String name) { method getGroup (line 39) | public String getGroup() { method setGroup (line 43) | public void setGroup(String group) { method getDependencies (line 47) | public EeComponentDependency[] getDependencies() { method setDependencies (line 51) | public void setDependencies(EeComponentDependency[] dependencies) { method getOptionalDependencies (line 55) | public EeComponentOptional[] getOptionalDependencies() { method setOptionalDependencies (line 59) | public void setOptionalDependencies(EeComponentOptional[] optionalDepe... FILE: common/src/main/java/com/kumuluz/ee/common/wrapper/KumuluzServerWrapper.java class KumuluzServerWrapper (line 32) | public class KumuluzServerWrapper { method KumuluzServerWrapper (line 38) | public KumuluzServerWrapper(KumuluzServer server, String name, EeCompo... method getServer (line 45) | public KumuluzServer getServer() { method setServer (line 49) | public void setServer(KumuluzServer server) { method getName (line 53) | public String getName() { method setName (line 57) | public void setName(String name) { method getProvidedEeComponents (line 61) | public EeComponentType[] getProvidedEeComponents() { method setProvidedEeComponents (line 65) | public void setProvidedEeComponents(EeComponentType[] providedEeCompon... FILE: common/src/main/java/com/kumuluz/ee/configuration/ConfigurationDecoder.java type ConfigurationDecoder (line 30) | public interface ConfigurationDecoder { method shouldDecode (line 38) | boolean shouldDecode(String key); method decode (line 47) | String decode(String key, String value); FILE: common/src/main/java/com/kumuluz/ee/configuration/ConfigurationListener.java type ConfigurationListener (line 27) | @FunctionalInterface method onChange (line 30) | void onChange(String key, String value); FILE: common/src/main/java/com/kumuluz/ee/configuration/ConfigurationSource.java type ConfigurationSource (line 32) | public interface ConfigurationSource { method init (line 36) | void init(ConfigurationDispatcher configurationDispatcher); method get (line 38) | Optional get(String key); method getBoolean (line 40) | default Optional getBoolean(String key) { method getInteger (line 47) | default Optional getInteger(String key) { method getLong (line 63) | default Optional getLong(String key) { method getDouble (line 79) | default Optional getDouble(String key) { method getFloat (line 95) | default Optional getFloat(String key) { method getListSize (line 112) | Optional getListSize(String key); method getMapKeys (line 114) | Optional> getMapKeys(String key); method watch (line 116) | void watch(String key); method set (line 118) | void set(String key, String value); method set (line 120) | void set(String key, Boolean value); method set (line 122) | void set(String key, Integer value); method set (line 124) | void set(String key, Double value); method set (line 126) | void set(String key, Float value); method getOrdinal (line 128) | default Integer getOrdinal() { method postInit (line 132) | default void postInit() {} method initProfile (line 134) | default void initProfile(String profileName) {} FILE: common/src/main/java/com/kumuluz/ee/configuration/enums/ConfigurationValueType.java type ConfigurationValueType (line 27) | public enum ConfigurationValueType { FILE: common/src/main/java/com/kumuluz/ee/configuration/sources/EnvironmentConfigurationSource.java class EnvironmentConfigurationSource (line 32) | public class EnvironmentConfigurationSource implements ConfigurationSour... method init (line 34) | @Override method get (line 38) | @Override method getListSize (line 54) | @Override method getMapKeys (line 119) | @Override method watch (line 188) | @Override method set (line 192) | @Override method set (line 196) | @Override method set (line 200) | @Override method set (line 204) | @Override method set (line 208) | @Override method getOrdinal (line 212) | @Override method getPossibleEnvNames (line 217) | private List getPossibleEnvNames(String key) { method replaceNonAlphaNum (line 234) | private String replaceNonAlphaNum(String s) { method parseKeyNameForEnvironmentVariables (line 238) | private String parseKeyNameForEnvironmentVariables(String key) { method parseKeyNameForEnvironmentVariablesLegacy (line 245) | private String parseKeyNameForEnvironmentVariablesLegacy(String key) { FILE: common/src/main/java/com/kumuluz/ee/configuration/sources/FileConfigurationSource.java class FileConfigurationSource (line 41) | public class FileConfigurationSource implements ConfigurationSource { type Mode (line 43) | private enum Mode { method FileConfigurationSource (line 60) | public FileConfigurationSource() { method postInit (line 80) | public void postInit() { method init (line 88) | @Override method initProfile (line 118) | @Override method get (line 138) | @Override method getListSize (line 171) | @Override method getMapKeys (line 215) | @Override method watch (line 269) | @Override method set (line 273) | @Override method set (line 277) | @Override method set (line 281) | @Override method set (line 285) | @Override method set (line 289) | @Override method getOrdinal (line 293) | @Override method representsArray (line 304) | private boolean representsArray(String key) { method getYamlValue (line 319) | private Object getYamlValue(String key, Object value) { method loadYamlFile (line 387) | private Map loadYamlFile(String fileNameYml, String fi... method loadProperties (line 445) | private Properties loadProperties(String fileName) { FILE: common/src/main/java/com/kumuluz/ee/configuration/sources/SystemPropertyConfigurationSource.java class SystemPropertyConfigurationSource (line 34) | public class SystemPropertyConfigurationSource implements ConfigurationS... method init (line 36) | @Override method get (line 40) | @Override method getListSize (line 45) | @Override method getMapKeys (line 51) | @Override method watch (line 57) | @Override method set (line 61) | @Override method set (line 65) | @Override method set (line 69) | @Override method set (line 73) | @Override method set (line 77) | @Override method getOrdinal (line 81) | @Override FILE: common/src/main/java/com/kumuluz/ee/configuration/utils/ConfigurationDecoderUtils.java class ConfigurationDecoderUtils (line 31) | public class ConfigurationDecoderUtils { method decodeConfigValueIfEncoded (line 33) | public static String decodeConfigValueIfEncoded(String key, String val... FILE: common/src/main/java/com/kumuluz/ee/configuration/utils/ConfigurationDispatcher.java class ConfigurationDispatcher (line 34) | public class ConfigurationDispatcher { method notifyChange (line 38) | public void notifyChange(String key, String value) { method subscribe (line 45) | public void subscribe(ConfigurationListener listener) { method unsubscribe (line 49) | public void unsubscribe(ConfigurationListener listener) { FILE: common/src/main/java/com/kumuluz/ee/configuration/utils/ConfigurationImpl.java class ConfigurationImpl (line 35) | public class ConfigurationImpl { method ConfigurationImpl (line 42) | public ConfigurationImpl() { method init (line 46) | private void init() { method postInit (line 67) | public void postInit() { method isUtilLoggerAvailable (line 72) | public Boolean isUtilLoggerAvailable() { method getUtilLogger (line 76) | public Logger getUtilLogger() { method getDispatcher (line 80) | public ConfigurationDispatcher getDispatcher() { method getConfigurationSources (line 84) | public List getConfigurationSources() { method getConfigurationDecoder (line 88) | public ConfigurationDecoder getConfigurationDecoder() { FILE: common/src/main/java/com/kumuluz/ee/configuration/utils/ConfigurationInterpolationUtil.java class ConfigurationInterpolationUtil (line 16) | public class ConfigurationInterpolationUtil { method interpolateString (line 18) | public static String interpolateString(String value, Function getListSize(String key, Collection> getMapKeys(String key, Collection... FILE: common/src/main/java/com/kumuluz/ee/configuration/utils/ConfigurationUtil.java class ConfigurationUtil (line 34) | public class ConfigurationUtil { method ConfigurationUtil (line 40) | protected ConfigurationUtil() { method ConfigurationUtil (line 43) | private ConfigurationUtil(ConfigurationImpl config) { method initialize (line 47) | public static void initialize(ConfigurationImpl config) { method getInstance (line 56) | public static ConfigurationUtil getInstance() { method get (line 65) | public Optional get(String key) { method getRaw (line 81) | public Optional getRaw(String key) { method getBoolean (line 96) | public Optional getBoolean(String key) { method getInteger (line 109) | public Optional getInteger(String key) { method getLong (line 122) | public Optional getLong(String key) { method getDouble (line 135) | public Optional getDouble(String key) { method getFloat (line 148) | public Optional getFloat(String key) { method getListSize (line 161) | public Optional getListSize(String key) { method getList (line 180) | public Optional> getList(String key) { method set (line 198) | public void set(String key, String value) { method set (line 202) | public void set(String key, Boolean value) { method set (line 206) | public void set(String key, Integer value) { method set (line 210) | public void set(String key, Double value) { method set (line 214) | public void set(String key, Float value) { method getType (line 218) | public Optional getType(String key) { method getMapKeys (line 270) | public Optional> getMapKeys(String key) { method subscribe (line 296) | public void subscribe(String key, ConfigurationListener listener) { method unsubscribe (line 305) | public void unsubscribe(ConfigurationListener listener) { method getConfigurationSources (line 309) | public List getConfigurationSources() { method getConfigurationDecoder (line 313) | public ConfigurationDecoder getConfigurationDecoder() { FILE: common/src/main/java/com/kumuluz/ee/logs/LogDeferrer.java class LogDeferrer (line 8) | public class LogDeferrer { method init (line 14) | public void init(Supplier logger) { method defer (line 24) | public void defer(Consumer log) { method execute (line 29) | public void execute() { FILE: common/src/main/java/com/kumuluz/ee/logs/impl/JavaUtilConsoleHandler.java class JavaUtilConsoleHandler (line 6) | public class JavaUtilConsoleHandler extends StreamHandler { method JavaUtilConsoleHandler (line 11) | public JavaUtilConsoleHandler() { method publish (line 32) | @Override method close (line 44) | @Override FILE: common/src/main/java/com/kumuluz/ee/logs/impl/JavaUtilDefaultLogConfigurator.java class JavaUtilDefaultLogConfigurator (line 7) | public class JavaUtilDefaultLogConfigurator { method init (line 9) | public static void init() { method initSoleHandler (line 37) | public static void initSoleHandler(Handler handler) { FILE: common/src/main/java/com/kumuluz/ee/logs/impl/JavaUtilFormatter.java class JavaUtilFormatter (line 13) | public class JavaUtilFormatter extends Formatter { method format (line 17) | @Override FILE: common/src/test/java/com/kumuluz/ee/configuration/utils/ConfigurationInterpolationUtilTest.java class ConfigurationInterpolationUtilTest (line 18) | public class ConfigurationInterpolationUtilTest { method identityResolver (line 23) | private Optional identityResolver(String s) { method testValueResolver (line 27) | private Optional testValueResolver(String s) { method emptyResolver (line 31) | private Optional emptyResolver(String s) { method createMapResolver (line 35) | private Function> createMapResolver(Map getProjects() { method setProjects (line 124) | public void setProjects(List projects) { FILE: components/cdi/weld/src/main/java/com/kumuluz/ee/cdi/CdiComponent.java class CdiComponent (line 35) | @EeComponentDef(name = "Weld", type = EeComponentType.CDI) method init (line 40) | @Override method load (line 44) | @Override FILE: components/cdi/weld/src/main/java/com/kumuluz/ee/configuration/cdi/interceptors/ConfigBundleInterceptor.java class ConfigBundleInterceptor (line 46) | @Interceptor method loadConfiguration (line 59) | @PostConstruct method processConfigBundleBeanSetters (line 88) | private boolean processConfigBundleBeanSetters(Object target, Class ta... method getValueOfPrimitive (line 189) | private Optional getValueOfPrimitive(Class type, String key) { method processNestedObject (line 222) | private Object processNestedObject(Class targetClass, Method method, C... method getKeyName (line 261) | private String getKeyName(Class targetClass, String setter, String key... method getKeyPrefix (line 293) | private String getKeyPrefix(Class targetClass) { method setterToField (line 314) | private String setterToField(String setter) { method targetClassIsProxied (line 324) | private boolean targetClassIsProxied(Class targetClass) { method deployWatcher (line 336) | private void deployWatcher(Object target, Method method, String watche... FILE: components/cdi/weld/src/main/java/com/kumuluz/ee/configuration/cdi/producers/ConfigurationUtilProducer.java class ConfigurationUtilProducer (line 32) | public class ConfigurationUtilProducer { method getConfigurationUtil (line 34) | @Produces FILE: components/cdi/weld/src/main/java/com/kumuluz/ee/configuration/cdi/producers/EeConfigProducer.java class EeConfigProducer (line 32) | public class EeConfigProducer { method getConfigurationUtil (line 34) | @Produces FILE: components/cdi/weld/src/main/java/com/kumuluz/ee/runtime/cdi/producers/EeRuntimeProducer.java class EeRuntimeProducer (line 32) | public class EeRuntimeProducer { method getConfigurationUtil (line 34) | @Produces FILE: components/el/uel/src/main/java/com/kumuluz/ee/el/ElComponent.java class ElComponent (line 35) | @EeComponentDef(name = "UEL", type = EeComponentType.EL) method init (line 40) | @Override method load (line 44) | @Override FILE: components/javamail/ri/src/main/java/com/kumuluz/ee/javamail/ri/JavaMailComponent.java class JavaMailComponent (line 18) | @EeComponentDef(name = "JavaMailRI", type = EeComponentType.MAIL) method init (line 23) | @Override method load (line 40) | @Override FILE: components/javamail/ri/src/main/java/com/kumuluz/ee/javamail/ri/MailSessionFactory.java class MailSessionFactory (line 11) | public class MailSessionFactory { method create (line 18) | static Session create(MailSessionConfig cfg) { method configureService (line 67) | private static void configureService(Properties properties, MailServic... FILE: components/javamail/ri/src/main/java/com/kumuluz/ee/javamail/ri/ManagedPasswordAuthenticator.java class ManagedPasswordAuthenticator (line 9) | public class ManagedPasswordAuthenticator extends Authenticator { method ManagedPasswordAuthenticator (line 13) | ManagedPasswordAuthenticator(MailSessionConfig mailSessionConfig) { method getPasswordAuthentication (line 17) | @Override FILE: components/jax-rs/jersey/src/main/java/com/kumuluz/ee/jaxrs/JaxRsComponent.java class JaxRsComponent (line 36) | @EeComponentDef(name = "Jersey", type = EeComponentType.JAX_RS) method init (line 42) | @Override method load (line 46) | @Override FILE: components/jax-rs/jersey/src/main/java/com/kumuluz/ee/jaxrs/Jetty10ConnectorProvider.java class Jetty10ConnectorProvider (line 36) | public class Jetty10ConnectorProvider implements ConnectorProvider { method getConnector (line 38) | @Override FILE: components/jax-rs/jersey/src/main/java/org/glassfish/jersey/jetty/connector/Jetty10Connector.java class Jetty10Connector (line 133) | public class Jetty10Connector implements Connector { method Jetty10Connector (line 148) | public Jetty10Connector(final Client jaxrsClient, final Configuration ... method getProxyUri (line 232) | @SuppressWarnings("ChainOfInstanceofChecks") method getHttpClient (line 248) | @SuppressWarnings("UnusedDeclaration") method getCookieStore (line 259) | public CookieStore getCookieStore() { method apply (line 263) | @Override method processResponseHeaders (line 304) | private static void processResponseHeaders(final HttpFields respHeader... class HttpClientResponseInputStream (line 317) | private static final class HttpClientResponseInputStream extends Filte... method HttpClientResponseInputStream (line 319) | HttpClientResponseInputStream(final ContentResponse jettyResponse) t... method getInputStream (line 323) | private static InputStream getInputStream(final ContentResponse resp... method translateRequest (line 328) | private Request translateRequest(final ClientRequest clientRequest) { method writeOutBoundHeaders (line 342) | private Map writeOutBoundHeaders(final MultivaluedMap<... method getBytesProvider (line 357) | private ContentProvider getBytesProvider(final ClientRequest clientReq... method getStreamProvider (line 380) | private ContentProvider getStreamProvider(final ClientRequest clientRe... method processContent (line 397) | private void processContent(final ClientRequest clientRequest, final C... method apply (line 408) | @Override method translateResponse (line 504) | private static ClientResponse translateResponse(final ClientRequest je... method getName (line 513) | @Override method close (line 518) | @Override FILE: components/jax-ws/cxf/src/main/java/com/kumuluz/ee/jaxws/cxf/JaxWsComponent.java class JaxWsComponent (line 42) | @EeComponentDef(name = "CXF", type = EeComponentType.JAX_WS) method init (line 48) | @Override method load (line 73) | @Override FILE: components/jax-ws/cxf/src/main/java/com/kumuluz/ee/jaxws/cxf/KumuluzCXFServlet.java class KumuluzCXFServlet (line 36) | public class KumuluzCXFServlet extends CXFNonSpringServlet { method init (line 42) | public void init() throws ServletException { method loadBus (line 50) | @Override FILE: components/jax-ws/cxf/src/main/java/com/kumuluz/ee/jaxws/cxf/processor/AnnotationProcessorUtil.java class AnnotationProcessorUtil (line 35) | public class AnnotationProcessorUtil { method writeFile (line 37) | public static void writeFile(Set content, String resourceName,... method writeFile (line 49) | private static void writeFile(Set content, String resourceName... method readOldFile (line 62) | private static FileObject readOldFile(Set content, String reso... method readOldFile (line 79) | private static void readOldFile(Set content, Reader reader) th... FILE: components/jax-ws/cxf/src/main/java/com/kumuluz/ee/jaxws/cxf/processor/JaxWsAnnotationProcessor.java class JaxWsAnnotationProcessor (line 42) | public class JaxWsAnnotationProcessor extends AbstractProcessor { method getSupportedSourceVersion (line 48) | @Override method getSupportedAnnotationTypes (line 53) | @Override method init (line 58) | @Override method process (line 64) | @Override method getElementName (line 83) | private void getElementName(Set corsElementNames, Element e) { FILE: components/jax-ws/cxf/src/main/java/com/kumuluz/ee/jaxws/cxf/processor/JaxWsAnnotationProcessorUtil.java class JaxWsAnnotationProcessorUtil (line 38) | public class JaxWsAnnotationProcessorUtil { method JaxWsAnnotationProcessorUtil (line 50) | private JaxWsAnnotationProcessorUtil() { method getInstance (line 53) | public static synchronized JaxWsAnnotationProcessorUtil getInstance() { method init (line 62) | private void init() { method getWsClasses (line 94) | private List> getWsClasses() { method targetClassIsProxied (line 119) | private boolean targetClassIsProxied(Class targetClass) { method isInitialized (line 123) | private boolean isInitialized() { method getContextRoot (line 127) | public String getContextRoot() { method setContextRoot (line 131) | public void setContextRoot(String contextRoot) { method getEndpointList (line 145) | public List getEndpointList() { method reinitialize (line 149) | protected void reinitialize() { FILE: components/jax-ws/cxf/src/main/java/com/kumuluz/ee/jaxws/cxf/ws/CXFWebservicePublisher.java class CXFWebservicePublisher (line 45) | public class CXFWebservicePublisher { method publish (line 52) | public Server publish(final Endpoint endpoint, final Bus bus, final bo... method injectWebServiceResource (line 94) | protected void injectWebServiceResource(final Field f, final Class ... method getBean (line 125) | private Object getBean(Class clazz, boolean cdiPresent) { method open (line 140) | private void open() { method close (line 150) | public void close() { FILE: components/jax-ws/cxf/src/main/java/com/kumuluz/ee/jaxws/cxf/ws/Endpoint.java class Endpoint (line 29) | public class Endpoint { method Endpoint (line 35) | public Endpoint(Class implementationClass, String url, WebService w... method getUrl (line 41) | public String getUrl() { method getImplementationClass (line 45) | public Class getImplementationClass() { method wsdlLocation (line 49) | public String wsdlLocation() { method defaultEndpointUrl (line 58) | private String defaultEndpointUrl() { method serviceName (line 67) | public String serviceName() { method portName (line 76) | public String portName() { FILE: components/jax-ws/cxf/src/main/java/com/kumuluz/ee/jaxws/cxf/ws/InjectionHelper.java class InjectionHelper (line 31) | public final class InjectionHelper { method InjectionHelper (line 33) | private InjectionHelper() { method injectWebServiceContext (line 36) | public static void injectWebServiceContext(final Object instance, fina... method setField (line 54) | private static void setField(final Object instance, final Field field,... FILE: components/jax-ws/cxf/src/main/java/com/kumuluz/ee/jaxws/cxf/ws/KumuluzWSInvoker.java class KumuluzWSInvoker (line 42) | public class KumuluzWSInvoker extends JAXWSMethodInvoker implements Invo... method KumuluzWSInvoker (line 47) | public KumuluzWSInvoker(final Class targetClass, final Object targe... method invoke (line 53) | @Override method performInvocation (line 70) | @Override FILE: components/jax-ws/cxf/src/main/java/com/kumuluz/ee/jaxws/cxf/ws/KumuluzWebServiceContext.java class KumuluzWebServiceContext (line 35) | public final class KumuluzWebServiceContext implements WebServiceContext... method getInstance (line 43) | public static KumuluzWebServiceContext getInstance() { method getEndpointReference (line 47) | public EndpointReference getEndpointReference(final Element... referen... method getEndpointReference (line 51) | public T getEndpointReference(final Clas... method getMessageContext (line 55) | public MessageContext getMessageContext() { method setMessageContext (line 59) | public void setMessageContext(final WebServiceContext ctx) { method getUserPrincipal (line 63) | public Principal getUserPrincipal() { method isUserInRole (line 67) | public boolean isUserInRole(String role) { method getWebServiceContext (line 71) | private WebServiceContext getWebServiceContext() { FILE: components/jax-ws/cxf/src/test/java/com/kumuluz/ee/jaxws/cxf/impl/NoWsContextAnnotatedEndpointBean.java class NoWsContextAnnotatedEndpointBean (line 5) | @WebService FILE: components/jax-ws/cxf/src/test/java/com/kumuluz/ee/jaxws/cxf/impl/WebServiceContextBean.java class WebServiceContextBean (line 13) | public class WebServiceContextBean implements WebServiceContext { method WebServiceContextBean (line 17) | public WebServiceContextBean(String id) { method getMessageContext (line 23) | @Override method getUserPrincipal (line 28) | @Override method isUserInRole (line 33) | @Override method getEndpointReference (line 38) | @Override method getEndpointReference (line 43) | @Override FILE: components/jax-ws/cxf/src/test/java/com/kumuluz/ee/jaxws/cxf/impl/WsContextAnnotatedEndpoint.java type WsContextAnnotatedEndpoint (line 3) | public interface WsContextAnnotatedEndpoint { FILE: components/jax-ws/cxf/src/test/java/com/kumuluz/ee/jaxws/cxf/impl/WsContextAnnotatedEndpointBean.java class WsContextAnnotatedEndpointBean (line 7) | @WsContext(contextRoot = WsContextAnnotatedEndpointBean.CTX_ROOT, urlPat... FILE: components/jax-ws/cxf/src/test/java/com/kumuluz/ee/jaxws/cxf/processor/JaxWsAnnotationProcessorUtilTest.java class JaxWsAnnotationProcessorUtilTest (line 16) | public class JaxWsAnnotationProcessorUtilTest { method shouldReturnDefaultWsInfo (line 20) | @Test method shouldReturnConfiguredWsInfo (line 47) | @Test method prepareEndpointList (line 76) | private void prepareEndpointList(String... endpoints) { FILE: components/jax-ws/cxf/src/test/java/com/kumuluz/ee/jaxws/cxf/ws/KumuluzWebServiceContextTest.java class KumuluzWebServiceContextTest (line 8) | public class KumuluzWebServiceContextTest { method shouldUseRightContext (line 10) | @Test class WsThread (line 25) | public static class WsThread extends Thread { method run (line 28) | public void run() { method isSuccessful (line 40) | public boolean isSuccessful() { FILE: components/jax-ws/metro/src/main/java/com/kumuluz/ee/jaxws/metro/JaxWsComponent.java class JaxWsComponent (line 35) | @EeComponentDef(name = "Metro", type = EeComponentType.JAX_WS) method init (line 40) | @Override method load (line 44) | @Override FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/PersistenceSettings.java type PersistenceSettings (line 29) | public interface PersistenceSettings { method getPersistenceUnitProperties (line 31) | Map getPersistenceUnitProperties(); FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/PersistenceUnitHolder.java class PersistenceUnitHolder (line 35) | public class PersistenceUnitHolder { method PersistenceUnitHolder (line 45) | private PersistenceUnitHolder() { method getInstance (line 50) | public static PersistenceUnitHolder getInstance() { method getEntityManagerFactory (line 54) | public synchronized PersistenceWrapper getEntityManagerFactory(String ... method getDefaultUnitName (line 77) | public String getDefaultUnitName() { method setProviderProperties (line 81) | public void setProviderProperties(PersistenceSettings providerProperti... FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/PersistenceWrapper.java class PersistenceWrapper (line 29) | public class PersistenceWrapper { method PersistenceWrapper (line 34) | public PersistenceWrapper(EntityManagerFactory entityManagerFactory, T... method getEntityManagerFactory (line 39) | public EntityManagerFactory getEntityManagerFactory() { method getTransactionType (line 43) | public TransactionType getTransactionType() { FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/TransactionType.java type TransactionType (line 27) | public enum TransactionType { FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/exceptions/NoDefaultPersistenceUnit.java class NoDefaultPersistenceUnit (line 27) | public class NoDefaultPersistenceUnit extends RuntimeException { method NoDefaultPersistenceUnit (line 29) | public NoDefaultPersistenceUnit() { FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/injection/EntityManagerWrapper.java type EntityManagerWrapper (line 29) | public interface EntityManagerWrapper { method getEntityManager (line 31) | EntityManager getEntityManager(); method close (line 33) | void close(); FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/injection/JpaService.java class JpaService (line 43) | @Priority(1) method registerPersistenceContextInjectionPoint (line 48) | @Override method registerPersistenceUnitInjectionPoint (line 103) | @Override method cleanup (line 126) | @Override FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/injection/NonTxEntityManagerWrapper.java class NonTxEntityManagerWrapper (line 9) | public class NonTxEntityManagerWrapper implements EntityManagerWrapper { method NonTxEntityManagerWrapper (line 13) | public NonTxEntityManagerWrapper(EntityManager em) { method getEntityManager (line 17) | @Override method close (line 22) | @Override FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/injection/PersistenceContextResource.java class PersistenceContextResource (line 31) | public class PersistenceContextResource implements ResourceReference implements TypedQuery { method NonTxTypedQueryWrapper (line 35) | public NonTxTypedQueryWrapper(TypedQuery typedQuery, EntityManager ... method getResultList (line 40) | @Override method getSingleResult (line 50) | @Override method executeUpdate (line 60) | @Override method setMaxResults (line 65) | @Override method getMaxResults (line 71) | @Override method setFirstResult (line 76) | @Override method getFirstResult (line 82) | @Override method setHint (line 87) | @Override method getHints (line 93) | @Override method setParameter (line 98) | @Override method setParameter (line 104) | @Override method setParameter (line 110) | @Override method setParameter (line 116) | @Override method setParameter (line 122) | @Override method setParameter (line 128) | @Override method setParameter (line 134) | @Override method setParameter (line 140) | @Override method setParameter (line 146) | @Override method getParameters (line 152) | @Override method getParameter (line 157) | @Override method getParameter (line 162) | @Override method getParameter (line 167) | @Override method getParameter (line 172) | @Override method isBound (line 177) | @Override method getParameterValue (line 182) | @Override method getParameterValue (line 187) | @Override method getParameterValue (line 192) | @Override method setFlushMode (line 197) | @Override method getFlushMode (line 203) | @Override method setLockMode (line 208) | @Override method getLockMode (line 214) | @Override method unwrap (line 219) | @Override FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/jta/SyncEntityManagerWrapper.java class SyncEntityManagerWrapper (line 36) | public class SyncEntityManagerWrapper implements EntityManager { method SyncEntityManagerWrapper (line 41) | public SyncEntityManagerWrapper(EntityManager em, SynchronizationType ... method getSynchronizationType (line 46) | public SynchronizationType getSynchronizationType() { method persist (line 50) | @Override method merge (line 55) | @Override method remove (line 60) | @Override method find (line 65) | @Override method find (line 70) | @Override method find (line 75) | @Override method find (line 80) | @Override method getReference (line 85) | @Override method flush (line 90) | @Override method setFlushMode (line 95) | @Override method getFlushMode (line 100) | @Override method lock (line 105) | @Override method lock (line 110) | @Override method refresh (line 115) | @Override method refresh (line 120) | @Override method refresh (line 125) | @Override method refresh (line 130) | @Override method clear (line 135) | @Override method detach (line 140) | @Override method contains (line 145) | @Override method getLockMode (line 150) | @Override method setProperty (line 155) | @Override method getProperties (line 160) | @Override method createQuery (line 165) | @Override method createQuery (line 170) | @Override method createQuery (line 175) | @Override method createQuery (line 180) | @Override method createQuery (line 185) | @Override method createNamedQuery (line 190) | @Override method createNamedQuery (line 195) | @Override method createNativeQuery (line 200) | @Override method createNativeQuery (line 205) | @Override method createNativeQuery (line 210) | @Override method createNamedStoredProcedureQuery (line 215) | @Override method createStoredProcedureQuery (line 220) | @Override method createStoredProcedureQuery (line 225) | @Override method createStoredProcedureQuery (line 230) | @Override method joinTransaction (line 235) | @Override method isJoinedToTransaction (line 240) | @Override method unwrap (line 245) | @Override method getDelegate (line 250) | @Override method close (line 255) | @Override method isOpen (line 260) | @Override method getTransaction (line 265) | @Override method getEntityManagerFactory (line 270) | @Override method getCriteriaBuilder (line 275) | @Override method getMetamodel (line 280) | @Override method createEntityGraph (line 285) | @Override method createEntityGraph (line 290) | @Override method getEntityGraph (line 295) | @Override method getEntityGraphs (line 300) | @Override FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/jta/TxScopedEntityManager.java class TxScopedEntityManager (line 40) | public class TxScopedEntityManager implements EntityManager { method TxScopedEntityManager (line 49) | public TxScopedEntityManager(String unitName, EntityManagerFactory emf... method persist (line 58) | @Override method merge (line 66) | @Override method remove (line 74) | @Override method find (line 82) | @Override method find (line 94) | @Override method find (line 106) | @Override method find (line 118) | @Override method getReference (line 130) | @Override method flush (line 142) | @Override method setFlushMode (line 148) | @Override method getFlushMode (line 154) | @Override method lock (line 160) | @Override method lock (line 166) | @Override method refresh (line 172) | @Override method refresh (line 180) | @Override method refresh (line 188) | @Override method refresh (line 196) | @Override method clear (line 204) | @Override method detach (line 210) | @Override method contains (line 216) | @Override method getLockMode (line 222) | @Override method setProperty (line 228) | @Override method getProperties (line 234) | @Override method createQuery (line 240) | @Override method createQuery (line 250) | @Override method createQuery (line 260) | @Override method createQuery (line 266) | @Override method createQuery (line 272) | @Override method createNamedQuery (line 282) | @Override method createNamedQuery (line 292) | @Override method createNativeQuery (line 302) | @Override method createNativeQuery (line 312) | @Override method createNativeQuery (line 322) | @Override method createNamedStoredProcedureQuery (line 332) | @Override method createStoredProcedureQuery (line 342) | @Override method createStoredProcedureQuery (line 352) | @Override method createStoredProcedureQuery (line 362) | @Override method joinTransaction (line 372) | @Override method isJoinedToTransaction (line 378) | @Override method unwrap (line 384) | @Override method getDelegate (line 390) | @Override method close (line 396) | @Override method isOpen (line 402) | @Override method getTransaction (line 408) | @Override method getEntityManagerFactory (line 414) | @Override method getCriteriaBuilder (line 420) | @Override method getMetamodel (line 426) | @Override method createEntityGraph (line 432) | @Override method createEntityGraph (line 438) | @Override method getEntityGraph (line 444) | @Override method getEntityGraphs (line 450) | @Override method getEntityManager (line 458) | private EntityManager getEntityManager() { method createEntityManager (line 491) | private EntityManager createEntityManager() { method detachLoadedNonTxEntities (line 501) | private void detachLoadedNonTxEntities(EntityManager em) { method detachLoadedNonTxQueryEntities (line 509) | private Query detachLoadedNonTxQueryEntities(Query query, EntityManage... method detachLoadedNonTxTypedQueryEntities (line 519) | private TypedQuery detachLoadedNonTxTypedQueryEntities(TypedQue... method detachLoadedNonTxStoredProcedureQueryEntities (line 529) | private StoredProcedureQuery detachLoadedNonTxStoredProcedureQueryEnti... method validateActiveTransaction (line 539) | private void validateActiveTransaction() { method validateCompatibleSyncTypes (line 547) | private void validateCompatibleSyncTypes(EntityManager existingEm) { FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/jta/TxScopedEntityManagerFactory.java class TxScopedEntityManagerFactory (line 36) | public class TxScopedEntityManagerFactory { method buildEntityManagerWrapper (line 38) | public static EntityManagerWrapper buildEntityManagerWrapper(String un... FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/jta/TxScopedEntityManagerWrapper.java class TxScopedEntityManagerWrapper (line 32) | public class TxScopedEntityManagerWrapper implements EntityManagerWrapper { method TxScopedEntityManagerWrapper (line 37) | public TxScopedEntityManagerWrapper(EntityManager em, NonTxEntityManag... method getEntityManager (line 42) | @Override method close (line 47) | @Override FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/jta/TxSynchronization.java class TxSynchronization (line 30) | public class TxSynchronization implements Synchronization { method TxSynchronization (line 34) | public TxSynchronization(EntityManager em) { method beforeCompletion (line 38) | @Override method afterCompletion (line 42) | @Override FILE: components/jpa/common/src/main/java/com/kumuluz/ee/jpa/common/utils/PersistenceUtils.java class PersistenceUtils (line 42) | public class PersistenceUtils { method getEntityManagerFactoryTransactionType (line 46) | public static TransactionType getEntityManagerFactoryTransactionType(E... method getDefaultUnitName (line 70) | public static Optional getDefaultUnitName() { FILE: components/jpa/eclipselink/src/main/java/com/kumuluz/ee/jpa/eclipselink/EclipseLinkSettings.java class EclipseLinkSettings (line 33) | public class EclipseLinkSettings implements PersistenceSettings { method EclipseLinkSettings (line 39) | EclipseLinkSettings(Boolean jtaPresent) { method getPersistenceUnitProperties (line 43) | @Override FILE: components/jpa/eclipselink/src/main/java/com/kumuluz/ee/jpa/eclipselink/JpaComponent.java class JpaComponent (line 37) | @EeComponentDef(name = "EclipseLink", type = EeComponentType.JPA) method init (line 42) | @Override method load (line 53) | @Override FILE: components/jpa/eclipselink/src/main/java/com/kumuluz/ee/jpa/eclipselink/KumuluzPlatform.java class KumuluzPlatform (line 30) | public class KumuluzPlatform extends ServerPlatformBase { method KumuluzPlatform (line 32) | public KumuluzPlatform(DatabaseSession newDatabaseSession) { method getExternalTransactionControllerClass (line 36) | @Override FILE: components/jpa/eclipselink/src/main/java/com/kumuluz/ee/jpa/eclipselink/KumuluzTransactionController.java class KumuluzTransactionController (line 32) | public class KumuluzTransactionController extends JTATransactionControll... method acquireTransactionManager (line 34) | @Override FILE: components/jpa/hibernate/src/main/java/com/kumuluz/ee/jpa/hibernate/JpaComponent.java class JpaComponent (line 35) | @EeComponentDef(name = "Hibernate", type = EeComponentType.JPA) method init (line 40) | @Override method load (line 44) | @Override FILE: components/jsf/mojarra/src/main/java/com/kumuluz/ee/jsf/mojarra/JsfComponent.java class JsfComponent (line 36) | @EeComponentDef(name = "Mojarra", type = EeComponentType.JSF) method init (line 44) | @Override method load (line 48) | @Override FILE: components/json-b/yasson/src/main/java/com/kumuluz/ee/jsonb/yasson/JsonBComponent.java class JsonBComponent (line 16) | @EeComponentDef(name = "Yasson", type = EeComponentType.JSON_B) method init (line 22) | @Override method load (line 26) | @Override FILE: components/json-p/jsonp/src/main/java/com/kumuluz/ee/jsonp/JsonPComponent.java class JsonPComponent (line 35) | @EeComponentDef(name = "JSONP", type = EeComponentType.JSON_P) method init (line 40) | @Override method load (line 44) | @Override FILE: components/json-p/jsonp/src/main/java/com/kumuluz/ee/jsonp/configuration/utils/JsonConfigurationUtil.java class JsonConfigurationUtil (line 34) | public class JsonConfigurationUtil { method initialize (line 38) | private static synchronized void initialize() { method getInstance (line 44) | public static JsonConfigurationUtil getInstance() { method getBuilder (line 52) | public static Builder getBuilder() { method JsonConfigurationUtil (line 56) | private JsonConfigurationUtil() { method getMappingIfAvailable (line 64) | private JsonValue getMappingIfAvailable(String s) { method getJsonObject (line 78) | public Optional getJsonObject(String key) { method getJsonArray (line 130) | public Optional getJsonArray(String key) { class Builder (line 183) | public static final class Builder { method Builder (line 188) | private Builder() { method mapToNull (line 191) | public Builder mapToNull(String mapToNull) { method mapToEmptyObject (line 196) | public Builder mapToEmptyObject(String mapToEmptyObject) { method mapToEmptyArray (line 201) | public Builder mapToEmptyArray(String mapToEmptyArray) { method build (line 206) | public JsonConfigurationUtil build() { FILE: components/jsp/jetty/src/main/java/com/kumuluz/ee/jsp/JspComponent.java class JspComponent (line 36) | @EeComponentDef(name = "Jetty", type = EeComponentType.JSP) method init (line 43) | @Override method load (line 47) | @Override FILE: components/jsp/jetty/src/test/java/com/kumuluz/ee/jetty/jsp/test/JspTest.java class JspTest (line 28) | public class JspTest { method testJspServlet (line 30) | @Test FILE: components/jsp/jetty/src/test/java/com/kumuluz/ee/jetty/jsp/test/beans/TimeBean.java class TimeBean (line 28) | public class TimeBean { method TimeBean (line 32) | public TimeBean() { method getCurrentTime (line 37) | public Date getCurrentTime() { method setCurrentTime (line 41) | public void setCurrentTime(Date currentTime) { FILE: components/jsp/jetty/src/test/java/com/kumuluz/ee/jetty/jsp/test/beans/UserBean.java class UserBean (line 30) | public class UserBean { method UserBean (line 46) | public UserBean() { method getUsername (line 61) | public String getUsername() { method setUsername (line 65) | public void setUsername(String username) { method getEmail (line 69) | public String getEmail() { method setEmail (line 73) | public void setEmail(String email) { method getFirstname (line 77) | public String getFirstname() { method setFirstname (line 81) | public void setFirstname(String firstname) { method getLastname (line 85) | public String getLastname() { method setLastname (line 89) | public void setLastname(String lastname) { method getAge (line 93) | public Integer getAge() { method setAge (line 97) | public void setAge(Integer age) { method getCountry (line 101) | public String getCountry() { method setCountry (line 105) | public void setCountry(String country) { method getCreated (line 109) | public Date getCreated() { method setCreated (line 113) | public void setCreated(Date created) { FILE: components/jta/common/src/main/java/com/kumuluz/ee/jta/common/JtaProvider.java class JtaProvider (line 39) | public abstract class JtaProvider { method getInstance (line 48) | public static JtaProvider getInstance() { method getUserTransaction (line 61) | public abstract UserTransaction getUserTransaction(); method getTransactionManager (line 63) | public abstract TransactionManager getTransactionManager(); method getTransactionSynchronizationRegistry (line 65) | public abstract TransactionSynchronizationRegistry getTransactionSynch... method getTransactionIntegration (line 67) | public abstract TransactionIntegration getTransactionIntegration(Strin... FILE: components/jta/common/src/main/java/com/kumuluz/ee/jta/common/JtaTransactionServices.java class JtaTransactionServices (line 33) | public class JtaTransactionServices implements TransactionServices { method registerSynchronization (line 35) | @Override method isTransactionActive (line 44) | @Override method getUserTransaction (line 54) | @Override method cleanup (line 59) | @Override FILE: components/jta/common/src/main/java/com/kumuluz/ee/jta/common/datasources/JtaXAConnectionWrapper.java class JtaXAConnectionWrapper (line 43) | @Deprecated method JtaXAConnectionWrapper (line 58) | public JtaXAConnectionWrapper(XAConnection xaConnection) throws SQLExc... method createStatement (line 64) | @Override method prepareStatement (line 75) | @Override method prepareCall (line 86) | @Override method nativeSQL (line 97) | @Override method getAutoCommit (line 105) | @Override method setAutoCommit (line 114) | @Override method commit (line 123) | @Override method rollback (line 131) | @Override method close (line 140) | @Override method isClosed (line 156) | @Override method getMetaData (line 166) | @Override method isReadOnly (line 175) | @Override method setReadOnly (line 184) | @Override method getCatalog (line 193) | @Override method setCatalog (line 202) | @Override method getTransactionIsolation (line 211) | @Override method setTransactionIsolation (line 220) | @Override method getWarnings (line 229) | @Override method clearWarnings (line 238) | @Override method createStatement (line 247) | @Override method prepareStatement (line 258) | @Override method prepareCall (line 269) | @Override method getTypeMap (line 280) | @Override method setTypeMap (line 289) | @Override method getHoldability (line 298) | @Override method setHoldability (line 307) | @Override method setSavepoint (line 316) | @Override method setSavepoint (line 325) | @Override method rollback (line 334) | @Override method releaseSavepoint (line 343) | @Override method createStatement (line 352) | @Override method prepareStatement (line 363) | @Override method prepareCall (line 374) | @Override method prepareStatement (line 385) | @Override method prepareStatement (line 396) | @Override method prepareStatement (line 407) | @Override method createClob (line 418) | @Override method createBlob (line 427) | @Override method createNClob (line 436) | @Override method createSQLXML (line 445) | @Override method isValid (line 454) | @Override method setClientInfo (line 463) | @Override method getClientInfo (line 476) | @Override method getClientInfo (line 485) | @Override method setClientInfo (line 494) | @Override method createArrayOf (line 507) | @Override method createStruct (line 516) | @Override method getSchema (line 525) | @Override method setSchema (line 534) | @Override method abort (line 543) | @Override method setNetworkTimeout (line 552) | @Override method getNetworkTimeout (line 561) | @Override method unwrap (line 570) | @Override method isWrapperFor (line 579) | @Override method checkIfValid (line 588) | private void checkIfValid() throws SQLException { method jtaPreInvoke (line 594) | private void jtaPreInvoke() throws SQLException { method closeConnections (line 639) | private static void closeConnections(JtaXAConnectionWrapper jtaXaConne... FILE: components/jta/common/src/main/java/com/kumuluz/ee/jta/common/datasources/JtaXADataSourceWrapper.java class JtaXADataSourceWrapper (line 34) | @Deprecated method JtaXADataSourceWrapper (line 37) | public JtaXADataSourceWrapper(XADataSource xaDataSource) { method getConnection (line 41) | @Override method getConnection (line 51) | @Override FILE: components/jta/common/src/main/java/com/kumuluz/ee/jta/common/datasources/XAStatementProxy.java class XAStatementProxy (line 35) | @Deprecated method XAStatementProxy (line 42) | private XAStatementProxy(Statement statement, JtaXAConnectionWrapper j... method newInstance (line 47) | public static Object newInstance(Statement statement, JtaXAConnectionW... method newInstance (line 51) | public static Object newInstance(PreparedStatement statement, JtaXACon... method newInstance (line 55) | public static Object newInstance(CallableStatement statement, JtaXACon... method invoke (line 59) | @Override FILE: components/jta/common/src/main/java/com/kumuluz/ee/jta/common/exceptions/CannotRetrieveTxException.java class CannotRetrieveTxException (line 27) | public class CannotRetrieveTxException extends IllegalStateException { method CannotRetrieveTxException (line 29) | public CannotRetrieveTxException(Throwable cause) { FILE: components/jta/common/src/main/java/com/kumuluz/ee/jta/common/utils/TxUtils.java class TxUtils (line 34) | public class TxUtils { method isActive (line 36) | public static Boolean isActive(TransactionManager transactionManager) { FILE: components/jta/narayana/src/main/java/com/kumuluz/ee/jta/narayana/JtaComponent.java class JtaComponent (line 42) | @EeComponentDef(name = "Narayana JTA", type = EeComponentType.JTA) method init (line 48) | @Override method load (line 55) | @Override FILE: components/jta/narayana/src/main/java/com/kumuluz/ee/jta/narayana/NarayanaJtaProvider.java class NarayanaJtaProvider (line 37) | public class NarayanaJtaProvider extends JtaProvider { method NarayanaJtaProvider (line 42) | public NarayanaJtaProvider() { method getUserTransaction (line 47) | @Override method getTransactionManager (line 52) | @Override method getTransactionSynchronizationRegistry (line 57) | @Override method getTransactionIntegration (line 62) | @Override FILE: components/websocket/jetty/src/main/java/com/kumuluz/ee/websocket/jetty/WebSocketComponent.java class WebSocketComponent (line 34) | @EeComponentDef(name = "Jetty", type = EeComponentType.WEBSOCKET) method init (line 40) | @Override method load (line 44) | @Override FILE: core/src/main/java/com/kumuluz/ee/EeApplication.java class EeApplication (line 56) | public class EeApplication { method EeApplication (line 64) | public EeApplication() { method EeApplication (line 69) | public EeApplication(EeConfig eeConfig) { method main (line 76) | public static void main(String args[]) { method getServer (line 81) | public KumuluzServer getServer() { method initialize (line 85) | private void initialize() { method collectScanLibraries (line 333) | private List collectScanLibraries(List extensions) { method processKumuluzServer (line 341) | private void processKumuluzServer(KumuluzServer kumuluzServer) { method processEeComponents (line 348) | private List processEeComponents(List c... method processGroupEeExtensions (line 465) | private List> processGroupEe... method processSingleEeExtensions (line 506) | private List> processSingleE... method processEeExtensionDependencies (line 531) | private void processEeExtensionDependencies(List... method checkRequirements (line 615) | private void checkRequirements() { FILE: core/src/main/java/com/kumuluz/ee/factories/AgroalDataSourceFactory.java class AgroalDataSourceFactory (line 33) | public class AgroalDataSourceFactory { method createDataSource (line 37) | public static AgroalDataSource createDataSource(DataSourceConfig dsc, ... method createXaDataSource (line 73) | public static AgroalDataSource createXaDataSource(XaDataSourceConfig x... method setDatabaseCredentials (line 101) | private static void setDatabaseCredentials(AgroalConnectionFactoryConf... method setConnectionPoolConfiguration (line 111) | private static void setConnectionPoolConfiguration(AgroalConnectionPoo... method setJdbcTransactionIsolation (line 198) | private static void setJdbcTransactionIsolation(AgroalConnectionFactor... method warnMessageAgroalFeature (line 224) | private static void warnMessageAgroalFeature(String propertyName, bool... method warnMessageDepreciatedProperty (line 230) | private static void warnMessageDepreciatedProperty(String propertyName) { FILE: core/src/main/java/com/kumuluz/ee/factories/EeConfigFactory.java class EeConfigFactory (line 35) | public class EeConfigFactory { method buildEeConfig (line 43) | public static EeConfig buildEeConfig() { method isEeConfigValid (line 368) | public static Boolean isEeConfigValid(EeConfig eeConfig) { method createServerConnectorConfigBuilder (line 405) | private static ServerConnectorConfig.Builder createServerConnectorConf... method createMailServiceConfigBuilder (line 455) | private static MailServiceConfig.Builder createMailServiceConfigBuilde... method createGzipConfigBuilder (line 482) | private static GzipConfig.Builder createGzipConfigBuilder(String prefi... method getConfigList (line 509) | private static Optional> getConfigList(String key) { FILE: core/src/main/java/com/kumuluz/ee/factories/JtaXADataSourceFactory.java class JtaXADataSourceFactory (line 32) | @Deprecated method buildJtaXADataSourceWrapper (line 35) | public static NonJtaXADataSourceWrapper buildJtaXADataSourceWrapper(XA... FILE: core/src/main/java/com/kumuluz/ee/loaders/ComponentLoader.java class ComponentLoader (line 43) | public class ComponentLoader { method loadComponents (line 49) | public static List loadComponents() { method scanForAvailableComponents (line 78) | private static List scanForAvailableComponents() { FILE: core/src/main/java/com/kumuluz/ee/loaders/ConfigExtensionLoader.java class ConfigExtensionLoader (line 37) | public class ConfigExtensionLoader { method loadExtensions (line 41) | public static List loadExtensions() { method scanForAvailableExtensions (line 79) | private static List scanForAvailableExtensions() { FILE: core/src/main/java/com/kumuluz/ee/loaders/ExtensionLoader.java class ExtensionLoader (line 37) | public class ExtensionLoader { method loadExtensions (line 41) | public static List loadExtensions() { method scanForAvailableExtensions (line 88) | private static List scanForAvailableExtensions() { FILE: core/src/main/java/com/kumuluz/ee/loaders/LogsExtensionLoader.java class LogsExtensionLoader (line 38) | public class LogsExtensionLoader { method loadExtension (line 40) | public static Optional loadExtension() { method scanForAvailableExtensions (line 99) | private static List scanForAvailableExtensions() { FILE: core/src/main/java/com/kumuluz/ee/loaders/ServerLoader.java class ServerLoader (line 38) | public class ServerLoader { method loadServletServer (line 42) | public static KumuluzServer loadServletServer() { method scanForAvailableServers (line 90) | private static List scanForAvailableServers() { FILE: core/src/test/java/com/kumuluz/ee/test/ExampleTest.java class ExampleTest (line 29) | public class ExampleTest { method testAddition (line 31) | @Test FILE: servlet/jetty/src/main/java/com/kumuluz/ee/jetty/JettyAttributes.java class JettyAttributes (line 27) | public class JettyAttributes { FILE: servlet/jetty/src/main/java/com/kumuluz/ee/jetty/JettyFactory.java class JettyFactory (line 45) | public class JettyFactory { method JettyFactory (line 51) | public JettyFactory(ServerConfig serverConfig) { method create (line 56) | public Server create() { method createThreadPool (line 66) | private ThreadPool createThreadPool() { method createConnectors (line 79) | private Connector[] createConnectors(final Server server) { FILE: servlet/jetty/src/main/java/com/kumuluz/ee/jetty/JettyJarClasspathUtil.java class JettyJarClasspathUtil (line 34) | public class JettyJarClasspathUtil { method getExtraClasspath (line 36) | public static String getExtraClasspath(List scanLibraries) { FILE: servlet/jetty/src/main/java/com/kumuluz/ee/jetty/JettyServletServer.java class JettyServletServer (line 64) | @ServerDef(value = "Jetty", provides = {EeComponentType.SERVLET}) method initServer (line 75) | @Override method startServer (line 81) | @Override method stopServer (line 100) | @Override method initWebContext (line 119) | @Override method getServerConfig (line 238) | @Override method setServerConfig (line 244) | @Override method registerServlet (line 250) | @Override method registerServlet (line 256) | @Override method registerServlet (line 263) | @Override method registerListener (line 286) | @Override method registerFilter (line 298) | @Override method registerFilter (line 304) | @Override method registerFilter (line 310) | @Override method registerFilter (line 316) | @Override method registerDataSource (line 336) | @Override method getRegisteredServlets (line 348) | @Override method registerResource (line 359) | @Override method registerTransactionManager (line 371) | @Override method createJettyFactory (line 380) | private JettyFactory createJettyFactory() { method createConfigurations (line 385) | private List createConfigurations() { FILE: tools/loader/src/main/java/com/kumuluz/ee/loader/EeBootLoader.java class EeBootLoader (line 32) | public class EeBootLoader { method main (line 34) | public static void main(String[] args) throws Throwable { method launch (line 52) | private static void launch(String[] args, String mainClass) throws Thr... FILE: tools/loader/src/main/java/com/kumuluz/ee/loader/EeClassLoader.java class EeClassLoader (line 50) | public class EeClassLoader extends ClassLoader { method EeClassLoader (line 69) | public EeClassLoader() { method EeClassLoader (line 76) | public EeClassLoader(ClassLoader parent) { method createTempDirectory (line 141) | private void createTempDirectory() throws URISyntaxException { method createFile (line 172) | private File createFile(JarEntry jarEntry, InputStream is) throws EeCl... method createJarFile (line 208) | private File createJarFile(JarEntryInfo jarEntryInfo) throws EeClassLo... method extractMainJar (line 224) | private void extractMainJar(JarFileInfo jarFileInfo) throws URISyntaxE... method loadJar (line 252) | private void loadJar(final JarFileInfo jarFileInfo) { method findJarEntry (line 287) | private JarEntryInfo findJarEntry(String name) { method findFile (line 298) | private URL findFile(String name) { method findJarEntries (line 311) | private List findJarEntries(String name) { method findFiles (line 327) | private List findFiles(String name) { method findJarNativeEntry (line 356) | private JarEntryInfo findJarNativeEntry(String libraryName) { method findJarClass (line 387) | private Class findJarClass(String className) throws EeClassLoaderEx... method isLaunchedFromJar (line 420) | private boolean isLaunchedFromJar() { method invokeMain (line 427) | public void invokeMain(String className, String[] args) throws Throwab... method loadClass (line 446) | @Override method findClass (line 502) | @Override method findResource (line 507) | @Override method getResources (line 537) | @Override method findResources (line 542) | @Override method findLibrary (line 570) | @Override method getJarFilesLocations (line 595) | public List getJarFilesLocations(List filenames) { method definePackage (line 654) | private void definePackage(String className, JarEntryInfo jarEntryInfo... method normalizeResourceName (line 676) | private String normalizeResourceName(String name) { method chmod777 (line 680) | private void chmod777(File file) { method getFilenameForLog (line 686) | private String getFilenameForLog(File file) { method debug (line 696) | private void debug(String msg) { FILE: tools/loader/src/main/java/com/kumuluz/ee/loader/exception/EeClassLoaderException.java class EeClassLoaderException (line 27) | public class EeClassLoaderException extends RuntimeException { method EeClassLoaderException (line 29) | public EeClassLoaderException(String message) { method EeClassLoaderException (line 33) | public EeClassLoaderException(String message, Throwable cause) { method getMessageAll (line 37) | public String getMessageAll() { FILE: tools/loader/src/main/java/com/kumuluz/ee/loader/jar/FileInfo.java class FileInfo (line 29) | public class FileInfo { method FileInfo (line 34) | public FileInfo(File file, String simpleName) { method getFile (line 43) | public File getFile() { method setFile (line 47) | public void setFile(File file) { method getSimpleName (line 51) | public String getSimpleName() { method setSimpleName (line 55) | public void setSimpleName(String simpleName) { FILE: tools/loader/src/main/java/com/kumuluz/ee/loader/jar/JarEntryInfo.java class JarEntryInfo (line 41) | public class JarEntryInfo { method JarEntryInfo (line 46) | public JarEntryInfo(JarFileInfo jarFileInfo, JarEntry jarEntry) { method getJarFileInfo (line 51) | public JarFileInfo getJarFileInfo() { method setJarFileInfo (line 55) | public void setJarFileInfo(JarFileInfo jarFileInfo) { method getJarEntry (line 59) | public JarEntry getJarEntry() { method setJarEntry (line 63) | public void setJarEntry(JarEntry jarEntry) { method getURL (line 67) | public URL getURL() { // used in findResource() and findResources() method getName (line 77) | public String getName() { // used in createTempFile() and loadJar() method getJarBytes (line 84) | public byte[] getJarBytes() throws EeClassLoaderException { method toString (line 114) | @Override FILE: tools/loader/src/main/java/com/kumuluz/ee/loader/jar/JarFileInfo.java class JarFileInfo (line 38) | public class JarFileInfo { method JarFileInfo (line 57) | public JarFileInfo(JarFile jarFile, String simpleName, JarFileInfo jar... method getSpecificationTitle (line 72) | public String getSpecificationTitle() { method getSpecificationVersion (line 76) | public String getSpecificationVersion() { method getSpecificationVendor (line 80) | public String getSpecificationVendor() { method getImplementationTitle (line 84) | public String getImplementationTitle() { method getImplementationVersion (line 88) | public String getImplementationVersion() { method getImplementationVendor (line 92) | public String getImplementationVendor() { method getSealURL (line 96) | public URL getSealURL() { method getJarFile (line 108) | public JarFile getJarFile() { method setJarFile (line 112) | public void setJarFile(JarFile jarFile) { method getSimpleName (line 116) | public String getSimpleName() { method setSimpleName (line 120) | public void setSimpleName(String simpleName) { method getFileDeleteOnExit (line 124) | public File getFileDeleteOnExit() { method setFileDeleteOnExit (line 128) | public void setFileDeleteOnExit(File fileDeleteOnExit) { method getManifest (line 132) | public Manifest getManifest() { method setManifest (line 136) | public void setManifest(Manifest manifest) { method getProtectionDomain (line 140) | public ProtectionDomain getProtectionDomain() { method setProtectionDomain (line 144) | public void setProtectionDomain(ProtectionDomain protectionDomain) { FILE: tools/maven-plugin/src/main/java/com/kumuluz/ee/maven/plugin/AbstractCopyDependenciesMojo.java class AbstractCopyDependenciesMojo (line 42) | public abstract class AbstractCopyDependenciesMojo extends AbstractMojo { method copyDependencies (line 57) | protected void copyDependencies() method copyDependencies (line 67) | protected void copyDependencies(String outputSubdirectory) method copyOrCreateWebapp (line 96) | private void copyOrCreateWebapp() throws MojoExecutionException { FILE: tools/maven-plugin/src/main/java/com/kumuluz/ee/maven/plugin/AbstractPackageMojo.java class AbstractPackageMojo (line 45) | public abstract class AbstractPackageMojo extends AbstractCopyDependenci... method repackage (line 58) | protected void repackage() throws MojoExecutionException { method checkPrecoditions (line 70) | private void checkPrecoditions() throws MojoExecutionException { method unpackDependencies (line 79) | private void unpackDependencies() throws MojoExecutionException { method getPluginJarPath (line 143) | private URI getPluginJarPath() throws MojoExecutionException { method packageJar (line 158) | private void packageJar() throws MojoExecutionException { method renameJars (line 189) | private void renameJars() throws MojoExecutionException { FILE: tools/maven-plugin/src/main/java/com/kumuluz/ee/maven/plugin/CopyDependenciesMojo.java class CopyDependenciesMojo (line 35) | @Mojo( method execute (line 43) | @Override FILE: tools/maven-plugin/src/main/java/com/kumuluz/ee/maven/plugin/MojoConstants.java class MojoConstants (line 29) | public class MojoConstants { FILE: tools/maven-plugin/src/main/java/com/kumuluz/ee/maven/plugin/RepackageMojo.java class RepackageMojo (line 35) | @Mojo( method execute (line 44) | @Override FILE: tools/maven-plugin/src/main/java/com/kumuluz/ee/maven/plugin/RunExplodedMojo.java class RunExplodedMojo (line 39) | @Mojo( method execute (line 47) | @Override FILE: tools/maven-plugin/src/main/java/com/kumuluz/ee/maven/plugin/RunJarMojo.java class RunJarMojo (line 45) | public class RunJarMojo extends AbstractPackageMojo { method execute (line 53) | @Override