├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-on-kapua.md ├── actions │ ├── runTestsTaggedAs │ │ └── action.yaml │ ├── saveBuiltKapuaArtifacts │ │ └── action.yaml │ ├── setUpMavenCaches │ │ └── action.yaml │ └── setUpRunner │ │ └── action.yaml └── workflows │ ├── README.md │ ├── kapua-ci.yaml │ ├── license-check.yaml │ ├── security-scan.yaml │ └── sonarCloud-scan.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── RunTests.md ├── SECURITY.md ├── UPGRADE_NOTES.md ├── assembly ├── README.md ├── api │ ├── descriptors │ │ └── kapua-api-jetty.xml │ ├── docker │ │ └── Dockerfile │ ├── entrypoint │ │ └── run-api │ ├── pom.xml │ └── resources │ │ ├── index.html │ │ └── style.css ├── broker-artemis │ ├── configurations │ │ ├── artemis.profile │ │ ├── bootstrap.xml │ │ ├── broker.xml │ │ ├── locator.xml │ │ ├── logback.xml │ │ └── login.config │ ├── descriptors │ │ └── kapua-broker-artemis.xml │ ├── docker │ │ └── Dockerfile │ ├── entrypoint │ │ └── run-broker │ └── pom.xml ├── console │ ├── descriptors │ │ └── kapua-console-jetty.xml │ ├── docker │ │ └── Dockerfile │ ├── entrypoint │ │ └── run-console │ └── pom.xml ├── consumer │ ├── lifecycle │ │ ├── descriptors │ │ │ └── kapua-consumer-lifecycle.xml │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── entrypoint │ │ │ └── run-consumer-lifecycle │ │ └── pom.xml │ ├── pom.xml │ └── telemetry │ │ ├── descriptors │ │ └── kapua-consumer-telemetry.xml │ │ ├── docker │ │ └── Dockerfile │ │ ├── entrypoint │ │ └── run-consumer-telemetry │ │ └── pom.xml ├── events-broker │ ├── configurations │ │ └── broker.xml │ ├── descriptors │ │ └── kapua-events-broker.xml │ ├── docker │ │ └── Dockerfile │ ├── entrypoint │ │ └── run-event-broker │ └── pom.xml ├── java-base │ ├── docker │ │ └── Dockerfile │ └── pom.xml ├── jetty-base │ ├── descriptors │ │ └── jetty-base.xml │ ├── docker │ │ └── Dockerfile │ ├── entrypoint │ │ └── run-jetty │ └── pom.xml ├── job-engine │ ├── descriptors │ │ └── kapua-job-engine-jetty.xml │ ├── docker │ │ └── Dockerfile │ └── pom.xml ├── pom.xml ├── service │ ├── authentication │ │ ├── descriptors │ │ │ └── kapua-service-authentication.xml │ │ ├── docker │ │ │ └── Dockerfile │ │ ├── entrypoint │ │ │ └── run-service-authentication │ │ └── pom.xml │ └── pom.xml └── sql │ ├── descriptors │ └── kapua-sql.xml │ ├── docker │ └── Dockerfile │ ├── entrypoint │ └── run-h2 │ └── pom.xml ├── broker ├── artemis │ ├── plugin │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── broker │ │ │ │ │ └── artemis │ │ │ │ │ ├── AppModule.java │ │ │ │ │ └── plugin │ │ │ │ │ ├── security │ │ │ │ │ ├── ActivateCallback.java │ │ │ │ │ ├── AddressAccessTracker.java │ │ │ │ │ ├── ArtemisSecurityModule.java │ │ │ │ │ ├── ArtemisSecurityModuleClient.java │ │ │ │ │ ├── BrokerJAXBContextProvider.java │ │ │ │ │ ├── MetricsSecurityPlugin.java │ │ │ │ │ ├── PluginUtility.java │ │ │ │ │ ├── RunWithLock.java │ │ │ │ │ ├── SecurityPlugin.java │ │ │ │ │ ├── ServerContext.java │ │ │ │ │ ├── ServerPlugin.java │ │ │ │ │ ├── connector │ │ │ │ │ │ └── AcceptorHandler.java │ │ │ │ │ ├── context │ │ │ │ │ │ ├── Acl.java │ │ │ │ │ │ ├── ConnectionToken.java │ │ │ │ │ │ └── SecurityContext.java │ │ │ │ │ ├── event │ │ │ │ │ │ ├── BrokerEvent.java │ │ │ │ │ │ └── BrokerEventHandler.java │ │ │ │ │ ├── metric │ │ │ │ │ │ ├── ActionMetric.java │ │ │ │ │ │ ├── LoginMetric.java │ │ │ │ │ │ ├── MetricsModule.java │ │ │ │ │ │ ├── PublishMetric.java │ │ │ │ │ │ └── SubscribeMetric.java │ │ │ │ │ └── setting │ │ │ │ │ │ ├── BrokerSetting.java │ │ │ │ │ │ └── BrokerSettingKey.java │ │ │ │ │ └── utils │ │ │ │ │ ├── BrokerHostResolver.java │ │ │ │ │ ├── BrokerIdResolver.java │ │ │ │ │ ├── BrokerIdentity.java │ │ │ │ │ ├── DefaultBrokerHostResolver.java │ │ │ │ │ └── DefaultBrokerIdResolver.java │ │ │ └── resources │ │ │ │ ├── kapua-broker-setting.properties │ │ │ │ └── locator.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── broker │ │ │ │ └── artemis │ │ │ │ └── test │ │ │ │ ├── ConnectTest.java │ │ │ │ └── MqttClient.java │ │ │ └── resources │ │ │ ├── certificates │ │ │ └── build_certificate.sh │ │ │ └── logback.xml │ └── pom.xml └── pom.xml ├── ci-output.sh ├── client ├── cloud │ └── generate-client-java.sh ├── gateway │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── client │ │ │ │ └── gateway │ │ │ │ ├── Application.java │ │ │ │ ├── BinaryPayloadCodec.java │ │ │ │ ├── Client.java │ │ │ │ ├── Credentials.java │ │ │ │ ├── Data.java │ │ │ │ ├── ErrorHandler.java │ │ │ │ ├── MessageErrorHandler.java │ │ │ │ ├── MessageHandler.java │ │ │ │ ├── Payload.java │ │ │ │ ├── Sender.java │ │ │ │ ├── Topic.java │ │ │ │ ├── TransmissionException.java │ │ │ │ ├── Transport.java │ │ │ │ ├── package-info.java │ │ │ │ └── util │ │ │ │ ├── Errors.java │ │ │ │ └── package-info.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── client │ │ │ └── gateway │ │ │ ├── CredentialsTest.java │ │ │ ├── PayloadTest.java │ │ │ ├── TopicTest.java │ │ │ ├── TransmissionExceptionTest.java │ │ │ └── util │ │ │ └── ErrorsTest.java │ ├── features │ │ ├── karaf │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── feature │ │ │ │ └── feature.xml │ │ └── pom.xml │ ├── pom.xml │ ├── profile │ │ └── kura │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── client │ │ │ │ │ └── gateway │ │ │ │ │ ├── kura │ │ │ │ │ ├── KuraBinaryPayloadCodec.java │ │ │ │ │ ├── KuraBirthCertificateModule.java │ │ │ │ │ ├── KuraNamespace.java │ │ │ │ │ ├── internal │ │ │ │ │ │ └── Metrics.java │ │ │ │ │ └── proto │ │ │ │ │ │ └── KuraPayloadProto.java │ │ │ │ │ └── profile │ │ │ │ │ └── kura │ │ │ │ │ ├── KuraMqttProfile.java │ │ │ │ │ └── package-info.java │ │ │ └── protobuf │ │ │ │ └── kurapayload.proto │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── client │ │ │ └── gateway │ │ │ ├── KuraProfileExample.java │ │ │ ├── kura │ │ │ ├── KuraBinaryPayloadCodecTest.java │ │ │ ├── KuraBirthCertificateModuleTest.java │ │ │ ├── KuraNamespaceTest.java │ │ │ └── internal │ │ │ │ └── MetricsTest.java │ │ │ └── profile │ │ │ └── kura │ │ │ └── KuraMqttProfileTest.java │ ├── provider │ │ ├── fuse │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── client │ │ │ │ │ └── gateway │ │ │ │ │ └── mqtt │ │ │ │ │ └── fuse │ │ │ │ │ ├── FuseChannel.java │ │ │ │ │ ├── internal │ │ │ │ │ └── Callbacks.java │ │ │ │ │ └── package-info.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── client │ │ │ │ └── gateway │ │ │ │ └── mqtt │ │ │ │ └── fuse │ │ │ │ ├── FuseChannelTest.java │ │ │ │ └── internal │ │ │ │ └── CallbacksTest.java │ │ ├── mqtt │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── client │ │ │ │ │ └── gateway │ │ │ │ │ └── mqtt │ │ │ │ │ ├── AbstractMqttChannel.java │ │ │ │ │ ├── MqttMessageHandler.java │ │ │ │ │ ├── MqttModuleContext.java │ │ │ │ │ ├── MqttNamespace.java │ │ │ │ │ └── package-info.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── client │ │ │ │ └── gateway │ │ │ │ └── mqtt │ │ │ │ └── AbstractMqttChannelTest.java │ │ ├── paho │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── client │ │ │ │ │ └── gateway │ │ │ │ │ └── mqtt │ │ │ │ │ └── paho │ │ │ │ │ ├── PahoChannel.java │ │ │ │ │ ├── internal │ │ │ │ │ └── Listeners.java │ │ │ │ │ └── package-info.java │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── client │ │ │ │ └── gateway │ │ │ │ └── mqtt │ │ │ │ └── paho │ │ │ │ └── internal │ │ │ │ └── ListenersTest.java │ │ └── pom.xml │ └── spi │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── client │ │ │ └── gateway │ │ │ └── spi │ │ │ ├── AbstractClient.java │ │ │ ├── Channel.java │ │ │ ├── DefaultApplication.java │ │ │ ├── DefaultClient.java │ │ │ ├── DefaultData.java │ │ │ ├── Module.java │ │ │ ├── ModuleContext.java │ │ │ ├── package-info.java │ │ │ └── util │ │ │ ├── Buffers.java │ │ │ ├── Futures.java │ │ │ ├── MoreExecutors.java │ │ │ ├── Strings.java │ │ │ ├── TransportAsync.java │ │ │ ├── TransportProxy.java │ │ │ └── package-info.java │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── client │ │ └── gateway │ │ └── spi │ │ ├── AbstractClientTest.java │ │ ├── DefaultApplicationTest.java │ │ ├── DefaultClientTest.java │ │ ├── DefaultDataTest.java │ │ └── util │ │ ├── BuffersTest.java │ │ ├── FuturesTest.java │ │ ├── MoreExecutorsTest.java │ │ ├── StringsTest.java │ │ ├── TransportAsyncTest.java │ │ └── TransportProxyTest.java ├── pom.xml └── security │ ├── pom.xml │ └── src │ └── main │ └── java │ └── org │ └── eclipse │ └── kapua │ └── client │ └── security │ ├── AuthErrorCodes.java │ ├── ClientSecurityModule.java │ ├── KapuaIllegalDeviceStateException.java │ ├── KapuaMessageListener.java │ ├── MessageHelper.java │ ├── MetricsClientSecurity.java │ ├── ServiceClient.java │ ├── ServiceClientMessagingImpl.java │ ├── amqp │ └── ClientAMQP.java │ ├── bean │ ├── AclUtils.java │ ├── AuthAcl.java │ ├── AuthContext.java │ ├── AuthRequest.java │ ├── AuthResponse.java │ ├── ConnectionInfo.java │ ├── EntityRequest.java │ ├── EntityResponse.java │ ├── KapuaPrincipalImpl.java │ ├── MessageConstants.java │ ├── Request.java │ ├── Response.java │ ├── ResponseContainer.java │ └── serializer │ │ ├── CertificateToStringConverter.java │ │ └── StringToCertificateConverter.java │ ├── client │ ├── Client.java │ ├── Message.java │ └── MessageListener.java │ ├── context │ ├── SessionContext.java │ └── Utils.java │ └── metric │ ├── AuthFailureMetric.java │ ├── AuthLoginMetric.java │ ├── AuthLoginMetricFactory.java │ ├── AuthMetric.java │ └── AuthTimeMetric.java ├── codecov.yml ├── commons-rest ├── errors │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── commons │ │ └── rest │ │ └── errors │ │ ├── CleanJobDataExceptionMapper.java │ │ ├── DeviceManagementRequestContentExceptionMapper.java │ │ ├── DeviceManagementResponseCodeExceptionMapper.java │ │ ├── DeviceManagementResponseContentExceptionMapper.java │ │ ├── DeviceManagementResponseNotFoundExceptionMapper.java │ │ ├── DeviceManagementSendExceptionMapper.java │ │ ├── DeviceManagementTimeoutExceptionMapper.java │ │ ├── DeviceNotConnectedExceptionMapper.java │ │ ├── EclipseLinkExceptionMapper.java │ │ ├── ExceptionConfigurationProvider.java │ │ ├── InternalUserOnlyExceptionMapper.java │ │ ├── JobAlreadyRunningExceptionMapper.java │ │ ├── JobEngineExceptionMapper.java │ │ ├── JobInvalidTargetExceptionMapper.java │ │ ├── JobMissingStepExceptionMapper.java │ │ ├── JobMissingTargetExceptionMapper.java │ │ ├── JobNotRunningExceptionMapper.java │ │ ├── JobResumingExceptionMapper.java │ │ ├── JobRunningExceptionMapper.java │ │ ├── JobScopedEngineExceptionMapper.java │ │ ├── JobStartingExceptionMapper.java │ │ ├── JobStoppingExceptionMapper.java │ │ ├── KapuaAuthenticationExceptionMapper.java │ │ ├── KapuaAuthorizationExceptionMapper.java │ │ ├── KapuaDuplicateNameExceptionMapper.java │ │ ├── KapuaDuplicatePasswordCredentialExceptionMapper.java │ │ ├── KapuaEntityNotFoundExceptionMapper.java │ │ ├── KapuaEntityUniquenessExceptionMapper.java │ │ ├── KapuaExceptionMapper.java │ │ ├── KapuaExistingMfaOptionExceptionMapper.java │ │ ├── KapuaFeatureDisabledExceptionMapper.java │ │ ├── KapuaIllegalAccessExceptionMapper.java │ │ ├── KapuaIllegalArgumentExceptionMapper.java │ │ ├── KapuaIllegalNullArgumentExceptionMapper.java │ │ ├── KapuaIntegrityConstraintViolationExceptionMapper.java │ │ ├── KapuaMaxNumberOfItemsReachedExceptionMapper.java │ │ ├── KapuaPasswordLengthExceptionMapper.java │ │ ├── KapuaRuntimeExceptionMapper.java │ │ ├── KapuaServiceDisabledExceptionMapper.java │ │ ├── ParamExceptionMapper.java │ │ ├── SelfManagedOnlyExceptionMapper.java │ │ ├── ServiceConfigurationLimitExceptionMapper.java │ │ ├── ServiceConfigurationParentLimitExceptionMapper.java │ │ ├── ServiceConfigurationUpdateForbiddenExceptionMapper.java │ │ ├── SubjectUnauthorizedExceptionMapper.java │ │ ├── ThrowableMapper.java │ │ ├── TriggerInvalidDatesExceptionMapper.java │ │ ├── TriggerInvalidSchedulingExceptionMapper.java │ │ └── WebApplicationExceptionMapper.java ├── filters │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── commons │ │ └── rest │ │ └── filters │ │ ├── CORSResponseFilter.java │ │ ├── KapuaSessionCleanupFilter.java │ │ ├── SwaggerUIFilter.java │ │ └── settings │ │ ├── KapuaRestFiltersSetting.java │ │ ├── KapuaRestFiltersSettingKeys.java │ │ └── RestFiltersModule.java ├── model │ ├── about.html │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── commons │ │ │ └── rest │ │ │ └── model │ │ │ ├── IsJobRunningMultipleResponse.java │ │ │ ├── IsJobRunningResponse.java │ │ │ ├── MultipleJobIdRequest.java │ │ │ └── errors │ │ │ ├── CleanJobDataExceptionInfo.java │ │ │ ├── DeviceManagementRequestContentExceptionInfo.java │ │ │ ├── DeviceManagementResponseCodeExceptionInfo.java │ │ │ ├── DeviceManagementResponseContentExceptionInfo.java │ │ │ ├── DeviceManagementSendExceptionInfo.java │ │ │ ├── DeviceManagementTimeoutExceptionInfo.java │ │ │ ├── DeviceNotConnectedExceptionInfo.java │ │ │ ├── DuplicateNameExceptionInfo.java │ │ │ ├── EntityNotFoundExceptionInfo.java │ │ │ ├── EntityUniquenessExceptionInfo.java │ │ │ ├── ExceptionInfo.java │ │ │ ├── IllegalArgumentExceptionInfo.java │ │ │ ├── IllegalNullArgumentExceptionInfo.java │ │ │ ├── InternalUserOnlyExceptionInfo.java │ │ │ ├── JobAlreadyRunningExceptionInfo.java │ │ │ ├── JobEngineExceptionInfo.java │ │ │ ├── JobInvalidTargetExceptionInfo.java │ │ │ ├── JobMissingStepExceptionInfo.java │ │ │ ├── JobMissingTargetExceptionInfo.java │ │ │ ├── JobNotRunningExceptionInfo.java │ │ │ ├── JobResumingExceptionInfo.java │ │ │ ├── JobRunningExceptionInfo.java │ │ │ ├── JobScopedEngineExceptionInfo.java │ │ │ ├── JobStartingExceptionInfo.java │ │ │ ├── JobStoppingExceptionInfo.java │ │ │ ├── MaxNumberOfItemsReachedExceptionInfo.java │ │ │ ├── MfaRequiredExceptionInfo.java │ │ │ ├── SelfManagedOnlyExceptionInfo.java │ │ │ ├── ServiceConfigurationLimitExceededExceptionInfo.java │ │ │ ├── ServiceConfigurationParentLimitExceededExceptionInfo.java │ │ │ ├── ServiceConfigurationUpdateForbiddenExceptionInfo.java │ │ │ ├── SubjectUnauthorizedExceptionInfo.java │ │ │ ├── ThrowableInfo.java │ │ │ ├── TriggerInvalidDatesExceptionInfo.java │ │ │ └── TriggerInvalidSchedulingExceptionInfo.java │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── commons │ │ └── rest │ │ └── model │ │ └── errors │ │ ├── IllegalArgumentExceptionInfoTest.java │ │ ├── IllegalNullArgumentExceptionInfoTest.java │ │ ├── InternalUserOnlyExceptionInfoTest.java │ │ ├── MfaRequiredExceptionInfoTest.java │ │ ├── SelfManagedOnlyExceptionInfoTest.java │ │ ├── SubjectUnauthorizedExceptionInfoTest.java │ │ └── ThrowableInfoTest.java └── pom.xml ├── commons ├── about.html ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── commons │ │ │ ├── CommonsModule.java │ │ │ ├── CommonsModuleEventBus.java │ │ │ ├── ContainerIdResolver.java │ │ │ ├── DefaultContainerIdResolver.java │ │ │ ├── about │ │ │ ├── AboutEntry.java │ │ │ ├── AboutScanner.java │ │ │ └── package-info.java │ │ │ ├── cache │ │ │ ├── Cache.java │ │ │ ├── CacheConfig.java │ │ │ ├── ExpiryPolicy.java │ │ │ └── LocalCache.java │ │ │ ├── configuration │ │ │ ├── AbstractKapuaConfigurableResourceLimitedService.java │ │ │ ├── AbstractKapuaConfigurableService.java │ │ │ ├── AccountRelativeFinder.java │ │ │ ├── CachingServiceConfigRepository.java │ │ │ ├── KapuaConfigurableServiceBase.java │ │ │ ├── KapuaConfigurableServiceSchemaUtils.java │ │ │ ├── KapuaConfigurableServiceSchemaUtilsWithResources.java │ │ │ ├── ResourceBasedServiceConfigurationMetadataProvider.java │ │ │ ├── ResourceLimitedServiceConfigurationManagerImpl.java │ │ │ ├── RootUserTester.java │ │ │ ├── RootUserTesterImpl.java │ │ │ ├── ServiceConfig.java │ │ │ ├── ServiceConfigAttributes.java │ │ │ ├── ServiceConfigCreator.java │ │ │ ├── ServiceConfigCreatorImpl.java │ │ │ ├── ServiceConfigDAO.java │ │ │ ├── ServiceConfigImpl.java │ │ │ ├── ServiceConfigImplJpaRepository.java │ │ │ ├── ServiceConfigListResult.java │ │ │ ├── ServiceConfigListResultImpl.java │ │ │ ├── ServiceConfigQuery.java │ │ │ ├── ServiceConfigQueryImpl.java │ │ │ ├── ServiceConfigRepository.java │ │ │ ├── ServiceConfigurationManager.java │ │ │ ├── ServiceConfigurationManagerCachingWrapper.java │ │ │ ├── ServiceConfigurationManagerImpl.java │ │ │ ├── ServiceConfigurationMetadataProvider.java │ │ │ ├── ServiceConfigurationsFacade.java │ │ │ ├── ServiceConfigurationsFacadeImpl.java │ │ │ ├── UsedEntitiesCounter.java │ │ │ ├── UsedEntitiesCounterImpl.java │ │ │ ├── ValueTokenizer.java │ │ │ ├── exception │ │ │ │ ├── KapuaConfigurationErrorCodes.java │ │ │ │ ├── KapuaConfigurationException.java │ │ │ │ ├── ServiceConfigurationForbiddenException.java │ │ │ │ ├── ServiceConfigurationLimitExceededException.java │ │ │ │ └── ServiceConfigurationParentLimitExceededException.java │ │ │ └── metatype │ │ │ │ └── PasswordPropertyAdapter.java │ │ │ ├── core │ │ │ ├── AbstractKapuaModule.java │ │ │ ├── InterceptorBind.java │ │ │ ├── JaxbClassProvider.java │ │ │ ├── ServiceModule.java │ │ │ ├── ServiceModuleBundle.java │ │ │ └── SimpleJaxbClassProvider.java │ │ │ ├── crypto │ │ │ ├── CryptoUtil.java │ │ │ ├── CryptoUtilImpl.java │ │ │ ├── exception │ │ │ │ ├── AesDecryptionException.java │ │ │ │ ├── AesEncryptionException.java │ │ │ │ ├── AlgorihmNotAvailableRuntimeException.java │ │ │ │ ├── CryptoErrorCodes.java │ │ │ │ ├── CryptoException.java │ │ │ │ ├── CryptoRuntimeException.java │ │ │ │ ├── DefaultSecretKeyDetectedRuntimeException.java │ │ │ │ └── InvalidSecretKeyRuntimeException.java │ │ │ └── setting │ │ │ │ ├── CryptoSettingKeys.java │ │ │ │ └── CryptoSettings.java │ │ │ ├── event │ │ │ ├── HousekeeperRun.java │ │ │ ├── JsonServiceEventMarshaler.java │ │ │ ├── RaiseServiceEventInterceptor.java │ │ │ ├── ServiceEntry.java │ │ │ ├── ServiceEventBusDriver.java │ │ │ ├── ServiceEventBusManager.java │ │ │ ├── ServiceEventClientConfiguration.java │ │ │ ├── ServiceEventHouseKeeperFactory.java │ │ │ ├── ServiceEventHouseKeeperFactoryImpl.java │ │ │ ├── ServiceEventHousekeeper.java │ │ │ ├── ServiceEventMarshaler.java │ │ │ ├── ServiceEventModule.java │ │ │ ├── ServiceEventModuleConfiguration.java │ │ │ ├── ServiceEventModuleTransactionalConfiguration.java │ │ │ ├── ServiceEventScope.java │ │ │ ├── ServiceEventTransactionalHousekeeper.java │ │ │ ├── ServiceEventTransactionalModule.java │ │ │ ├── ServiceInspector.java │ │ │ ├── ServiceMap.java │ │ │ ├── XmlServiceEventMarshaler.java │ │ │ └── jms │ │ │ │ └── JMSServiceEventBus.java │ │ │ ├── jpa │ │ │ ├── AbstractEntityManagerFactory.java │ │ │ ├── CacheFactory.java │ │ │ ├── CommonJpaModule.java │ │ │ ├── CommonsEntityManagerFactory.java │ │ │ ├── DataSource.java │ │ │ ├── DefaultConfigurableJdbcConnectionUrlResolver.java │ │ │ ├── EntityCacheFactory.java │ │ │ ├── EntityManager.java │ │ │ ├── EntityManagerCallback.java │ │ │ ├── EntityManagerContainer.java │ │ │ ├── EntityManagerFactory.java │ │ │ ├── EntityManagerSession.java │ │ │ ├── EntityManagerVoidCallback.java │ │ │ ├── EventStorer.java │ │ │ ├── EventStorerImpl.java │ │ │ ├── H2JdbcConnectionUrlResolver.java │ │ │ ├── JdbcConnectionUrlResolver.java │ │ │ ├── JdbcConnectionUrlResolvers.java │ │ │ ├── JpaAwareTxContext.java │ │ │ ├── JpaTxContext.java │ │ │ ├── KapuaEntityJpaRepository.java │ │ │ ├── KapuaEntityManagerFactory.java │ │ │ ├── KapuaJpaRepositoryConfiguration.java │ │ │ ├── KapuaJpaTxManagerFactory.java │ │ │ ├── KapuaNamedEntityJpaRepository.java │ │ │ ├── KapuaUpdatableEntityJpaRepository.java │ │ │ ├── MariaDBJdbcConnectionUrlResolver.java │ │ │ ├── NamedCacheFactory.java │ │ │ ├── NamedEntityCacheFactory.java │ │ │ ├── OnAfterResult.java │ │ │ ├── OnBeforeResult.java │ │ │ ├── ResourceSqlScriptExecutor.java │ │ │ ├── SecretAttributeConverter.java │ │ │ ├── SimpleSqlScriptExecutor.java │ │ │ ├── TransactionManager.java │ │ │ ├── TransactionManagerNotTransacted.java │ │ │ └── TransactionManagerTransacted.java │ │ │ ├── liquibase │ │ │ ├── DatabaseCheckUpdate.java │ │ │ ├── KapuaLiquibaseClient.java │ │ │ └── settings │ │ │ │ ├── LiquibaseClientSettingKeys.java │ │ │ │ └── LiquibaseClientSettings.java │ │ │ ├── localevent │ │ │ ├── EventHandler.java │ │ │ ├── EventProcessor.java │ │ │ └── ExecutorWrapper.java │ │ │ ├── logging │ │ │ └── LoggingMdcKeys.java │ │ │ ├── metric │ │ │ ├── CommonMetricsModule.java │ │ │ ├── CommonsMetric.java │ │ │ ├── MetricsLabel.java │ │ │ ├── MetricsService.java │ │ │ └── MetricsServiceImpl.java │ │ │ ├── model │ │ │ ├── AbstractKapuaEntity.java │ │ │ ├── AbstractKapuaEntityCreator.java │ │ │ ├── AbstractKapuaNamedEntity.java │ │ │ ├── AbstractKapuaNamedEntityCreator.java │ │ │ ├── AbstractKapuaUpdatableEntity.java │ │ │ ├── AbstractKapuaUpdatableEntityCreator.java │ │ │ ├── domains │ │ │ │ └── Domains.java │ │ │ ├── id │ │ │ │ ├── CommonsModelIdModule.java │ │ │ │ ├── IdGenerator.java │ │ │ │ ├── KapuaEid.java │ │ │ │ ├── KapuaEidConverter.java │ │ │ │ └── KapuaIdFactoryImpl.java │ │ │ ├── mappers │ │ │ │ └── KapuaBaseMapper.java │ │ │ └── query │ │ │ │ ├── AbstractKapuaForwardableEntityQuery.java │ │ │ │ ├── AbstractKapuaNamedQuery.java │ │ │ │ ├── AbstractKapuaQuery.java │ │ │ │ ├── FieldSortCriteriaImpl.java │ │ │ │ ├── KapuaListResultImpl.java │ │ │ │ ├── QueryFactoryImpl.java │ │ │ │ └── predicate │ │ │ │ ├── AbstractMatchPredicate.java │ │ │ │ ├── AndPredicateImpl.java │ │ │ │ ├── AttributePredicateImpl.java │ │ │ │ └── OrPredicateImpl.java │ │ │ ├── security │ │ │ ├── KapuaSecurityUtils.java │ │ │ └── KapuaSession.java │ │ │ ├── service │ │ │ ├── event │ │ │ │ └── store │ │ │ │ │ ├── api │ │ │ │ │ ├── EventStoreFactory.java │ │ │ │ │ ├── EventStoreRecord.java │ │ │ │ │ ├── EventStoreRecordAttributes.java │ │ │ │ │ ├── EventStoreRecordCreator.java │ │ │ │ │ ├── EventStoreRecordListResult.java │ │ │ │ │ ├── EventStoreRecordQuery.java │ │ │ │ │ ├── EventStoreRecordRepository.java │ │ │ │ │ ├── EventStoreService.java │ │ │ │ │ ├── EventStoreXmlRegistry.java │ │ │ │ │ └── ServiceEventUtil.java │ │ │ │ │ └── internal │ │ │ │ │ ├── CommonsServiceEventModule.java │ │ │ │ │ ├── EventStoreDAO.java │ │ │ │ │ ├── EventStoreFactoryImpl.java │ │ │ │ │ ├── EventStoreQueryImpl.java │ │ │ │ │ ├── EventStoreRecordCreatorImpl.java │ │ │ │ │ ├── EventStoreRecordImpl.java │ │ │ │ │ ├── EventStoreRecordImplJpaRepository.java │ │ │ │ │ ├── EventStoreRecordListResultImpl.java │ │ │ │ │ └── EventStoreServiceImpl.java │ │ │ └── internal │ │ │ │ ├── AbstractKapuaService.java │ │ │ │ ├── KapuaNamedEntityServiceUtils.java │ │ │ │ ├── KapuaServiceDisabledException.java │ │ │ │ ├── ServiceDAO.java │ │ │ │ └── cache │ │ │ │ ├── CacheManagerProvider.java │ │ │ │ ├── CacheModule.java │ │ │ │ ├── ComposedKey.java │ │ │ │ ├── EntityCache.java │ │ │ │ ├── KapuaCacheManager.java │ │ │ │ ├── NamedEntityCache.java │ │ │ │ └── dummy │ │ │ │ ├── Cache.java │ │ │ │ ├── CacheManager.java │ │ │ │ └── CachingProvider.java │ │ │ ├── setting │ │ │ ├── AbstractBaseKapuaSetting.java │ │ │ ├── AbstractKapuaSetting.java │ │ │ ├── EnvFriendlyConfiguration.java │ │ │ ├── KapuaSettingErrorCodes.java │ │ │ ├── KapuaSettingException.java │ │ │ ├── SettingKey.java │ │ │ ├── SimpleSettingKey.java │ │ │ └── system │ │ │ │ ├── SystemSetting.java │ │ │ │ ├── SystemSettingKey.java │ │ │ │ └── SystemSettingModule.java │ │ │ ├── storage │ │ │ ├── KapuaEntityRepositoryCachingWrapper.java │ │ │ ├── KapuaNamedEntityRepositoryCachingWrapper.java │ │ │ ├── KapuaUpdatableEntityRepositoryCachingWrapper.java │ │ │ └── memory │ │ │ │ ├── InMemoryTxContext.java │ │ │ │ ├── KapuaEntityInMemoryRepository.java │ │ │ │ ├── KapuaNamedEntityInMemoryRepository.java │ │ │ │ ├── KapuaQueryConverter.java │ │ │ │ ├── KapuaUpdatableEntityInMemoryRepository.java │ │ │ │ └── adapters │ │ │ │ ├── AdaptersWiring.java │ │ │ │ ├── AndPredicateResolver.java │ │ │ │ ├── AttributePredicateResolver.java │ │ │ │ ├── KapuaQueryConverterImpl.java │ │ │ │ ├── OrPredicateResolver.java │ │ │ │ └── QueryPredicateResolver.java │ │ │ └── util │ │ │ ├── ArgumentValidator.java │ │ │ ├── ClassUtil.java │ │ │ ├── CommonsValidationRegex.java │ │ │ ├── KapuaCommonsErrorCodes.java │ │ │ ├── KapuaDateUtils.java │ │ │ ├── KapuaDelayUtil.java │ │ │ ├── KapuaExceptionUtils.java │ │ │ ├── KapuaFileUtils.java │ │ │ ├── Payloads.java │ │ │ ├── PropertiesUtils.java │ │ │ ├── RandomUtils.java │ │ │ ├── ReflectionUtil.java │ │ │ ├── ResourceUtils.java │ │ │ ├── SemanticVersion.java │ │ │ ├── StringUtil.java │ │ │ ├── SystemUtils.java │ │ │ ├── ThrowingRunnable.java │ │ │ ├── ValidationRegex.java │ │ │ ├── log │ │ │ └── ConfigurationPrinter.java │ │ │ ├── qr │ │ │ ├── QRCodeBuilder.java │ │ │ └── QRCodeBuilderImpl.java │ │ │ └── xml │ │ │ ├── JAXBContextProvider.java │ │ │ ├── JAXBContextProviderImpl.java │ │ │ ├── XmlNamespaceFilter.java │ │ │ ├── XmlRootAnnotatedJaxbClassesScanner.java │ │ │ └── XmlUtil.java │ └── resources │ │ ├── META-INF │ │ └── persistence.xml │ │ ├── crypto-error-messages.properties │ │ ├── crypto-settings.properties │ │ ├── kapua-configuration-service-error-messages.properties │ │ ├── kapua-environment-setting.properties │ │ ├── liquibase-client-settings.properties │ │ └── liquibase │ │ ├── 0.2.0 │ │ └── changelog-system-configuration-0.2.0.xml │ │ ├── 0.3.0 │ │ ├── changelog-system-configuration-0.3.0.xml │ │ ├── system_configuration-id_check_positive.xml │ │ └── system_configuration-scope_id_index.xml │ │ ├── 1.0.0 │ │ ├── changelog-event-store.xml │ │ ├── sys-event-store.xml │ │ └── sys-housekeeper-run.xml │ │ ├── 1.2.0 │ │ ├── changelog-event-store-1.2.0.xml │ │ ├── changelog-system-configuration-1.2.0.xml │ │ ├── sys-event-store-timestamp.xml │ │ ├── sys-housekeeper-timestamp.xml │ │ └── system_configuration-timestamp.xml │ │ ├── 2.0.0 │ │ └── databasechangelog_fields_update.xml │ │ ├── changelog-databasechangelog-fields-update-master.pre.xml │ │ ├── changelog-event-store-master.pre.xml │ │ ├── changelog-system-configurations-master.pre.xml │ │ └── common-properties.xml │ └── test │ ├── java │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── commons │ │ ├── about │ │ ├── AboutEntryTest.java │ │ └── AboutScannerTest.java │ │ ├── cache │ │ └── LocalCacheTest.java │ │ ├── configuration │ │ ├── KapuaConfigurableServiceSchemaUtilsTest.java │ │ ├── KapuaConfigurableServiceSchemaUtilsWithResourcesTest.java │ │ ├── ServiceComponentConfigurationTest.java │ │ ├── ServiceConfigAttributeTest.java │ │ ├── ServiceConfigImplTest.java │ │ ├── ServiceConfigQueryImplTest.java │ │ ├── ServiceConfigurationCreatorImplTest.java │ │ ├── StringUtilTest.java │ │ └── ValueTokenizerTest.java │ │ ├── crypto │ │ └── CryptoUtilImplTest.java │ │ ├── event │ │ ├── HousekeeperRunTest.java │ │ ├── ServiceEntryTest.java │ │ ├── ServiceEventClientConfigurationTest.java │ │ ├── ServiceEventModuleConfigurationTest.java │ │ └── ServiceEventScopeTest.java │ │ ├── liquibase │ │ └── KapuaLiquibaseClientTest.java │ │ ├── metric │ │ └── MetricsServiceImplTest.java │ │ ├── model │ │ ├── AbstractCommonServiceTest.java │ │ ├── AbstractKapuaEntityCreatorTest.java │ │ ├── AbstractKapuaEntityTest.java │ │ ├── AbstractKapuaNamedEntityCreatorTest.java │ │ ├── AbstractKapuaNamedEntityTest.java │ │ ├── AbstractKapuaUpdatableEntityCreatorTest.java │ │ ├── AbstractKapuaUpdatableEntityTest.java │ │ ├── id │ │ │ ├── IdGeneratorTest.java │ │ │ ├── KapuaEidConverterTest.java │ │ │ ├── KapuaEidTest.java │ │ │ └── KapuaIdFactoryImplTest.java │ │ ├── misc │ │ │ ├── CollisionEntity.java │ │ │ ├── CollisionEntityJpaRepository.java │ │ │ └── CollisionIdGenerator.java │ │ └── query │ │ │ ├── AbstractKapuaQueryTest.java │ │ │ ├── FieldSortCriteriaImplTest.java │ │ │ ├── KapuaListResultImplTest.java │ │ │ └── predicate │ │ │ ├── AndPredicateImplTest.java │ │ │ ├── AttributePredicateImplTest.java │ │ │ └── OrPredicateImplTest.java │ │ ├── security │ │ └── KapuaDoPrivilegeTest.java │ │ ├── service │ │ ├── event │ │ │ └── store │ │ │ │ └── internal │ │ │ │ ├── EventStoreFactoryImplTest.java │ │ │ │ ├── EventStoreQueryImplTest.java │ │ │ │ ├── EventStoreRecordCreatorImplTest.java │ │ │ │ └── EventStoreRecordImplTest.java │ │ └── internal │ │ │ └── cache │ │ │ ├── ComposedKeyTest.java │ │ │ ├── EntityCacheTest.java │ │ │ ├── MockitoLocator.java │ │ │ └── dummy │ │ │ ├── CacheManagerTest.java │ │ │ ├── CacheTest.java │ │ │ └── CachingProviderTest.java │ │ ├── setting │ │ ├── AbstractBaseKapuaSettingTest.java │ │ ├── AbstractKapuaSettingTest.java │ │ ├── EnvFriendlyConfigurationTest.java │ │ ├── KapuaSettingErrorCodesTest.java │ │ ├── KapuaSettingExceptionTest.java │ │ ├── SimpleSettingKeyTest.java │ │ └── system │ │ │ ├── SystemSettingKeyTest.java │ │ │ └── SystemSettingTest.java │ │ └── util │ │ ├── ArgumentValidatorTest.java │ │ ├── ClassUtilTest.java │ │ ├── CommonsValidationRegexTest.java │ │ ├── CryptoUtilImplTest.java │ │ ├── KapuaDateUtilsTest.java │ │ ├── KapuaDelayUtilTest.java │ │ ├── KapuaErrorCodesTest.java │ │ ├── KapuaExceptionUtilsTest.java │ │ ├── KapuaFileUtilsTest.java │ │ ├── PayloadsTest.java │ │ ├── PropertiesUtilsTest.java │ │ ├── RandomUtilsTest.java │ │ ├── ResourceUtilsTest.java │ │ ├── SemanticVersionTest.java │ │ ├── StringUtilTest.java │ │ ├── SystemUtilsTest.java │ │ ├── log │ │ └── ConfigurationPrinterTest.java │ │ └── xml │ │ ├── XmlNamespaceFilterTest.java │ │ ├── XmlUtilTest.java │ │ ├── XmlUtilTestJAXBContextProvider.java │ │ └── XmlUtilTestObject.java │ ├── resources │ ├── META-INF │ │ ├── MANIFEST.MF │ │ └── persistence.xml │ ├── crypto-settings.properties │ ├── kapua-environment-setting.properties │ ├── liquibase │ │ ├── changelog-liquibase-master.xml │ │ └── liquibase.sql │ ├── locator.xml │ ├── logback.xml │ └── test.properties │ └── sql │ └── H2 │ └── test_collision_entity_test_create.sql ├── console ├── .gitignore ├── README.md ├── about.html ├── core │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── core │ │ │ ├── client │ │ │ ├── ChangePasswordDialog.java │ │ │ ├── InfoPopup.java │ │ │ ├── KapuaCloudConsole.java │ │ │ ├── KapuaViewport.java │ │ │ ├── LoginDialog.java │ │ │ ├── MfaLoginDialog.java │ │ │ ├── MfaManagementDialog.java │ │ │ ├── NorthView.java │ │ │ ├── WestNavigationView.java │ │ │ └── util │ │ │ │ ├── ImageUtils.java │ │ │ │ ├── ScaledAbstractImagePrototype.java │ │ │ │ └── TokenCleaner.java │ │ │ ├── filter │ │ │ └── KapuaWebFilter.java │ │ │ ├── server │ │ │ ├── GwtAuthorizationServiceImpl.java │ │ │ ├── GwtSettingsServiceImpl.java │ │ │ └── util │ │ │ │ ├── ConsoleSsoHelper.java │ │ │ │ ├── ConsoleSsoLocator.java │ │ │ │ ├── OpenIDLogoutListener.java │ │ │ │ └── SsoLocatorListener.java │ │ │ ├── servlet │ │ │ ├── FileServlet.java │ │ │ ├── KapuaErrorHandlerServlet.java │ │ │ ├── KapuaHttpServlet.java │ │ │ ├── SkinServlet.java │ │ │ ├── SsoCallbackServlet.java │ │ │ └── UploadRequest.java │ │ │ └── shared │ │ │ ├── FieldVerifier.java │ │ │ ├── model │ │ │ ├── GwtProductInformation.java │ │ │ ├── KapuaFormFields.java │ │ │ ├── KapuaPagingLoadConfig.java │ │ │ ├── KapuaPagingLoadResult.java │ │ │ ├── KapuaPagingLoader.java │ │ │ └── authentication │ │ │ │ ├── GwtJwtCredential.java │ │ │ │ ├── GwtJwtIdToken.java │ │ │ │ └── GwtLoginCredential.java │ │ │ └── service │ │ │ ├── GwtAuthorizationService.java │ │ │ └── GwtSettingsService.java │ │ └── resources │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── app │ │ └── console │ │ └── core │ │ ├── adminCore.gwt.xml │ │ ├── client │ │ └── messages │ │ │ └── ConsoleCoreMessages.properties │ │ └── servlet │ │ ├── http_error_template.html │ │ └── throwable_error_template.html ├── epl-2.0.html ├── module │ ├── about │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── about │ │ │ │ ├── client │ │ │ │ └── about │ │ │ │ │ ├── AboutView.java │ │ │ │ │ └── AboutViewDescriptor.java │ │ │ │ ├── server │ │ │ │ └── GwtAboutServiceImpl.java │ │ │ │ └── shared │ │ │ │ ├── model │ │ │ │ ├── GwtAboutDependency.java │ │ │ │ └── GwtAboutInformation.java │ │ │ │ └── service │ │ │ │ └── GwtAboutService.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── about │ │ │ ├── adminModuleAbout.gwt.xml │ │ │ └── client │ │ │ └── messages │ │ │ └── ConsoleAboutMessages.properties │ ├── account │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── account │ │ │ │ ├── client │ │ │ │ ├── AccountConfigComponents.java │ │ │ │ ├── AccountConfigPanel.java │ │ │ │ ├── AccountDescriptionTab.java │ │ │ │ ├── AccountDescriptionTabDescriptor.java │ │ │ │ ├── AccountDetailsTabCors.java │ │ │ │ ├── AccountDetailsTabDescription.java │ │ │ │ ├── AccountDetailsView.java │ │ │ │ ├── AccountDetailsViewDescriptor.java │ │ │ │ ├── AccountFilterPanel.java │ │ │ │ ├── AccountGrid.java │ │ │ │ ├── AccountTabConfiguration.java │ │ │ │ ├── AccountTabConfigurationDescriptor.java │ │ │ │ ├── AccountView.java │ │ │ │ ├── AccountViewDescriptor.java │ │ │ │ ├── childuser │ │ │ │ │ ├── AccountChildUserGrid.java │ │ │ │ │ ├── AccountChildUserTab.java │ │ │ │ │ ├── AccountChildUserTabDescriptor.java │ │ │ │ │ └── AccountChildUserToolbar.java │ │ │ │ ├── cors │ │ │ │ │ ├── CorsAddDialog.java │ │ │ │ │ ├── CorsDeleteDialog.java │ │ │ │ │ ├── CorsEditDialog.java │ │ │ │ │ ├── CorsGrid.java │ │ │ │ │ ├── CorsTabDescriptionDescriptor.java │ │ │ │ │ ├── CorsToolbarGrid.java │ │ │ │ │ └── CorsView.java │ │ │ │ └── toolbar │ │ │ │ │ ├── AccountAddDialog.java │ │ │ │ │ ├── AccountDeleteDialog.java │ │ │ │ │ ├── AccountEditDialog.java │ │ │ │ │ └── AccountGridToolbar.java │ │ │ │ ├── server │ │ │ │ └── GwtAccountServiceImpl.java │ │ │ │ └── shared │ │ │ │ ├── model │ │ │ │ ├── GwtAccount.java │ │ │ │ ├── GwtAccountCreator.java │ │ │ │ ├── GwtAccountQuery.java │ │ │ │ ├── GwtAccountStringListItem.java │ │ │ │ ├── GwtOrganization.java │ │ │ │ └── permission │ │ │ │ │ └── AccountSessionPermission.java │ │ │ │ ├── service │ │ │ │ └── GwtAccountService.java │ │ │ │ └── util │ │ │ │ ├── GwtKapuaAccountModelConverter.java │ │ │ │ └── KapuaGwtAccountModelConverter.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── account │ │ │ ├── adminModuleAccount.gwt.xml │ │ │ └── client │ │ │ └── messages │ │ │ └── ConsoleAccountMessages.properties │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── app │ │ │ │ │ └── console │ │ │ │ │ └── module │ │ │ │ │ └── api │ │ │ │ │ ├── client │ │ │ │ │ ├── GwtKapuaErrorCode.java │ │ │ │ │ ├── GwtKapuaException.java │ │ │ │ │ ├── resources │ │ │ │ │ │ └── icons │ │ │ │ │ │ │ ├── 16x16 │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ ├── 32x32 │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ ├── IconSet.java │ │ │ │ │ │ │ └── KapuaIcon.java │ │ │ │ │ ├── ui │ │ │ │ │ │ ├── button │ │ │ │ │ │ │ ├── AddButton.java │ │ │ │ │ │ │ ├── DeleteButton.java │ │ │ │ │ │ │ ├── DiscardButton.java │ │ │ │ │ │ │ ├── EditButton.java │ │ │ │ │ │ │ ├── ExportButton.java │ │ │ │ │ │ │ ├── KapuaButton.java │ │ │ │ │ │ │ ├── RefreshButton.java │ │ │ │ │ │ │ ├── SaveButton.java │ │ │ │ │ │ │ └── SplitButton.java │ │ │ │ │ │ ├── color │ │ │ │ │ │ │ └── Color.java │ │ │ │ │ │ ├── dialog │ │ │ │ │ │ │ ├── ActionDialog.java │ │ │ │ │ │ │ ├── FileUploadDialog.java │ │ │ │ │ │ │ ├── InfoDialog.java │ │ │ │ │ │ │ ├── KapuaDialog.java │ │ │ │ │ │ │ ├── KapuaMessageBox.java │ │ │ │ │ │ │ ├── SimpleDialog.java │ │ │ │ │ │ │ ├── TabbedDialog.java │ │ │ │ │ │ │ └── entity │ │ │ │ │ │ │ │ ├── EntityAddEditDialog.java │ │ │ │ │ │ │ │ ├── EntityDeleteDialog.java │ │ │ │ │ │ │ │ └── EntityLogDialog.java │ │ │ │ │ │ ├── grid │ │ │ │ │ │ │ ├── CreatedByNameCellRenderer.java │ │ │ │ │ │ │ ├── EntityGrid.java │ │ │ │ │ │ │ ├── EntityGridCheckBoxSelectionModel.java │ │ │ │ │ │ │ ├── EntityGridLoadListener.java │ │ │ │ │ │ │ ├── KapuaEditableGrid.java │ │ │ │ │ │ │ ├── KapuaGrid.java │ │ │ │ │ │ │ ├── KapuaTreeGrid.java │ │ │ │ │ │ │ ├── KapuaTreeGridView.java │ │ │ │ │ │ │ └── ModifiedByNameCellRenderer.java │ │ │ │ │ │ ├── label │ │ │ │ │ │ │ └── Label.java │ │ │ │ │ │ ├── panel │ │ │ │ │ │ │ ├── ContentPanel.java │ │ │ │ │ │ │ ├── EntityFilterPanel.java │ │ │ │ │ │ │ ├── FormPanel.java │ │ │ │ │ │ │ ├── KapuaBorderLayoutData.java │ │ │ │ │ │ │ └── KapuaTabPanel.java │ │ │ │ │ │ ├── tab │ │ │ │ │ │ │ ├── EntityDescriptionTabItem.java │ │ │ │ │ │ │ ├── KapuaTabItem.java │ │ │ │ │ │ │ └── TabItem.java │ │ │ │ │ │ ├── validator │ │ │ │ │ │ │ ├── GwtValidationRegex.java │ │ │ │ │ │ │ └── RegexFieldValidator.java │ │ │ │ │ │ ├── view │ │ │ │ │ │ │ ├── AbstractEntityView.java │ │ │ │ │ │ │ ├── AbstractView.java │ │ │ │ │ │ │ ├── EntityView.java │ │ │ │ │ │ │ ├── View.java │ │ │ │ │ │ │ └── descriptor │ │ │ │ │ │ │ │ ├── AbstractEntityTabDescriptor.java │ │ │ │ │ │ │ │ ├── AbstractEntityViewDescriptor.java │ │ │ │ │ │ │ │ ├── AbstractMainViewDescriptor.java │ │ │ │ │ │ │ │ ├── AbstractTabDescriptor.java │ │ │ │ │ │ │ │ ├── AbstractViewDescriptor.java │ │ │ │ │ │ │ │ ├── EntityTabDescriptor.java │ │ │ │ │ │ │ │ ├── EntityViewDescriptor.java │ │ │ │ │ │ │ │ ├── MainViewDescriptor.java │ │ │ │ │ │ │ │ ├── TabDescriptor.java │ │ │ │ │ │ │ │ └── ViewDescriptor.java │ │ │ │ │ │ └── widget │ │ │ │ │ │ │ ├── ComboEnumCellEditor.java │ │ │ │ │ │ │ ├── DateRangeSelector.java │ │ │ │ │ │ │ ├── DateRangeSelectorListener.java │ │ │ │ │ │ │ ├── EntityCRUDToolbar.java │ │ │ │ │ │ │ ├── EntityGridField.java │ │ │ │ │ │ │ ├── EntityGridFieldToolbar.java │ │ │ │ │ │ │ ├── EnumComboBox.java │ │ │ │ │ │ │ ├── KapuaDateField.java │ │ │ │ │ │ │ ├── KapuaMenuItem.java │ │ │ │ │ │ │ ├── KapuaNumberField.java │ │ │ │ │ │ │ ├── KapuaPagingToolBar.java │ │ │ │ │ │ │ ├── KapuaPagingToolbarMessages.java │ │ │ │ │ │ │ ├── KapuaTextArea.java │ │ │ │ │ │ │ ├── KapuaTextField.java │ │ │ │ │ │ │ ├── UsageDateRangeSelector.java │ │ │ │ │ │ │ ├── UsageDateRangeSelectorListener.java │ │ │ │ │ │ │ ├── UsageQueryTypeSelector.java │ │ │ │ │ │ │ └── UsageQueryTypeSelectorListener.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── ConsoleInfo.java │ │ │ │ │ │ ├── Constants.java │ │ │ │ │ │ ├── CookieUtils.java │ │ │ │ │ │ ├── CssLiterals.java │ │ │ │ │ │ ├── DateUtils.java │ │ │ │ │ │ ├── DialogUtils.java │ │ │ │ │ │ ├── FailureHandler.java │ │ │ │ │ │ ├── FormUtils.java │ │ │ │ │ │ ├── KapuaLoadListener.java │ │ │ │ │ │ ├── KapuaSafeHtmlUtils.java │ │ │ │ │ │ ├── MessageUtils.java │ │ │ │ │ │ ├── SplitTooltipStringUtil.java │ │ │ │ │ │ ├── SwappableListStore.java │ │ │ │ │ │ ├── UserAgentUtils.java │ │ │ │ │ │ ├── Years.java │ │ │ │ │ │ └── validator │ │ │ │ │ │ ├── AfterDateValidator.java │ │ │ │ │ │ ├── BeforeDateValidator.java │ │ │ │ │ │ ├── ConfirmPasswordFieldValidator.java │ │ │ │ │ │ ├── ConfirmPasswordUpdateFieldValidator.java │ │ │ │ │ │ ├── DateRangeValidator.java │ │ │ │ │ │ ├── DeviceDisplayNameValidator.java │ │ │ │ │ │ ├── EditableComboValidator.java │ │ │ │ │ │ ├── NumberFieldValidator.java │ │ │ │ │ │ ├── PasswordFieldValidator.java │ │ │ │ │ │ ├── PasswordUpdateFieldValidator.java │ │ │ │ │ │ └── TextFieldValidator.java │ │ │ │ │ ├── server │ │ │ │ │ ├── GwtConsoleServiceImpl.java │ │ │ │ │ ├── GwtSecurityTokenServiceImpl.java │ │ │ │ │ ├── KapuaRemoteServiceServlet.java │ │ │ │ │ └── util │ │ │ │ │ │ ├── KapuaExceptionHandler.java │ │ │ │ │ │ └── UserCreatedByModifiedByUtils.java │ │ │ │ │ ├── setting │ │ │ │ │ ├── ConsoleSetting.java │ │ │ │ │ └── ConsoleSettingKeys.java │ │ │ │ │ └── shared │ │ │ │ │ ├── model │ │ │ │ │ ├── Enum.java │ │ │ │ │ ├── GwtConfigComponent.java │ │ │ │ │ ├── GwtConfigParameter.java │ │ │ │ │ ├── GwtEntityCreator.java │ │ │ │ │ ├── GwtEntityModel.java │ │ │ │ │ ├── GwtGroupedNVPair.java │ │ │ │ │ ├── GwtStringListItem.java │ │ │ │ │ ├── GwtUpdatableEntityModel.java │ │ │ │ │ ├── GwtXSRFToken.java │ │ │ │ │ ├── KapuaBaseModel.java │ │ │ │ │ ├── KapuaBasePagingCursor.java │ │ │ │ │ ├── KapuaBaseTreeModel.java │ │ │ │ │ ├── query │ │ │ │ │ │ └── GwtQuery.java │ │ │ │ │ └── session │ │ │ │ │ │ ├── GwtSession.java │ │ │ │ │ │ ├── GwtSessionPermission.java │ │ │ │ │ │ ├── GwtSessionPermissionAction.java │ │ │ │ │ │ └── GwtSessionPermissionScope.java │ │ │ │ │ ├── service │ │ │ │ │ ├── GwtConsoleService.java │ │ │ │ │ └── GwtSecurityTokenService.java │ │ │ │ │ └── util │ │ │ │ │ ├── GwtKapuaCommonsModelConverter.java │ │ │ │ │ └── KapuaGwtCommonsModelConverter.java │ │ │ └── resources │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── api │ │ │ │ ├── adminModuleApi.gwt.xml │ │ │ │ └── client │ │ │ │ └── messages │ │ │ │ ├── ConsoleMessages.properties │ │ │ │ └── ValidationMessages.properties │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── api │ │ │ └── test │ │ │ └── SplitTooltipStringTest.java │ ├── authentication │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── app │ │ │ │ │ └── console │ │ │ │ │ └── module │ │ │ │ │ └── authentication │ │ │ │ │ ├── client │ │ │ │ │ └── tabs │ │ │ │ │ │ └── credentials │ │ │ │ │ │ ├── ApiKeyConfirmationDialog.java │ │ │ │ │ │ ├── CredentialAddDialog.java │ │ │ │ │ │ ├── CredentialDeleteDialog.java │ │ │ │ │ │ ├── CredentialEditDialog.java │ │ │ │ │ │ ├── CredentialGrid.java │ │ │ │ │ │ ├── CredentialResetDialog.java │ │ │ │ │ │ ├── CredentialTabItem.java │ │ │ │ │ │ ├── CredentialToolbar.java │ │ │ │ │ │ ├── CredentialUnlockDialog.java │ │ │ │ │ │ ├── DisableMfaDialog.java │ │ │ │ │ │ ├── ForgetTrustMachineDialog.java │ │ │ │ │ │ └── MfaManagementPanel.java │ │ │ │ │ ├── server │ │ │ │ │ ├── GwtCredentialServiceImpl.java │ │ │ │ │ └── GwtMfaCredentialOptionsServiceImpl.java │ │ │ │ │ └── shared │ │ │ │ │ ├── model │ │ │ │ │ ├── GwtCredential.java │ │ │ │ │ ├── GwtCredentialCreator.java │ │ │ │ │ ├── GwtCredentialQuery.java │ │ │ │ │ ├── GwtCredentialStatus.java │ │ │ │ │ ├── GwtMfaCredentialOptions.java │ │ │ │ │ ├── GwtMfaCredentialOptionsCreator.java │ │ │ │ │ ├── GwtSubjectType.java │ │ │ │ │ └── permission │ │ │ │ │ │ └── CredentialSessionPermission.java │ │ │ │ │ ├── service │ │ │ │ │ ├── GwtCredentialService.java │ │ │ │ │ └── GwtMfaCredentialOptionsService.java │ │ │ │ │ └── util │ │ │ │ │ ├── GwtKapuaAuthenticationModelConverter.java │ │ │ │ │ └── KapuaGwtAuthenticationModelConverter.java │ │ │ └── resources │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── authentication │ │ │ │ ├── adminModuleAuthentication.gwt.xml │ │ │ │ └── client │ │ │ │ └── messages │ │ │ │ └── ConsoleCredentialMessages.properties │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── authentication │ │ │ └── shared │ │ │ └── model │ │ │ └── GwtCredentialTest.java │ ├── authorization │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── authorization │ │ │ │ ├── client │ │ │ │ ├── group │ │ │ │ │ ├── GroupAddDialog.java │ │ │ │ │ ├── GroupDeleteDialog.java │ │ │ │ │ ├── GroupEditDialog.java │ │ │ │ │ ├── GroupFilterPanel.java │ │ │ │ │ ├── GroupGrid.java │ │ │ │ │ ├── GroupTabDescription.java │ │ │ │ │ ├── GroupTabDescriptionDescriptor.java │ │ │ │ │ ├── GroupToolbarGrid.java │ │ │ │ │ ├── GroupView.java │ │ │ │ │ └── GroupViewDescriptor.java │ │ │ │ ├── role │ │ │ │ │ ├── RoleFilterPanel.java │ │ │ │ │ ├── RoleGrid.java │ │ │ │ │ ├── RolePermissionGrid.java │ │ │ │ │ ├── RolePermissionToolbar.java │ │ │ │ │ ├── RoleTabDescription.java │ │ │ │ │ ├── RoleTabDescriptionDescriptor.java │ │ │ │ │ ├── RoleTabPermissionGrid.java │ │ │ │ │ ├── RoleTabPermissionGridDescriptor.java │ │ │ │ │ ├── RoleToolbarGrid.java │ │ │ │ │ ├── RoleView.java │ │ │ │ │ ├── RoleViewDescriptor.java │ │ │ │ │ └── dialog │ │ │ │ │ │ ├── RoleAddDialog.java │ │ │ │ │ │ ├── RoleDeleteDialog.java │ │ │ │ │ │ ├── RoleEditDialog.java │ │ │ │ │ │ ├── RolePermissionAddDialog.java │ │ │ │ │ │ ├── RolePermissionDeleteDialog.java │ │ │ │ │ │ └── RolePermissionGridFieldToolbar.java │ │ │ │ └── tabs │ │ │ │ │ ├── permission │ │ │ │ │ ├── PermissionAddDialog.java │ │ │ │ │ ├── PermissionDeleteDialog.java │ │ │ │ │ ├── UserTabPermissionGrid.java │ │ │ │ │ └── UserTabPermissionToolbar.java │ │ │ │ │ └── role │ │ │ │ │ ├── AccessRoleAddDialog.java │ │ │ │ │ ├── AccessRoleDeleteDialog.java │ │ │ │ │ ├── UserTabAccessRoleGrid.java │ │ │ │ │ └── UserTabAccessRoleToolbar.java │ │ │ │ ├── server │ │ │ │ ├── GwtAccessInfoServiceImpl.java │ │ │ │ ├── GwtAccessPermissionServiceImpl.java │ │ │ │ ├── GwtAccessRoleServiceImpl.java │ │ │ │ ├── GwtDomainRegistryServiceImpl.java │ │ │ │ ├── GwtGroupServiceImpl.java │ │ │ │ └── GwtRoleServiceImpl.java │ │ │ │ └── shared │ │ │ │ ├── model │ │ │ │ ├── GwtAccessInfo.java │ │ │ │ ├── GwtAccessInfoCreator.java │ │ │ │ ├── GwtAccessPermission.java │ │ │ │ ├── GwtAccessPermissionCreator.java │ │ │ │ ├── GwtAccessRole.java │ │ │ │ ├── GwtAccessRoleCreator.java │ │ │ │ ├── GwtAccessRoleQuery.java │ │ │ │ ├── GwtAccessTagQuery.java │ │ │ │ ├── GwtDomain.java │ │ │ │ ├── GwtGroup.java │ │ │ │ ├── GwtGroupCreator.java │ │ │ │ ├── GwtGroupQuery.java │ │ │ │ ├── GwtPermission.java │ │ │ │ ├── GwtRole.java │ │ │ │ ├── GwtRoleCreator.java │ │ │ │ ├── GwtRolePermission.java │ │ │ │ ├── GwtRolePermissionCreator.java │ │ │ │ ├── GwtRoleQuery.java │ │ │ │ └── permission │ │ │ │ │ ├── AccessInfoSessionPermission.java │ │ │ │ │ ├── DomainSessionPermission.java │ │ │ │ │ ├── GroupSessionPermission.java │ │ │ │ │ └── RoleSessionPermission.java │ │ │ │ ├── service │ │ │ │ ├── GwtAccessInfoService.java │ │ │ │ ├── GwtAccessPermissionService.java │ │ │ │ ├── GwtAccessRoleService.java │ │ │ │ ├── GwtDomainRegistryService.java │ │ │ │ ├── GwtGroupService.java │ │ │ │ └── GwtRoleService.java │ │ │ │ └── util │ │ │ │ ├── GwtKapuaAuthorizationModelConverter.java │ │ │ │ └── KapuaGwtAuthorizationModelConverter.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── authorization │ │ │ ├── adminModuleAuthorization.gwt.xml │ │ │ └── client │ │ │ └── messages │ │ │ ├── ConsoleGroupMessages.properties │ │ │ ├── ConsolePermissionMessages.properties │ │ │ └── ConsoleRoleMessages.properties │ ├── certificate │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── certificate │ │ │ │ ├── server │ │ │ │ └── GwtCertificateInfoServiceImpl.java │ │ │ │ └── shared │ │ │ │ ├── model │ │ │ │ └── GwtCertificateInfo.java │ │ │ │ └── service │ │ │ │ └── GwtCertificateInfoService.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── certificate │ │ │ ├── adminModuleCertificate.gwt.xml │ │ │ └── client │ │ │ └── messages │ │ │ └── ConsoleCertificateMessages.properties │ ├── data │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── data │ │ │ │ ├── client │ │ │ │ ├── AssetTabItem.java │ │ │ │ ├── AssetTable.java │ │ │ │ ├── ChannelTable.java │ │ │ │ ├── ConsoleResizeHandler.java │ │ │ │ ├── DataView.java │ │ │ │ ├── DataViewDescriptor.java │ │ │ │ ├── DeviceTabItem.java │ │ │ │ ├── DeviceTable.java │ │ │ │ ├── DeviceTimestampCellRenderer.java │ │ │ │ ├── GridSelectionChangedListener.java │ │ │ │ ├── GwtTopic.java │ │ │ │ ├── MetricsTable.java │ │ │ │ ├── ResultsTable.java │ │ │ │ ├── TopicTimestampCellRenderer.java │ │ │ │ ├── TopicsTabItem.java │ │ │ │ ├── TopicsTable.java │ │ │ │ └── util │ │ │ │ │ ├── GwtMessage.java │ │ │ │ │ └── HeaderTypeUtils.java │ │ │ │ ├── server │ │ │ │ └── GwtDataServiceImpl.java │ │ │ │ ├── servlet │ │ │ │ ├── DataExporter.java │ │ │ │ ├── DataExporterCsv.java │ │ │ │ └── DataExporterServlet.java │ │ │ │ └── shared │ │ │ │ ├── model │ │ │ │ ├── GwtDataChannelInfoQuery.java │ │ │ │ ├── GwtDatastoreAsset.java │ │ │ │ ├── GwtDatastoreChannel.java │ │ │ │ ├── GwtDatastoreDevice.java │ │ │ │ ├── GwtHeader.java │ │ │ │ └── permission │ │ │ │ │ └── DatastoreSessionPermission.java │ │ │ │ ├── service │ │ │ │ └── GwtDataService.java │ │ │ │ └── util │ │ │ │ ├── GwtKapuaDataModelConverter.java │ │ │ │ └── KapuaGwtDataModelConverter.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── data │ │ │ ├── adminModuleData.gwt.xml │ │ │ └── client │ │ │ └── messages │ │ │ └── ConsoleDataMessages.properties │ ├── device │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── device │ │ │ │ ├── client │ │ │ │ ├── connection │ │ │ │ │ ├── ConnectionDescriptionTab.java │ │ │ │ │ ├── ConnectionDescriptionTabDescriptor.java │ │ │ │ │ ├── ConnectionEditDialog.java │ │ │ │ │ ├── ConnectionFilterPanel.java │ │ │ │ │ ├── ConnectionGrid.java │ │ │ │ │ ├── ConnectionView.java │ │ │ │ │ ├── ConnectionViewDescriptor.java │ │ │ │ │ └── toolbar │ │ │ │ │ │ ├── ConnectionGridToolbar.java │ │ │ │ │ │ └── DeviceConnectionDisconnectDialog.java │ │ │ │ └── device │ │ │ │ │ ├── DeviceAddDialog.java │ │ │ │ │ ├── DeviceDeleteDialog.java │ │ │ │ │ ├── DeviceDisconnectDialog.java │ │ │ │ │ ├── DeviceEditDialog.java │ │ │ │ │ ├── DeviceFilterPanel.java │ │ │ │ │ ├── DeviceGrid.java │ │ │ │ │ ├── DeviceGridToolbar.java │ │ │ │ │ ├── DeviceMap.java │ │ │ │ │ ├── DeviceView.java │ │ │ │ │ ├── DeviceViewDescriptor.java │ │ │ │ │ ├── assets │ │ │ │ │ ├── AssetDetailsTable.java │ │ │ │ │ ├── DeviceAssetsPanel.java │ │ │ │ │ ├── DeviceAssetsValues.java │ │ │ │ │ ├── DeviceTabAssets.java │ │ │ │ │ ├── DeviceTabAssetsDescriptor.java │ │ │ │ │ └── settings │ │ │ │ │ │ └── DeviceAssetStoreSettingsDialog.java │ │ │ │ │ ├── bundles │ │ │ │ │ ├── BundleStartButton.java │ │ │ │ │ ├── BundleStopButton.java │ │ │ │ │ ├── DeviceTabBundles.java │ │ │ │ │ └── DeviceTabBundlesDescriptor.java │ │ │ │ │ ├── command │ │ │ │ │ ├── DeviceTabCommand.java │ │ │ │ │ └── DeviceTabCommandDescriptor.java │ │ │ │ │ ├── configuration │ │ │ │ │ ├── ConfigurationPanelTable.java │ │ │ │ │ ├── DeviceConfigComponents.java │ │ │ │ │ ├── DeviceConfigPanel.java │ │ │ │ │ ├── DeviceConfigSnapshots.java │ │ │ │ │ ├── DeviceTabConfiguration.java │ │ │ │ │ ├── DeviceTabConfigurationDescriptor.java │ │ │ │ │ ├── SnapshotDownloadButton.java │ │ │ │ │ ├── SnapshotRollbackButton.java │ │ │ │ │ ├── SnapshotUploadButton.java │ │ │ │ │ └── settings │ │ │ │ │ │ └── DeviceConfigurationsStoreSettingsDialog.java │ │ │ │ │ ├── events │ │ │ │ │ ├── DeviceTabEvents.java │ │ │ │ │ ├── DeviceTabEventsDescriptor.java │ │ │ │ │ └── EventMessageDetailsDialog.java │ │ │ │ │ ├── group │ │ │ │ │ ├── DevicesGroupTabItem.java │ │ │ │ │ ├── DevicesGroupTabItemDescriptor.java │ │ │ │ │ └── GroupSubjectGrid.java │ │ │ │ │ ├── inventory │ │ │ │ │ ├── DeviceTabInventory.java │ │ │ │ │ ├── DeviceTabInventoryDescriptor.java │ │ │ │ │ ├── DeviceTabInventoryTabBundles.java │ │ │ │ │ ├── DeviceTabInventoryTabContainer.java │ │ │ │ │ ├── DeviceTabInventoryTabDeploymentPackages.java │ │ │ │ │ ├── DeviceTabInventoryTabInventory.java │ │ │ │ │ ├── DeviceTabInventoryTabSystemPackages.java │ │ │ │ │ ├── buttons │ │ │ │ │ │ ├── ContainerStartButton.java │ │ │ │ │ │ └── ContainerStopButton.java │ │ │ │ │ └── dialog │ │ │ │ │ │ ├── InventoryBundleStartStopDialog.java │ │ │ │ │ │ └── InventoryContainerStartStopDialog.java │ │ │ │ │ ├── keystore │ │ │ │ │ ├── DeviceTabKeystore.java │ │ │ │ │ ├── DeviceTabKeystoreDescriptor.java │ │ │ │ │ ├── button │ │ │ │ │ │ ├── KeystoreItemCsrButton.java │ │ │ │ │ │ ├── KeystoreItemDeleteButton.java │ │ │ │ │ │ └── KeystoreItemDetailsButton.java │ │ │ │ │ └── dialog │ │ │ │ │ │ ├── KeystoreItemAddCertificateInfoDialog.java │ │ │ │ │ │ ├── KeystoreItemAddCertificateRawDialog.java │ │ │ │ │ │ ├── KeystoreItemAddCsrConfirmationDialog.java │ │ │ │ │ │ ├── KeystoreItemAddCsrDialog.java │ │ │ │ │ │ ├── KeystoreItemAddKeypairDialog.java │ │ │ │ │ │ ├── KeystoreItemDeleteDialog.java │ │ │ │ │ │ └── KeystoreItemDetailsDialog.java │ │ │ │ │ ├── packages │ │ │ │ │ ├── DeviceTabPackages.java │ │ │ │ │ ├── DeviceTabPackagesDescriptor.java │ │ │ │ │ ├── DeviceTabPackagesHistory.java │ │ │ │ │ ├── DeviceTabPackagesInProgress.java │ │ │ │ │ ├── DeviceTabPackagesInstalled.java │ │ │ │ │ ├── button │ │ │ │ │ │ ├── DeviceManagementOperationLogButton.java │ │ │ │ │ │ ├── PackageInstallButton.java │ │ │ │ │ │ └── PackageUninstallButton.java │ │ │ │ │ └── dialog │ │ │ │ │ │ ├── DeviceManagementOperationLog.java │ │ │ │ │ │ ├── PackageInstallDialog.java │ │ │ │ │ │ └── PackageUninstallDialog.java │ │ │ │ │ ├── profile │ │ │ │ │ ├── DeviceTabProfile.java │ │ │ │ │ └── DeviceTabProfileDescriptor.java │ │ │ │ │ └── tag │ │ │ │ │ ├── DeviceTabTags.java │ │ │ │ │ ├── DeviceTabTagsDescriptor.java │ │ │ │ │ ├── DeviceTagAddDialog.java │ │ │ │ │ ├── DeviceTagDeleteDialog.java │ │ │ │ │ ├── DeviceTagGrid.java │ │ │ │ │ ├── DeviceTagToolbar.java │ │ │ │ │ ├── DevicesTagTabItem.java │ │ │ │ │ ├── DevicesTagsTabItemDescriptor.java │ │ │ │ │ └── TagSubjectGrid.java │ │ │ │ ├── server │ │ │ │ ├── GwtDeviceAssetServiceImpl.java │ │ │ │ ├── GwtDeviceConnectionOptionServiceImpl.java │ │ │ │ ├── GwtDeviceConnectionServiceImpl.java │ │ │ │ ├── GwtDeviceInventoryManagementServiceImpl.java │ │ │ │ ├── GwtDeviceKeystoreManagementServiceImpl.java │ │ │ │ ├── GwtDeviceManagementOperationServiceImpl.java │ │ │ │ ├── GwtDeviceManagementServiceImpl.java │ │ │ │ └── GwtDeviceServiceImpl.java │ │ │ │ ├── servlet │ │ │ │ ├── DeviceEventExporter.java │ │ │ │ ├── DeviceEventExporterCsv.java │ │ │ │ ├── DeviceEventExporterServlet.java │ │ │ │ ├── DeviceExporter.java │ │ │ │ ├── DeviceExporterCsv.java │ │ │ │ ├── DeviceExporterServlet.java │ │ │ │ └── DeviceSnapshotsServlet.java │ │ │ │ └── shared │ │ │ │ ├── model │ │ │ │ ├── GwtDevice.java │ │ │ │ ├── GwtDeviceCreator.java │ │ │ │ ├── GwtDeviceQuery.java │ │ │ │ ├── GwtDeviceQueryPredicates.java │ │ │ │ ├── connection │ │ │ │ │ ├── GwtDeviceConnection.java │ │ │ │ │ ├── GwtDeviceConnectionOption.java │ │ │ │ │ ├── GwtDeviceConnectionQuery.java │ │ │ │ │ ├── GwtDeviceConnectionQueryPredicates.java │ │ │ │ │ └── GwtDeviceConnectionStatus.java │ │ │ │ ├── event │ │ │ │ │ └── GwtDeviceEvent.java │ │ │ │ ├── management │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── GwtChannel.java │ │ │ │ │ │ ├── GwtDeviceAsset.java │ │ │ │ │ │ ├── GwtDeviceAssetChannel.java │ │ │ │ │ │ ├── GwtDeviceAssetStoreSettings.java │ │ │ │ │ │ └── GwtDeviceAssets.java │ │ │ │ │ ├── bundles │ │ │ │ │ │ ├── GwtBundle.java │ │ │ │ │ │ └── GwtBundleInfo.java │ │ │ │ │ ├── command │ │ │ │ │ │ ├── GwtDeviceCommandInput.java │ │ │ │ │ │ └── GwtDeviceCommandOutput.java │ │ │ │ │ ├── configurations │ │ │ │ │ │ ├── GwtDeviceConfigurationStoreSettings.java │ │ │ │ │ │ └── GwtSnapshot.java │ │ │ │ │ ├── inventory │ │ │ │ │ │ ├── GwtInventoryBundle.java │ │ │ │ │ │ ├── GwtInventoryContainer.java │ │ │ │ │ │ ├── GwtInventoryDeploymentPackage.java │ │ │ │ │ │ ├── GwtInventoryItem.java │ │ │ │ │ │ └── GwtInventorySystemPackage.java │ │ │ │ │ ├── keystore │ │ │ │ │ │ ├── GwtDeviceKeystore.java │ │ │ │ │ │ ├── GwtDeviceKeystoreCertificate.java │ │ │ │ │ │ ├── GwtDeviceKeystoreCsr.java │ │ │ │ │ │ ├── GwtDeviceKeystoreItem.java │ │ │ │ │ │ └── GwtDeviceKeystoreKeypair.java │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── GwtDeploymentPackage.java │ │ │ │ │ │ ├── GwtFileType.java │ │ │ │ │ │ ├── GwtPackageDownloadOperation.java │ │ │ │ │ │ ├── GwtPackageInstallRequest.java │ │ │ │ │ │ ├── GwtPackageOperation.java │ │ │ │ │ │ └── GwtPackageUninstallRequest.java │ │ │ │ │ └── registry │ │ │ │ │ │ ├── GwtDeviceManagementOperation.java │ │ │ │ │ │ ├── GwtDeviceManagementOperationQuery.java │ │ │ │ │ │ └── GwtOperationStatus.java │ │ │ │ └── permission │ │ │ │ │ ├── DeviceConnectionSessionPermission.java │ │ │ │ │ ├── DeviceEventSessionPermission.java │ │ │ │ │ ├── DeviceManagementRegistrySessionPermission.java │ │ │ │ │ ├── DeviceManagementSessionPermission.java │ │ │ │ │ └── DeviceSessionPermission.java │ │ │ │ ├── service │ │ │ │ ├── GwtDeviceAssetService.java │ │ │ │ ├── GwtDeviceConnectionOptionService.java │ │ │ │ ├── GwtDeviceConnectionService.java │ │ │ │ ├── GwtDeviceInventoryManagementService.java │ │ │ │ ├── GwtDeviceKeystoreManagementService.java │ │ │ │ ├── GwtDeviceManagementOperationService.java │ │ │ │ ├── GwtDeviceManagementService.java │ │ │ │ └── GwtDeviceService.java │ │ │ │ └── util │ │ │ │ ├── GwtKapuaDeviceModelConverter.java │ │ │ │ └── KapuaGwtDeviceModelConverter.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── device │ │ │ ├── adminModuleDevice.gwt.xml │ │ │ └── client │ │ │ └── messages │ │ │ ├── ConsoleConnectionMessages.properties │ │ │ └── ConsoleDeviceMessages.properties │ ├── endpoint │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── endpoint │ │ │ │ ├── client │ │ │ │ ├── EndpointAddDialog.java │ │ │ │ ├── EndpointDeleteDialog.java │ │ │ │ ├── EndpointEditDialog.java │ │ │ │ ├── EndpointFilterPanel.java │ │ │ │ ├── EndpointGrid.java │ │ │ │ ├── EndpointModel.java │ │ │ │ ├── EndpointTabDescription.java │ │ │ │ ├── EndpointTabDescriptionDescriptor.java │ │ │ │ ├── EndpointToolbarGrid.java │ │ │ │ ├── EndpointView.java │ │ │ │ └── EndpointViewDescriptor.java │ │ │ │ ├── server │ │ │ │ └── GwtEndpointServiceImpl.java │ │ │ │ └── shared │ │ │ │ ├── model │ │ │ │ ├── GwtEndpoint.java │ │ │ │ ├── GwtEndpointCreator.java │ │ │ │ ├── GwtEndpointQuery.java │ │ │ │ ├── permission │ │ │ │ │ └── EndpointSessionPermission.java │ │ │ │ └── validation │ │ │ │ │ └── GwtEndpointValidationRegex.java │ │ │ │ ├── service │ │ │ │ └── GwtEndpointService.java │ │ │ │ └── util │ │ │ │ ├── GwtKapuaEndpointModelConverter.java │ │ │ │ └── KapuaGwtEndpointModelConverter.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── endpoint │ │ │ ├── adminModuleEndpoint.gwt.xml │ │ │ └── client │ │ │ └── messages │ │ │ └── ConsoleEndpointMessages.properties │ ├── job │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── job │ │ │ │ ├── client │ │ │ │ ├── JobAddDialog.java │ │ │ │ ├── JobDeleteDialog.java │ │ │ │ ├── JobDeleteForcedDialog.java │ │ │ │ ├── JobEditDialog.java │ │ │ │ ├── JobFilterPanel.java │ │ │ │ ├── JobGrid.java │ │ │ │ ├── JobGridToolbar.java │ │ │ │ ├── JobRestartDialog.java │ │ │ │ ├── JobStartDialog.java │ │ │ │ ├── JobStopDialog.java │ │ │ │ ├── JobTabDescription.java │ │ │ │ ├── JobTabDescriptionDescriptor.java │ │ │ │ ├── JobView.java │ │ │ │ ├── JobViewDescriptor.java │ │ │ │ ├── execution │ │ │ │ │ ├── JobExecutionLogButton.java │ │ │ │ │ ├── JobExecutionLogDialog.java │ │ │ │ │ ├── JobExecutionStopDialog.java │ │ │ │ │ ├── JobTabExecutions.java │ │ │ │ │ ├── JobTabExecutionsDescriptor.java │ │ │ │ │ ├── JobTabExecutionsGrid.java │ │ │ │ │ └── JobTabExecutionsToolbar.java │ │ │ │ ├── schedule │ │ │ │ │ ├── JobScheduleAddDialog.java │ │ │ │ │ ├── JobScheduleDeleteDialog.java │ │ │ │ │ ├── JobTabSchedules.java │ │ │ │ │ ├── JobTabSchedulesDescriptor.java │ │ │ │ │ ├── JobTabSchedulesGrid.java │ │ │ │ │ └── JobTabSchedulesToolbar.java │ │ │ │ ├── steps │ │ │ │ │ ├── JobStepAddDialog.java │ │ │ │ │ ├── JobStepDeleteDialog.java │ │ │ │ │ ├── JobStepEditDialog.java │ │ │ │ │ ├── JobTabSteps.java │ │ │ │ │ ├── JobTabStepsDescriptor.java │ │ │ │ │ ├── JobTabStepsGrid.java │ │ │ │ │ └── JobTabStepsToolbar.java │ │ │ │ └── targets │ │ │ │ │ ├── JobTabTargets.java │ │ │ │ │ ├── JobTabTargetsDescriptor.java │ │ │ │ │ ├── JobTabTargetsGrid.java │ │ │ │ │ ├── JobTabTargetsToolbar.java │ │ │ │ │ ├── JobTargetAddDeviceGrid.java │ │ │ │ │ ├── JobTargetAddDialog.java │ │ │ │ │ ├── JobTargetAddTagGrid.java │ │ │ │ │ ├── JobTargetDeleteDialog.java │ │ │ │ │ ├── JobTargetRestartTargetDialog.java │ │ │ │ │ └── JobTargetStartTargetDialog.java │ │ │ │ ├── server │ │ │ │ ├── GwtJobEngineServiceImpl.java │ │ │ │ ├── GwtJobExecutionServiceImpl.java │ │ │ │ ├── GwtJobServiceImpl.java │ │ │ │ ├── GwtJobStepDefinitionServiceImpl.java │ │ │ │ ├── GwtJobStepServiceImpl.java │ │ │ │ ├── GwtJobTargetServiceImpl.java │ │ │ │ ├── GwtTriggerDefinitionServiceImpl.java │ │ │ │ └── GwtTriggerServiceImpl.java │ │ │ │ ├── servlet │ │ │ │ ├── JobTargetExporter.java │ │ │ │ ├── JobTargetExporterCsv.java │ │ │ │ └── JobTargetExporterServlet.java │ │ │ │ └── shared │ │ │ │ ├── model │ │ │ │ ├── GwtJob.java │ │ │ │ ├── GwtJobCreator.java │ │ │ │ ├── GwtJobExecution.java │ │ │ │ ├── GwtJobExecutionQuery.java │ │ │ │ ├── GwtJobQuery.java │ │ │ │ ├── GwtJobStartOptions.java │ │ │ │ ├── GwtJobStep.java │ │ │ │ ├── GwtJobStepCreator.java │ │ │ │ ├── GwtJobStepDefinition.java │ │ │ │ ├── GwtJobStepDefinitionQuery.java │ │ │ │ ├── GwtJobStepProperty.java │ │ │ │ ├── GwtJobStepQuery.java │ │ │ │ ├── GwtJobTarget.java │ │ │ │ ├── GwtJobTargetCreator.java │ │ │ │ ├── GwtJobTargetQuery.java │ │ │ │ ├── permission │ │ │ │ │ ├── JobSessionPermission.java │ │ │ │ │ └── SchedulerSessionPermission.java │ │ │ │ └── scheduler │ │ │ │ │ ├── GwtTrigger.java │ │ │ │ │ ├── GwtTriggerCreator.java │ │ │ │ │ ├── GwtTriggerProperty.java │ │ │ │ │ ├── GwtTriggerQuery.java │ │ │ │ │ └── definition │ │ │ │ │ ├── GwtTriggerDefinition.java │ │ │ │ │ └── GwtTriggerDefinitionQuery.java │ │ │ │ ├── service │ │ │ │ ├── GwtJobEngineService.java │ │ │ │ ├── GwtJobExecutionService.java │ │ │ │ ├── GwtJobService.java │ │ │ │ ├── GwtJobStepDefinitionService.java │ │ │ │ ├── GwtJobStepService.java │ │ │ │ ├── GwtJobTargetService.java │ │ │ │ ├── GwtTriggerDefinitionService.java │ │ │ │ └── GwtTriggerService.java │ │ │ │ └── util │ │ │ │ ├── GwtKapuaJobModelConverter.java │ │ │ │ └── KapuaGwtJobModelConverter.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── job │ │ │ ├── adminModuleJob.gwt.xml │ │ │ └── client │ │ │ └── messages │ │ │ └── ConsoleJobMessages.properties │ ├── pom.xml │ ├── tag │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── tag │ │ │ │ ├── client │ │ │ │ ├── TagAddDialog.java │ │ │ │ ├── TagDeleteDialog.java │ │ │ │ ├── TagEditDialog.java │ │ │ │ ├── TagFilterPanel.java │ │ │ │ ├── TagGrid.java │ │ │ │ ├── TagTabDescription.java │ │ │ │ ├── TagTabDescriptionDescriptor.java │ │ │ │ ├── TagToolbarGrid.java │ │ │ │ ├── TagView.java │ │ │ │ └── TagViewDescriptor.java │ │ │ │ ├── server │ │ │ │ └── GwtTagServiceImpl.java │ │ │ │ └── shared │ │ │ │ ├── model │ │ │ │ ├── GwtTag.java │ │ │ │ ├── GwtTagCreator.java │ │ │ │ ├── GwtTagQuery.java │ │ │ │ └── permission │ │ │ │ │ └── TagSessionPermission.java │ │ │ │ ├── service │ │ │ │ └── GwtTagService.java │ │ │ │ └── util │ │ │ │ ├── GwtKapuaTagModelConverter.java │ │ │ │ └── KapuaGwtTagModelConverter.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── tag │ │ │ ├── adminModuleTag.gwt.xml │ │ │ └── client │ │ │ └── messages │ │ │ └── ConsoleTagMessages.properties │ ├── user │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ └── module │ │ │ │ └── user │ │ │ │ ├── client │ │ │ │ ├── UserFilterPanel.java │ │ │ │ ├── UserGrid.java │ │ │ │ ├── UserGridToolbar.java │ │ │ │ ├── UserView.java │ │ │ │ ├── UserViewDescriptor.java │ │ │ │ ├── dialog │ │ │ │ │ ├── UserAddDialog.java │ │ │ │ │ ├── UserDeleteDialog.java │ │ │ │ │ └── UserEditDialog.java │ │ │ │ └── tabs │ │ │ │ │ ├── credentials │ │ │ │ │ ├── UserTabItemCredentials.java │ │ │ │ │ ├── UserTabItemCredentialsDescriptor.java │ │ │ │ │ ├── UserTabItemMfa.java │ │ │ │ │ └── UserTabItemMfaDescriptor.java │ │ │ │ │ ├── description │ │ │ │ │ ├── UserTabDescription.java │ │ │ │ │ └── UserTabDescriptionDescriptor.java │ │ │ │ │ ├── permission │ │ │ │ │ ├── UserTabItemPermission.java │ │ │ │ │ └── UserTabItemPermissionDescriptor.java │ │ │ │ │ └── roles │ │ │ │ │ ├── RoleSubjectGrid.java │ │ │ │ │ ├── UserTabItemAccessRole.java │ │ │ │ │ ├── UserTabItemAccessRoleDescriptor.java │ │ │ │ │ ├── UsersRoleTabItem.java │ │ │ │ │ └── UsersRoleTabItemDescriptor.java │ │ │ │ ├── server │ │ │ │ └── GwtUserServiceImpl.java │ │ │ │ └── shared │ │ │ │ ├── model │ │ │ │ ├── GwtUser.java │ │ │ │ ├── GwtUserCreator.java │ │ │ │ ├── GwtUserPermission.java │ │ │ │ ├── GwtUserQuery.java │ │ │ │ └── permission │ │ │ │ │ └── UserSessionPermission.java │ │ │ │ ├── service │ │ │ │ └── GwtUserService.java │ │ │ │ └── util │ │ │ │ ├── GwtKapuaUserModelConverter.java │ │ │ │ └── KapuaGwtUserModelConverter.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── user │ │ │ ├── adminModuleUser.gwt.xml │ │ │ └── client │ │ │ └── messages │ │ │ └── ConsoleUserMessages.properties │ └── welcome │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ └── module │ │ │ └── welcome │ │ │ └── client │ │ │ ├── WelcomeView.java │ │ │ └── WelcomeViewDescriptor.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.kapua.app.console.module.api.client.ui.view.descriptor.MainViewDescriptor │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── app │ │ └── console │ │ └── module │ │ └── welcome │ │ ├── adminModuleWelcome.gwt.xml │ │ └── client │ │ └── messages │ │ └── ConsoleWelcomeMessages.properties ├── notice.html ├── pom.xml └── web │ ├── about.html │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── console │ │ │ ├── AppModule.java │ │ │ ├── ConsoleJAXBContextProvider.java │ │ │ └── server │ │ │ └── util │ │ │ └── ConsoleListener.java │ ├── resources │ │ ├── console-setting.properties │ │ ├── locator.xml │ │ ├── logback.xml │ │ ├── org │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── console │ │ │ │ ├── admin.gwt.xml │ │ │ │ ├── adminDev.gwt.xml │ │ │ │ └── view-descriptors.json │ │ └── shiro.ini │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── console.jsp │ │ ├── css │ │ └── console.css │ │ ├── fontAwesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── img │ │ ├── button │ │ │ └── arrow_down.png │ │ ├── icon-color.ico │ │ ├── icon-color.svg │ │ ├── login-background.jpeg │ │ ├── logo-color.svg │ │ ├── logo-white.svg │ │ ├── mfa │ │ │ ├── android.png │ │ │ ├── apple.png │ │ │ └── blank.png │ │ └── misc │ │ │ ├── horizontal_splitter.png │ │ │ └── vertical_splitter.png │ │ └── js │ │ └── kapuaconsole │ │ └── console.js │ └── test │ ├── java │ └── .gitkeep │ └── resources │ └── logback.xml ├── consumer ├── lifecycle-app │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── consumer │ │ │ └── lifecycle │ │ │ ├── AppModule.java │ │ │ ├── LifecycleApplication.java │ │ │ ├── LifecycleJAXBContextProvider.java │ │ │ ├── LifecycleRouteHealthIndicator.java │ │ │ └── SpringBridge.java │ │ └── resources │ │ ├── camel │ │ └── camel.xml │ │ ├── locator.xml │ │ ├── logback.xml │ │ ├── shiro.ini │ │ └── spring │ │ ├── application.properties │ │ └── applicationContext.xml ├── lifecycle │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── consumer │ │ └── lifecycle │ │ ├── MetricsLifecycle.java │ │ ├── converter │ │ ├── DeviceManagementNotificationConverter.java │ │ └── KapuaLifeCycleConverter.java │ │ └── listener │ │ ├── DeviceManagementNotificationMessageProcessor.java │ │ ├── DeviceManagementNotificationMessageProcessorSpring.java │ │ └── DeviceMessageListener.java ├── pom.xml ├── telemetry-app │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── consumer │ │ │ └── telemetry │ │ │ ├── AppModule.java │ │ │ ├── SpringBridge.java │ │ │ ├── TelemetryApplication.java │ │ │ ├── TelemetryJAXBContextProvider.java │ │ │ └── TelemetryRouteHealthIndicator.java │ │ └── resources │ │ ├── camel │ │ └── camel.xml │ │ ├── locator.xml │ │ ├── logback.xml │ │ ├── shiro.ini │ │ └── spring │ │ ├── application.properties │ │ └── applicationContext.xml └── telemetry │ ├── pom.xml │ └── src │ └── main │ └── java │ └── org │ └── eclipse │ └── kapua │ └── consumer │ └── telemetry │ ├── MetricsTelemetry.java │ ├── TelemetryService.java │ ├── converter │ └── KapuaDataConverter.java │ └── listener │ └── DataStorageMessageProcessor.java ├── deployment ├── README.md ├── commons │ ├── pom.xml │ └── sso │ │ ├── README.md │ │ └── keycloak │ │ ├── README.md │ │ ├── build │ │ ├── docker │ │ └── Dockerfile │ │ └── entrypoint │ │ └── run-keycloak ├── docker │ ├── README.md │ ├── compose │ │ ├── docker-compose.yml │ │ ├── extras │ │ │ ├── docker-compose.api-dev.yml │ │ │ ├── docker-compose.broker-debug.yml │ │ │ ├── docker-compose.broker-jmx.yml │ │ │ ├── docker-compose.broker-ssl.yml │ │ │ ├── docker-compose.console-debug.yml │ │ │ ├── docker-compose.console-jmx.yml │ │ │ ├── docker-compose.console-ssl.yml │ │ │ ├── docker-compose.consumer-lifecycle-debug.yml │ │ │ ├── docker-compose.consumer-lifecycle-jmx.yml │ │ │ ├── docker-compose.consumer-telemetry-debug.yml │ │ │ ├── docker-compose.consumer-telemetry-jmx.yml │ │ │ ├── docker-compose.db-dev.yml │ │ │ ├── docker-compose.es-dev.yml │ │ │ ├── docker-compose.es-storage-dir.yml │ │ │ ├── docker-compose.job-engine-debug.yml │ │ │ ├── docker-compose.job-engine-jmx.yml │ │ │ ├── docker-compose.rest-debug.yml │ │ │ ├── docker-compose.rest-jmx.yml │ │ │ ├── docker-compose.rest-ssl.yml │ │ │ ├── docker-compose.service-authentication-debug.yml │ │ │ └── docker-compose.service-authentication-jmx.yml │ │ └── sso │ │ │ ├── README.md │ │ │ ├── docker-compose.console-sso.yml │ │ │ ├── docker-compose.keycloak.yml │ │ │ └── docker-compose.rest-api-sso.yml │ ├── pom.xml │ ├── unix │ │ ├── configure-certificates.sh │ │ ├── docker-common.sh │ │ ├── docker-deploy.sh │ │ ├── docker-logs.sh │ │ ├── docker-undeploy.sh │ │ └── sso │ │ │ ├── console │ │ │ └── Dockerfile │ │ │ ├── docker-common-sso.sh │ │ │ ├── docker-sso-config.sh │ │ │ └── rest-api │ │ │ └── Dockerfile │ └── win │ │ ├── docker-common.ps1 │ │ ├── docker-deploy.ps1 │ │ ├── docker-logs.ps1 │ │ └── docker-undeploy.ps1 ├── minishift │ ├── README.md │ ├── minishift-deploy.sh │ ├── minishift-destroy.sh │ ├── minishift-importer.sh │ ├── minishift-initialize.sh │ ├── minishift-pull-images.sh │ ├── minishift-undeploy.sh │ ├── pom.xml │ └── sso │ │ ├── README.md │ │ ├── activate │ │ ├── deploy │ │ ├── keycloak-importer │ │ └── undeploy ├── openshift │ ├── README.md │ ├── openshift-common.sh │ ├── openshift-deploy.sh │ ├── openshift-destroy.sh │ ├── openshift-initialize.sh │ ├── openshift-start.sh │ ├── pom.xml │ ├── sso │ │ ├── README.md │ │ ├── activate │ │ ├── deploy │ │ ├── destroy │ │ ├── env │ │ ├── functions │ │ └── keycloak-template.yml │ └── templates │ │ ├── kapua-template-api.yml │ │ ├── kapua-template-broker.yml │ │ ├── kapua-template-console.yml │ │ └── kapua-template-core.yml └── pom.xml ├── dev-tools ├── cucumber-reports │ ├── pom.xml │ └── src │ │ └── main │ │ ├── descriptors │ │ └── kapua-cucumber-report.xml │ │ └── resources │ │ └── html │ │ └── cucumber │ │ ├── eclipse.css │ │ ├── index.html │ │ └── kapua-200.png ├── header │ └── update_year_header.sh ├── pom.xml └── src │ └── main │ └── eclipse │ └── codeStyle │ ├── KapuaCleanup_v_1.0.xml │ └── KapuaFormatter_v_2.1.xml ├── docs ├── README.md ├── developer-guide │ └── en │ │ ├── .gitignore │ │ ├── README.md │ │ ├── book.json │ │ ├── building.md │ │ ├── client.md │ │ ├── database.md │ │ ├── ide.md │ │ ├── images │ │ ├── ide │ │ │ ├── eclipse_ide_001_installer.png │ │ │ ├── eclipse_ide_002_marketplace.png │ │ │ ├── eclipse_ide_003_clone_git.png │ │ │ ├── eclipse_ide_004_import_1.png │ │ │ ├── eclipse_ide_005_import_2.png │ │ │ ├── eclipse_ide_006_m2e_install.png │ │ │ ├── eclipse_ide_007_mvn_run.png │ │ │ └── eclipse_ide_008_add_gensrc.png │ │ ├── kapua-logo.png │ │ ├── kapua-reports-main-page.png │ │ └── kapua-sample-test-report.png │ │ ├── qa.md │ │ ├── running.md │ │ ├── sso.md │ │ └── summary.md ├── kuraKapuaDocs.md └── user-manual │ └── en │ ├── .gitignore │ ├── Permissions.md │ ├── README.md │ ├── book.json │ ├── community.md │ ├── credentials.md │ ├── images │ ├── credential_service_settings.png │ ├── kapua-logo.png │ ├── mfa_enable.png │ ├── mfa_login.png │ ├── mfa_qr_code.png │ ├── mfa_user_view.png │ └── rest-api.png │ ├── jwt_security.md │ ├── mfa.md │ ├── rest.md │ ├── simulator.md │ └── summary.md ├── extras ├── encryption-migrator │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── extras │ │ │ └── migrator │ │ │ ├── MigratorModule.java │ │ │ └── encryption │ │ │ ├── Application.java │ │ │ ├── EntityAttributeMigrator.java │ │ │ ├── api │ │ │ ├── AbstractEntityAttributeMigrator.java │ │ │ └── EntitySecretAttributeMigrator.java │ │ │ ├── authentication │ │ │ ├── MfaOptionAttributeMigrator.java │ │ │ ├── MfaOptionMigrator.java │ │ │ ├── MfaOptionMigratorJpaRepository.java │ │ │ ├── MfaOptionMigratorListResultImpl.java │ │ │ ├── MfaOptionMigratorQueryImpl.java │ │ │ └── MfaOptionMigratorServiceImpl.java │ │ │ ├── job │ │ │ ├── JobStepAttributeMigrator.java │ │ │ ├── JobStepMigrator.java │ │ │ ├── JobStepMigratorJpaRepository.java │ │ │ ├── JobStepMigratorListResultImpl.java │ │ │ ├── JobStepMigratorQueryImpl.java │ │ │ ├── JobStepMigratorServiceImpl.java │ │ │ └── JobStepPropertyMigrator.java │ │ │ ├── settings │ │ │ ├── EncryptionMigrationSettingKeys.java │ │ │ └── EncryptionMigrationSettings.java │ │ │ └── utils │ │ │ └── SecretAttributeMigratorModelUtils.java │ │ └── resources │ │ ├── META-INF │ │ └── persistence.xml │ │ ├── encryption-migrator-settings.properties │ │ ├── liquibase │ │ └── changelog-migration-tool-master.xml │ │ ├── locator.xml │ │ └── logback.xml ├── es-migrator │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── extras │ │ │ │ └── esmigrator │ │ │ │ ├── Application.java │ │ │ │ ├── Es7Migration.java │ │ │ │ ├── EsClientWrapper.java │ │ │ │ ├── EsClusterDescriptor.java │ │ │ │ ├── IndexMigrationCompleteAction.java │ │ │ │ ├── IndexType.java │ │ │ │ ├── MappingType.java │ │ │ │ ├── Migrator.java │ │ │ │ ├── MigratorUtils.java │ │ │ │ ├── ReindexTaskResult.java │ │ │ │ └── settings │ │ │ │ ├── EsMigratorSetting.java │ │ │ │ └── EsMigratorSettingKey.java │ │ └── resources │ │ │ ├── es-migrator-setting.properties │ │ │ └── mappings │ │ │ ├── channel.json │ │ │ ├── client.json │ │ │ └── metric.json │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── extras │ │ └── esmigrator │ │ └── Es7MigrationTests.java ├── foreignkeys │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── liquibase │ │ ├── 0.3.0 │ │ ├── account-foreignkey.xml │ │ ├── atht_access_token-foreignkey.xml │ │ ├── atht_credential-foreignkey.xml │ │ ├── athz_access_info-foreignkey.xml │ │ ├── athz_group-foreignkey.xml │ │ ├── athz_role-foreignkey.xml │ │ ├── changelog-foreignkeys-0.3.0.xml │ │ ├── device-connection-foreignkey.xml │ │ ├── device-foreignkey.xml │ │ ├── device-tag-foreignkey.xml │ │ ├── job-foreignkey.xml │ │ ├── job_step_definition-foreignkey.xml │ │ ├── tag-foreignkey.xml │ │ ├── trigger-foreignkey.xml │ │ └── user-foreignkey.xml │ │ ├── 1.2.0 │ │ ├── account-foreignkey_delete_cascade.xml │ │ ├── atht_access_token-foreignkey_delete_cascade.xml │ │ ├── atht_credential-foreignkey_delete_cascade.xml │ │ ├── athz_access_info-foreignkey_delete_cascade.xml │ │ ├── athz_group-foreignkey_delete_cascade.xml │ │ ├── athz_role-foreignkey_delete_cascade.xml │ │ ├── changelog-foreignkeys-1.2.0.xml │ │ ├── device-connection-foreignkey_delete_cascade.xml │ │ ├── device-foreignkey_delete_cascade.xml │ │ ├── device-tag-foreignkey_delete_cascade.xml │ │ ├── job-foreignkey_delete_cascade.xml │ │ ├── job_step_definition-foreignkey_delete_cascade.xml │ │ ├── tag-foreignkey_delete_cascade.xml │ │ ├── trigger-foreignkey_delete_cascade.xml │ │ └── user-foreignkey_delete_cascade.xml │ │ ├── 1.3.0 │ │ ├── atht_mfa_option-foreignkey_delete_cascade.xml │ │ ├── atht_scratch_code-foreignkey_delete_cascade.xml │ │ └── changelog-foreignkeys-1.3.0.xml │ │ └── changelog-foreignkeys-master.post.xml ├── liquibase-tool │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── extras │ │ │ └── liquibaseTool │ │ │ └── Application.java │ │ └── resources │ │ └── logback.xml └── pom.xml ├── job-engine ├── api │ ├── about.html │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── job │ │ │ │ └── engine │ │ │ │ ├── JobEngineFactory.java │ │ │ │ ├── JobEngineService.java │ │ │ │ ├── JobEngineXmlRegistry.java │ │ │ │ ├── JobStartOptions.java │ │ │ │ ├── JobStartOptionsAttributes.java │ │ │ │ ├── exception │ │ │ │ ├── CleanJobDataException.java │ │ │ │ ├── JobAlreadyRunningException.java │ │ │ │ ├── JobCheckRunningException.java │ │ │ │ ├── JobEngineErrorCodes.java │ │ │ │ ├── JobEngineException.java │ │ │ │ ├── JobInvalidTargetException.java │ │ │ │ ├── JobMissingStepException.java │ │ │ │ ├── JobMissingTargetException.java │ │ │ │ ├── JobNotRunningException.java │ │ │ │ ├── JobResumingException.java │ │ │ │ ├── JobRunningException.java │ │ │ │ ├── JobScopedEngineException.java │ │ │ │ ├── JobStartingException.java │ │ │ │ └── JobStoppingException.java │ │ │ │ └── queue │ │ │ │ ├── QueuedJobExecution.java │ │ │ │ ├── QueuedJobExecutionAttributes.java │ │ │ │ ├── QueuedJobExecutionCreator.java │ │ │ │ ├── QueuedJobExecutionFactory.java │ │ │ │ ├── QueuedJobExecutionListResult.java │ │ │ │ ├── QueuedJobExecutionQuery.java │ │ │ │ ├── QueuedJobExecutionRepository.java │ │ │ │ ├── QueuedJobExecutionService.java │ │ │ │ ├── QueuedJobExecutionStatus.java │ │ │ │ └── QueuedJobExecutionXmlRegistry.java │ │ └── resources │ │ │ └── job-engine-service-error-messages.properties │ │ └── test │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── job │ │ └── engine │ │ └── exception │ │ ├── JobEngineExceptionTest.java │ │ └── model │ │ └── TestCodesJobEngineException.java ├── app │ ├── core │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── job │ │ │ └── engine │ │ │ └── app │ │ │ └── core │ │ │ ├── converter │ │ │ └── KapuaIdParamConverterProvider.java │ │ │ ├── filter │ │ │ └── RebuildTrustedSessionFilter.java │ │ │ └── jackson │ │ │ ├── ObjectMapperProvider.java │ │ │ ├── deserializer │ │ │ └── KapuaIdDeserializer.java │ │ │ ├── mixin │ │ │ ├── IsJobRunningResponseMixin.java │ │ │ ├── JobStartOptionsMixin.java │ │ │ ├── JobStepPropertyMixin.java │ │ │ └── KapuaIdMixin.java │ │ │ └── serializer │ │ │ └── KapuaIdSerializer.java │ ├── pom.xml │ ├── resources │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── job │ │ │ │ └── engine │ │ │ │ └── app │ │ │ │ └── resources │ │ │ │ └── JobEngineResource.java │ │ │ └── resources │ │ │ └── openapi │ │ │ ├── jobEngine-scopeId-jobId-executionId.yaml │ │ │ ├── jobEngine-scopeId-jobId.yaml │ │ │ ├── jobEngine-scopeId.yaml │ │ │ ├── jobEngine.yaml │ │ │ └── openapi.yaml │ └── web │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── job │ │ │ └── engine │ │ │ └── app │ │ │ └── web │ │ │ ├── AppModule.java │ │ │ ├── ExceptionConfigurationProviderImpl.java │ │ │ ├── JobEngineApplication.java │ │ │ ├── JobEngineRestApiListener.java │ │ │ └── jaxb │ │ │ ├── JaxbContextResolver.java │ │ │ └── JobEngineJAXBContextProvider.java │ │ ├── resources │ │ ├── locator.xml │ │ ├── logback.xml │ │ └── shiro.ini │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── client │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── job │ │ │ └── engine │ │ │ └── client │ │ │ ├── JobEngineClientModule.java │ │ │ ├── JobEngineFactoryClient.java │ │ │ ├── JobEngineServiceClient.java │ │ │ ├── JobStartOptionsClient.java │ │ │ ├── filter │ │ │ ├── SessionInfoFilter.java │ │ │ └── SessionInfoHttpHeaders.java │ │ │ └── settings │ │ │ ├── JobEngineClientSetting.java │ │ │ └── JobEngineClientSettingKeys.java │ │ └── resources │ │ └── job-engine-client-setting.properties ├── commons │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── job │ │ └── engine │ │ └── commons │ │ ├── exception │ │ ├── JobCommonsErrorCodes.java │ │ ├── JobCommonsRuntimeException.java │ │ └── ReadJobPropertyException.java │ │ ├── logger │ │ └── JobLogger.java │ │ ├── model │ │ ├── JobStepPropertiesOverrides.java │ │ ├── JobTargetSublist.java │ │ └── JobTransientUserData.java │ │ ├── operation │ │ ├── AbstractDeviceTargetProcessor.java │ │ ├── AbstractTargetProcessor.java │ │ ├── DefaultTargetReader.java │ │ └── DefaultTargetWriter.java │ │ ├── step │ │ └── definition │ │ │ └── AbstractTargetJobStepDefinition.java │ │ └── wrappers │ │ ├── JobContextPropertyNames.java │ │ ├── JobContextWrapper.java │ │ ├── JobTargetWrapper.java │ │ ├── StepContextPropertyNames.java │ │ └── StepContextWrapper.java ├── jbatch │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── job │ │ │ └── engine │ │ │ ├── jbatch │ │ │ ├── JobEngineFactoryJbatch.java │ │ │ ├── JobEngineServiceJbatch.java │ │ │ ├── JobStartOptionsImpl.java │ │ │ ├── JobengineJbatchModule.java │ │ │ ├── KapuaDelegatingBatchArtifactFactoryImpl.java │ │ │ ├── KapuaLocatorInjector.java │ │ │ ├── driver │ │ │ │ ├── JbatchDriver.java │ │ │ │ ├── JbatchJobRunningStatuses.java │ │ │ │ ├── exception │ │ │ │ │ ├── CannotBuildJobDefDriverException.java │ │ │ │ │ ├── CannotCleanJobDefFileDriverException.java │ │ │ │ │ ├── CannotCreateTmpDirDriverException.java │ │ │ │ │ ├── CannotWriteJobDefFileDriverException.java │ │ │ │ │ ├── CleanJobDataDriverException.java │ │ │ │ │ ├── ExecutionNotFoundDriverException.java │ │ │ │ │ ├── ExecutionNotRunningDriverException.java │ │ │ │ │ ├── JbatchDriverErrorCodes.java │ │ │ │ │ ├── JbatchDriverException.java │ │ │ │ │ ├── JobExecutionIsRunningDriverException.java │ │ │ │ │ └── JobStartingDriverException.java │ │ │ │ └── utils │ │ │ │ │ ├── JobDefinitionBuildUtils.java │ │ │ │ │ └── WaitForJobExecutionStopTask.java │ │ │ ├── listener │ │ │ │ ├── KapuaJobListener.java │ │ │ │ ├── QueuedJobExecutionCheckTask.java │ │ │ │ ├── QueuedJobExecutionCheckTaskFactory.java │ │ │ │ └── QueuedJobExecutionCheckTaskFactoryImpl.java │ │ │ ├── overrides │ │ │ │ └── callback │ │ │ │ │ ├── JobDataCleanupJobEndCallback.java │ │ │ │ │ └── KapuaJobEndCallbackManagerImpl.java │ │ │ ├── persistence │ │ │ │ ├── JPAPersistenceManagerImpl.java │ │ │ │ └── jpa │ │ │ │ │ ├── AbstractJpaJbatchEntity.java │ │ │ │ │ ├── JpaCheckpointData.java │ │ │ │ │ ├── JpaCheckpointDataRepository.java │ │ │ │ │ ├── JpaCheckpointDataRepositoryImpl.java │ │ │ │ │ ├── JpaExecutionInstanceData.java │ │ │ │ │ ├── JpaExecutionInstanceDataFields.java │ │ │ │ │ ├── JpaExecutionInstanceDataRepository.java │ │ │ │ │ ├── JpaExecutionInstanceDataRepositoryImpl.java │ │ │ │ │ ├── JpaJobInstanceData.java │ │ │ │ │ ├── JpaJobInstanceDataRepository.java │ │ │ │ │ ├── JpaJobInstanceDataRepositoryImpl.java │ │ │ │ │ ├── JpaJobStatus.java │ │ │ │ │ ├── JpaJobStatusRepository.java │ │ │ │ │ ├── JpaJobStatusRepositoryImpl.java │ │ │ │ │ ├── JpaStepExecutionInstanceData.java │ │ │ │ │ ├── JpaStepExecutionInstanceDataRepository.java │ │ │ │ │ ├── JpaStepExecutionInstanceDataRepositoryImpl.java │ │ │ │ │ ├── JpaStepStatus.java │ │ │ │ │ ├── JpaStepStatusRepository.java │ │ │ │ │ └── JpaStepStatusRepositoryImpl.java │ │ │ ├── setting │ │ │ │ ├── JobEngineSetting.java │ │ │ │ └── JobEngineSettingKeys.java │ │ │ └── step │ │ │ │ └── definition │ │ │ │ └── LogPropertyKeys.java │ │ │ └── queue │ │ │ └── jbatch │ │ │ ├── JobEngineQueueJbatchModule.java │ │ │ ├── QueuedJobExecutionCreatorImpl.java │ │ │ ├── QueuedJobExecutionFactoryImpl.java │ │ │ ├── QueuedJobExecutionImpl.java │ │ │ ├── QueuedJobExecutionImplJpaRepository.java │ │ │ ├── QueuedJobExecutionListResultImpl.java │ │ │ ├── QueuedJobExecutionQueryImpl.java │ │ │ └── QueuedJobExecutionServiceImpl.java │ │ └── resources │ │ ├── META-INF │ │ ├── persistence.xml │ │ └── services │ │ │ └── batch-services.properties │ │ ├── job-engine-setting.properties │ │ └── liquibase │ │ ├── 0.3.0 │ │ ├── changelog-job-engine-0.3.0.xml │ │ └── job-engine-jbatch.xml │ │ ├── 1.1.0 │ │ ├── changelog-job-engine-1.1.0.xml │ │ └── queued_job_execution.xml │ │ ├── 1.2.0 │ │ ├── changelog-job-engine-1.2.0.xml │ │ ├── checkpoint_data-add_column_jobinstanceid.xml │ │ ├── job-engine-jbatch-timestamp.xml │ │ ├── job_engine_jbatch-rename_tables.xml │ │ └── queued_job-timestamp.xml │ │ ├── 1.5.0 │ │ ├── changelog-job-engine-1.5.0.xml │ │ └── job_engine_jbatch-performance_indexes.xml │ │ ├── 2.0.0 │ │ ├── changelog-job-engine-2.0.0.xml │ │ └── job_engine_jbatch-job_status.xml │ │ └── changelog-job-engine-master.xml └── pom.xml ├── locator ├── guice │ ├── about.html │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── locator │ │ │ │ └── guice │ │ │ │ ├── ComponentResolver.java │ │ │ │ ├── FactoryResolver.java │ │ │ │ ├── GuiceLocatorImpl.java │ │ │ │ ├── KapuaModule.java │ │ │ │ ├── LocatorConfigurationExtractorImpl.java │ │ │ │ ├── OverridingModule.java │ │ │ │ ├── ServiceResolver.java │ │ │ │ ├── SyntheticMethodMatcher.java │ │ │ │ └── TestService.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.kapua.locator.KapuaLocator │ │ │ └── locator.services │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── locator │ │ │ └── internal │ │ │ ├── GuiceLocatorImplTest.java │ │ │ ├── ResolverTest.java │ │ │ ├── TestModule.java │ │ │ └── guice │ │ │ ├── FactoryA.java │ │ │ ├── FactoryAImpl.java │ │ │ ├── FactoryB.java │ │ │ ├── FactoryBImpl.java │ │ │ ├── FactoryC.java │ │ │ ├── FactoryCImpl.java │ │ │ ├── FactoryD.java │ │ │ ├── GuiceLocatorModule.java │ │ │ ├── GuiceServiceModule.java │ │ │ ├── ServiceA.java │ │ │ ├── ServiceAImpl.java │ │ │ ├── ServiceB.java │ │ │ ├── ServiceBImpl.java │ │ │ ├── ServiceC.java │ │ │ ├── ServiceCImpl.java │ │ │ ├── ServiceD.java │ │ │ └── extra │ │ │ ├── ServiceE.java │ │ │ └── ServiceEImpl.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.kapua.locator.internal.GuiceLocatorImplTest$MyTestableService │ │ ├── locator-1.xml │ │ ├── locator.xml │ │ └── logback.xml └── pom.xml ├── message ├── api │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── message │ │ ├── Channel.java │ │ ├── KapuaChannel.java │ │ ├── KapuaMessage.java │ │ ├── KapuaMessageFactory.java │ │ ├── KapuaPayload.java │ │ ├── KapuaPosition.java │ │ ├── Message.java │ │ ├── Payload.java │ │ ├── Position.java │ │ ├── device │ │ ├── data │ │ │ ├── KapuaDataChannel.java │ │ │ ├── KapuaDataMessage.java │ │ │ ├── KapuaDataMessageFactory.java │ │ │ ├── KapuaDataPayload.java │ │ │ └── xml │ │ │ │ └── DataMessageXmlRegistry.java │ │ └── lifecycle │ │ │ ├── KapuaAppsChannel.java │ │ │ ├── KapuaAppsMessage.java │ │ │ ├── KapuaAppsPayload.java │ │ │ ├── KapuaBirthChannel.java │ │ │ ├── KapuaBirthMessage.java │ │ │ ├── KapuaBirthPayload.java │ │ │ ├── KapuaBirthPayloadAttibutes.java │ │ │ ├── KapuaDisconnectChannel.java │ │ │ ├── KapuaDisconnectMessage.java │ │ │ ├── KapuaDisconnectPayload.java │ │ │ ├── KapuaDisconnectPayloadAttibutes.java │ │ │ ├── KapuaLifecycleChannel.java │ │ │ ├── KapuaLifecycleMessage.java │ │ │ ├── KapuaLifecycleMessageFactory.java │ │ │ ├── KapuaLifecyclePayload.java │ │ │ ├── KapuaMissingChannel.java │ │ │ ├── KapuaMissingMessage.java │ │ │ └── KapuaMissingPayload.java │ │ └── xml │ │ ├── MessageXmlRegistry.java │ │ ├── MetricsXmlAdapter.java │ │ ├── XmlAdaptedMetric.java │ │ └── XmlAdaptedMetrics.java ├── internal │ ├── about.html │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── message │ │ │ └── internal │ │ │ ├── KapuaChannelImpl.java │ │ │ ├── KapuaMessageFactoryImpl.java │ │ │ ├── KapuaMessageImpl.java │ │ │ ├── KapuaPayloadImpl.java │ │ │ ├── KapuaPositionImpl.java │ │ │ ├── MessageErrorCodes.java │ │ │ ├── MessageException.java │ │ │ ├── MessageModule.java │ │ │ └── device │ │ │ ├── data │ │ │ ├── KapuaDataChannelImpl.java │ │ │ ├── KapuaDataMessageFactoryImpl.java │ │ │ ├── KapuaDataMessageImpl.java │ │ │ ├── KapuaDataPayloadImpl.java │ │ │ └── MessageDataModule.java │ │ │ └── lifecycle │ │ │ ├── AbstractLifecycleChannelImpl.java │ │ │ ├── AbstractLifecycleMessageImpl.java │ │ │ ├── AbstractLifecyclePayloadImpl.java │ │ │ ├── KapuaAppsChannelImpl.java │ │ │ ├── KapuaAppsMessageImpl.java │ │ │ ├── KapuaAppsPayloadImpl.java │ │ │ ├── KapuaBirthChannelImpl.java │ │ │ ├── KapuaBirthMessageImpl.java │ │ │ ├── KapuaBirthPayloadImpl.java │ │ │ ├── KapuaDisconnectChannelImpl.java │ │ │ ├── KapuaDisconnectMessageImpl.java │ │ │ ├── KapuaDisconnectPayloadImpl.java │ │ │ ├── KapuaLifecycleMessageFactoryImpl.java │ │ │ ├── KapuaMissingChannelImpl.java │ │ │ ├── KapuaMissingMessageImpl.java │ │ │ ├── KapuaMissingPayloadImpl.java │ │ │ ├── MessageLifecycleModule.java │ │ │ └── model │ │ │ ├── BirthExtendedProperties.java │ │ │ └── BirthExtendedProperty.java │ │ └── test │ │ ├── java │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── message │ │ │ └── internal │ │ │ ├── BasicMessageTestSuite.java │ │ │ ├── FullMessageTestSuite.java │ │ │ ├── KapuaChannelTest.java │ │ │ ├── KapuaDataMessageFactoryTest.java │ │ │ ├── KapuaMessageFactoryTest.java │ │ │ ├── KapuaMessageTest.java │ │ │ ├── KapuaMessageUtil.java │ │ │ ├── KapuaPayloadTest.java │ │ │ ├── KapuaPositionTest.java │ │ │ ├── MessageExceptionTest.java │ │ │ ├── MessageJAXBContextProvider.java │ │ │ ├── TestModule.java │ │ │ ├── device │ │ │ ├── data │ │ │ │ └── KapuaDeviceDataTest.java │ │ │ └── lifecycle │ │ │ │ ├── KapuaAppsMessageTest.java │ │ │ │ ├── KapuaBirthMessageTest.java │ │ │ │ ├── KapuaDisconnectMessageTest.java │ │ │ │ ├── KapuaMissingMessageTest.java │ │ │ │ └── LifecycleTestSuite.java │ │ │ └── xml │ │ │ ├── KapuaMetricTest.java │ │ │ ├── KapuaMetricsMapAdapterTest.java │ │ │ └── MetricTestSuite.java │ │ └── resources │ │ ├── locator.xml │ │ ├── logback.xml │ │ └── message-error-messages.properties └── pom.xml ├── plug-ins ├── pom.xml └── sso │ ├── openid-connect │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── plugin │ │ │ │ └── sso │ │ │ │ └── openid │ │ │ │ ├── JwtProcessor.java │ │ │ │ ├── OpenIDLocator.java │ │ │ │ ├── OpenIDService.java │ │ │ │ └── exception │ │ │ │ ├── OpenIDErrorCodes.java │ │ │ │ ├── OpenIDException.java │ │ │ │ ├── OpenIDIllegalArgumentException.java │ │ │ │ ├── OpenIDTokenException.java │ │ │ │ ├── jwt │ │ │ │ ├── OpenIDJwtException.java │ │ │ │ ├── OpenIDJwtExtractionException.java │ │ │ │ └── OpenIDJwtProcessException.java │ │ │ │ └── uri │ │ │ │ ├── OpenIDIllegalUriException.java │ │ │ │ ├── OpenIDJwtUriException.java │ │ │ │ ├── OpenIDLoginUriException.java │ │ │ │ ├── OpenIDLogoutUriException.java │ │ │ │ └── OpenIDUriException.java │ │ │ └── resources │ │ │ └── openid-error-messages.properties │ ├── pom.xml │ ├── provider-generic │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── plugin │ │ │ │ └── sso │ │ │ │ └── openid │ │ │ │ └── provider │ │ │ │ └── generic │ │ │ │ ├── GenericOpenIDService.java │ │ │ │ ├── GenericOpenIdProviderModule.java │ │ │ │ ├── jwt │ │ │ │ └── GenericJwtProcessor.java │ │ │ │ └── setting │ │ │ │ ├── GenericOpenIDSetting.java │ │ │ │ └── GenericOpenIDSettingKeys.java │ │ │ └── resources │ │ │ └── openid-generic-setting.properties │ ├── provider-keycloak │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── plugin │ │ │ │ └── sso │ │ │ │ └── openid │ │ │ │ └── provider │ │ │ │ └── keycloak │ │ │ │ ├── KeycloakOpenIDService.java │ │ │ │ ├── KeycloakOpenIDUtils.java │ │ │ │ ├── KeycloakOpenIdProviderModule.java │ │ │ │ ├── jwt │ │ │ │ └── KeycloakJwtProcessor.java │ │ │ │ └── setting │ │ │ │ ├── KeycloakOpenIDSetting.java │ │ │ │ └── KeycloakOpenIDSettingKeys.java │ │ │ └── resources │ │ │ └── openid-keycloak-setting.properties │ └── provider │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── plugin │ │ │ └── sso │ │ │ └── openid │ │ │ └── provider │ │ │ ├── AbstractOpenIDService.java │ │ │ ├── OpenIDLocatorImpl.java │ │ │ ├── OpenIDUtils.java │ │ │ ├── OpenIdModule.java │ │ │ ├── internal │ │ │ ├── DisabledJwtProcessor.java │ │ │ └── DisabledOpenIDService.java │ │ │ ├── jwt │ │ │ └── AbstractJwtProcessor.java │ │ │ └── setting │ │ │ ├── OpenIDSetting.java │ │ │ └── OpenIDSettingKeys.java │ │ └── resources │ │ └── openid-setting.properties │ └── pom.xml ├── pom.xml ├── qa ├── .gitignore ├── RunKapuaTests.sh ├── RunKapuaTests_asGitAction.sh ├── about.html ├── common │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── qa │ │ │ └── common │ │ │ ├── BasicSteps.java │ │ │ ├── DBHelper.java │ │ │ ├── HookPriorities.java │ │ │ ├── MockedLocator.java │ │ │ ├── Ports.java │ │ │ ├── Session.java │ │ │ ├── SimulatedDevice.java │ │ │ ├── SimulatedDeviceApplication.java │ │ │ ├── SimulatedDeviceSteps.java │ │ │ ├── Starting.java │ │ │ ├── StepData.java │ │ │ ├── Suppressed.java │ │ │ ├── TestBase.java │ │ │ ├── TestDomain.java │ │ │ ├── TestJAXBContextProvider.java │ │ │ ├── ThrowingConsumer.java │ │ │ ├── Util.java │ │ │ ├── Wait.java │ │ │ ├── WaitTimeoutException.java │ │ │ ├── With.java │ │ │ ├── cache │ │ │ ├── MapCache.java │ │ │ ├── MapCacheManager.java │ │ │ └── MapCachingProvider.java │ │ │ ├── cucumber │ │ │ ├── CucAccount.java │ │ │ ├── CucConfig.java │ │ │ ├── CucConnection.java │ │ │ ├── CucCredentials.java │ │ │ ├── CucDevice.java │ │ │ ├── CucDeviceExtendedProperty.java │ │ │ ├── CucDomain.java │ │ │ ├── CucGroup.java │ │ │ ├── CucJobStepProperty.java │ │ │ ├── CucMessageRange.java │ │ │ ├── CucMetric.java │ │ │ ├── CucPermission.java │ │ │ ├── CucRole.java │ │ │ ├── CucRolePermission.java │ │ │ ├── CucTopic.java │ │ │ ├── CucTriggerProperty.java │ │ │ ├── CucUser.java │ │ │ ├── CucUserProfile.java │ │ │ ├── CucumberProperty.java │ │ │ └── CucumberSystemProperties.java │ │ │ └── utils │ │ │ ├── CleanLocatorInstance.java │ │ │ ├── InitMockLocator.java │ │ │ └── InitShiro.java │ │ └── resources │ │ └── sql │ │ └── all_delete.sql ├── integration-steps │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── qa │ │ └── integration │ │ └── steps │ │ ├── BrokerClient.java │ │ ├── BrokerConfigData.java │ │ ├── DockerSteps.java │ │ ├── DockerUtil.java │ │ ├── KapuaStartCluster.java │ │ ├── MqttClientPoolSteps.java │ │ ├── RestClientSteps.java │ │ ├── RestJAXBContextProvider.java │ │ └── utils │ │ ├── TestReadinessHttpConnection.java │ │ └── TestReadinessMqttBrokerConnection.java ├── integration │ ├── about.html │ ├── pom.xml │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── integration │ │ │ ├── misc │ │ │ ├── AccessInfoCreatorImplTest.java │ │ │ ├── AccessInfoDAOTest.java │ │ │ ├── AccessPermissionDAOTest.java │ │ │ ├── AccessPermissionImplTest.java │ │ │ ├── AccessRoleDAOTest.java │ │ │ ├── AccessTokenAuthenticationRealmTest.java │ │ │ ├── AccessTokenCredentialsMatcherTest.java │ │ │ ├── AccessTokenDAOTest.java │ │ │ ├── ApiKeyAuthenticatingRealmTest.java │ │ │ ├── CredentialDAOTest.java │ │ │ ├── DomainDAOTest.java │ │ │ ├── EventStoreDAOTest.java │ │ │ ├── EventStoreServiceImplTest.java │ │ │ ├── GroupDAOTest.java │ │ │ ├── JsonServiceEventMarshalerTest.java │ │ │ ├── JwtAuthenticatingRealmTest.java │ │ │ ├── KapuaIdAdapterTest.java │ │ │ ├── KapuaLocatorTest.java │ │ │ ├── KapuaSessionCleanupFilterTest.java │ │ │ ├── KapuaTscalarAdapterTest.java │ │ │ ├── MfaOptionDAOTest.java │ │ │ ├── PermissionFactoryImplTest.java │ │ │ ├── PermissionImplTest.java │ │ │ ├── QueryConverterTest.java │ │ │ ├── RoleDAOTest.java │ │ │ ├── RolePermissionDAOTest.java │ │ │ ├── RolePermissionFactoryTest.java │ │ │ ├── RolePermissionImplTest.java │ │ │ ├── TestConfigModule.java │ │ │ ├── UserPassAuthenticatingRealmTest.java │ │ │ └── XmlServiceEventMarshalerTest.java │ │ │ ├── rest │ │ │ ├── RunRestAuthTest.java │ │ │ ├── RunRestCorsFilterTest.java │ │ │ └── RunRestParsingRequestTest.java │ │ │ └── service │ │ │ ├── account │ │ │ └── RunAccountServiceI9nTest.java │ │ │ ├── authentication │ │ │ └── RunAuthenticationServiceI9nTest.java │ │ │ ├── authorization │ │ │ └── RunAuthorizationServiceI9nTest.java │ │ │ ├── connection │ │ │ └── RunConnectionI9nTest.java │ │ │ ├── datastore │ │ │ ├── RunDatastoreNewIndexCustomPrefixTest.java │ │ │ ├── RunDatastoreNewIndexTest.java │ │ │ └── RunDatastoreTransportI9nTest.java │ │ │ ├── datastoreJunit │ │ │ ├── AbstractMessageStoreServiceTest.java │ │ │ └── MessageStoreServiceSslTest.java │ │ │ ├── device │ │ │ ├── RunBrokerACLDeviceManageI9nTest.java │ │ │ ├── RunBrokerACLI9nTest.java │ │ │ ├── RunDeviceBrokerI9nTest.java │ │ │ ├── RunDeviceBrokerIpConfigFileI9nTest.java │ │ │ ├── RunDeviceBrokerIpSysEnvI9nTest.java │ │ │ ├── RunDeviceBrokerIpUndefinedI9nTest.java │ │ │ ├── RunDeviceBrokerStealingLinkI9nTest.java │ │ │ ├── RunDeviceDataI9nTest.java │ │ │ ├── RunDeviceI9nTest.java │ │ │ ├── RunDeviceLifecycleI9nTest.java │ │ │ └── management │ │ │ │ ├── RunDeviceManagementInventoryI9nTest.java │ │ │ │ └── RunDeviceManagementKeystoreI9nTest.java │ │ │ ├── endpoint │ │ │ └── RunEndpointServiceI9nTest.java │ │ │ ├── job │ │ │ └── RunJobServiceI9nTest.java │ │ │ ├── jobEngine │ │ │ └── RunJobEngineServiceI9nTest.java │ │ │ ├── jobScheduling │ │ │ ├── RunExecuteOnDeviceConnectI9nTest.java │ │ │ └── RunTriggerServiceI9nTest.java │ │ │ └── user │ │ │ ├── RunLockoutExpirationI9nTest.java │ │ │ ├── RunTenantSEI9nTest.java │ │ │ ├── RunUserCredentialsI9nTest.java │ │ │ ├── RunUserMfaUnitTest.java │ │ │ ├── RunUserPermissionI9nTest.java │ │ │ ├── RunUserProfileUnitTests.java │ │ │ ├── RunUserRoleI9nTests.java │ │ │ └── RunUserServiceI9nTest.java │ │ ├── protobuf │ │ └── kurapayload.proto │ │ └── resources │ │ ├── activemq.xml │ │ ├── broker.setting │ │ └── kapua-broker-setting-1.properties │ │ ├── camel-experimental.xml │ │ ├── certificates │ │ ├── certificate.pem │ │ ├── jwt │ │ │ ├── README.md │ │ │ ├── test.cert │ │ │ └── test.key │ │ └── key.pk8 │ │ ├── credentials.properties │ │ ├── features │ │ ├── account │ │ │ ├── AccountCredentialService.feature │ │ │ ├── AccountDeviceRegistryService.feature │ │ │ ├── AccountExpirationI9n.feature │ │ │ ├── AccountGroupService.feature │ │ │ ├── AccountJobService.feature │ │ │ ├── AccountRoleService.feature │ │ │ ├── AccountServiceCreation.feature │ │ │ ├── AccountTagService.feature │ │ │ ├── AccountUserService.feature │ │ │ └── FindSelfAccount.feature │ │ ├── authentication │ │ │ └── UserCredentialServiceUnitTests.feature │ │ ├── authorization │ │ │ ├── AccessInfoService.feature │ │ │ ├── DomainService.feature │ │ │ ├── GroupService.feature │ │ │ ├── MiscAuthorization.feature │ │ │ └── RoleService.feature │ │ ├── broker │ │ │ ├── DeviceBrokerI9n.feature │ │ │ ├── DeviceBrokerIpConfigFileI9n.feature │ │ │ ├── DeviceBrokerIpSysEnvI9n.feature │ │ │ ├── DeviceBrokerIpUndefinedI9n.feature │ │ │ ├── DeviceBrokerStealingLinkI9n.feature │ │ │ ├── DeviceData.feature │ │ │ ├── DeviceLifecycle.feature │ │ │ └── acl │ │ │ │ ├── BrokerACLDeviceManageI9n.feature │ │ │ │ └── BrokerACLI9n.feature │ │ ├── connection │ │ │ └── UserCouplingI9n.feature │ │ ├── datastore │ │ │ ├── Datastore.feature │ │ │ ├── DatastoreMetricStore.feature │ │ │ ├── DatastoreNewIndex.feature │ │ │ └── DatastoreNewIndexCustomPrefix.feature │ │ ├── device │ │ │ └── DeviceServiceI9n.feature │ │ ├── deviceManagement │ │ │ ├── DeviceManagementInventoryI9n.feature │ │ │ └── DeviceManagementKeystoreI9n.feature │ │ ├── endpoint │ │ │ └── EndpointServiceI9n.feature │ │ ├── job │ │ │ ├── JobExecutionServiceI9n.feature │ │ │ ├── JobServiceI9n.feature │ │ │ └── JobTargetsServiceI9n.feature │ │ ├── jobEngine │ │ │ ├── JobEngineServiceOperations.feature │ │ │ ├── JobEngineServiceProcessorAssetI9n.feature │ │ │ ├── JobEngineServiceProcessorBundleI9n.feature │ │ │ ├── JobEngineServiceProcessorCommandI9n.feature │ │ │ ├── JobEngineServiceProcessorConfigurationI9n.feature │ │ │ ├── JobEngineServiceProcessorInventoryI9n.feature │ │ │ ├── JobEngineServiceProcessorKeystoreI9n.feature │ │ │ └── JobEngineServiceProcessorPackagesI9n.feature │ │ ├── jobScheduling │ │ │ ├── ExecuteOnDeviceConnectI9n.feature │ │ │ └── TriggerServiceI9n.feature │ │ ├── rest │ │ │ ├── authentication │ │ │ │ └── RestAuth.feature │ │ │ ├── cors │ │ │ │ └── RestCORSFilter.feature │ │ │ └── parsingRequests │ │ │ │ └── RestParsingRequestsContents.feature │ │ ├── tag │ │ │ └── TagI9n.feature │ │ └── user │ │ │ ├── LockoutExpirationI9n.feature │ │ │ ├── TenantSEI9n.feature │ │ │ ├── UserCredentialsI9n.feature │ │ │ ├── UserMfaUnitTests.feature │ │ │ ├── UserPermissionI9n.feature │ │ │ ├── UserProfileUnitTests.feature │ │ │ ├── UserRoleServiceI9n.feature │ │ │ └── UserServiceI9n.feature │ │ ├── kapua-certificate-setting.properties │ │ ├── kapua-datastore-elasticsearch-client-settings.properties │ │ ├── kapua-datastore-embedded-server-setting.properties │ │ ├── kapua-datastore-setting.properties │ │ ├── kapua-environment-setting.properties │ │ ├── locator.xml │ │ ├── logback.xml │ │ ├── mqtt │ │ ├── INVENTORY-V1_GET_inventory_bundles_reply.json │ │ ├── INVENTORY-V1_GET_inventory_containers_reply.json │ │ ├── INVENTORY-V1_GET_inventory_packages_reply.json │ │ ├── INVENTORY-V1_GET_inventory_reply.json │ │ ├── INVENTORY-V1_GET_inventory_system_reply.json │ │ ├── KEYS-V1_GET_keystores_entries_alias_reply.json │ │ ├── KEYS-V1_GET_keystores_entries_cert_installed_reply.json │ │ ├── KEYS-V1_GET_keystores_entries_cert_key_installed_reply.json │ │ ├── KEYS-V1_GET_keystores_entries_default_reply.json │ │ ├── KEYS-V1_GET_keystores_entries_key_installed_reply.json │ │ ├── KEYS-V1_GET_keystores_entries_keystore_reply.json │ │ ├── KEYS-V1_GET_keystores_entry_reply.json │ │ ├── KEYS-V1_GET_keystores_reply.json │ │ ├── KEYS-V1_POST_keystores_entries_csr_fixed_reply.json │ │ ├── KEYS-V1_POST_keystores_entries_csr_kurabugged_reply.txt │ │ ├── KapuaPool-client-id_ASSET-V1_READ_req-id_assets.mqtt │ │ ├── KapuaPool-client-id_ASSET-V1_READ_req-id_assets_updated_assets.mqtt │ │ ├── KapuaPool-client-id_ASSET-V1_WRITE_req-id_assets.mqtt │ │ ├── KapuaPool-client-id_CMD-V1_REPLY_req-id_command.mqtt │ │ ├── KapuaPool-client-id_CONF-V1_PUT_configurations.mqtt │ │ ├── KapuaPool-client-id_CONF-V1_REPLY_req-id_inital_configurations.mqtt │ │ ├── KapuaPool-client-id_CONF-V1_REPLY_req-id_updated_configurations.mqtt │ │ ├── KapuaPool-client-id_DEPLOY-V2_EXEC_START_bundle_id.mqtt │ │ ├── KapuaPool-client-id_DEPLOY-V2_EXEC_STOP_bundle_id.mqtt │ │ ├── KapuaPool-client-id_DEPLOY-V2_REPLY_req-id_bundles_inital_state.mqtt │ │ ├── KapuaPool-client-id_DEPLOY-V2_REPLY_req-id_bundles_updated_state.mqtt │ │ ├── KapuaPool-client-id_DEPLOY-V2_REPLY_req-id_packages_initial_list.mqtt │ │ ├── KapuaPool-client-id_DEPLOY-V2_REPLY_req-id_packages_updated_list.mqtt │ │ ├── KapuaPoolClient-id_DEPLOY_V2_REPLY_package_list_after_uninstall.mqtt │ │ ├── rpione3_CMD-V1_EXEC_command.mqtt │ │ ├── rpione3_CONF-V1_GET_configurations.mqtt │ │ ├── rpione3_DEPLOY-V2_GET_bundles.mqtt │ │ ├── rpione3_DEPLOY-V2_GET_packages.mqtt │ │ ├── rpione3_MQTT_BIRTH.mqtt │ │ └── rpione3_MQTT_DC.mqtt │ │ └── shiro.ini ├── markers │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── qa │ │ └── markers │ │ └── junit │ │ └── JUnitTests.java └── pom.xml ├── rest-api ├── core │ ├── about.html │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── app │ │ │ │ └── api │ │ │ │ └── core │ │ │ │ ├── KapuaSerializableBodyWriter.java │ │ │ │ ├── ListBodyWriter.java │ │ │ │ ├── MoxyJsonConfigContextResolver.java │ │ │ │ ├── MoxyJsonFeatureCustomJsonProvider.java │ │ │ │ ├── auth │ │ │ │ └── KapuaTokenAuthenticationFilter.java │ │ │ │ ├── exception │ │ │ │ ├── RestApiErrorCodes.java │ │ │ │ ├── RestApiRuntimeException.java │ │ │ │ └── SessionNotPopulatedException.java │ │ │ │ ├── model │ │ │ │ ├── ByteArrayParam.java │ │ │ │ ├── CountResult.java │ │ │ │ ├── DateParam.java │ │ │ │ ├── EntityId.java │ │ │ │ ├── MetricType.java │ │ │ │ ├── ScopeId.java │ │ │ │ ├── SetResult.java │ │ │ │ ├── StorableEntityId.java │ │ │ │ ├── data │ │ │ │ │ ├── JsonDatastoreMessage.java │ │ │ │ │ ├── JsonKapuaDataMessage.java │ │ │ │ │ ├── JsonMessageListResult.java │ │ │ │ │ └── JsonMessageQuery.java │ │ │ │ ├── device │ │ │ │ │ └── management │ │ │ │ │ │ ├── JsonGenericRequestMessage.java │ │ │ │ │ │ └── JsonGenericResponseMessage.java │ │ │ │ └── message │ │ │ │ │ └── JsonKapuaPayload.java │ │ │ │ ├── resources │ │ │ │ └── AbstractKapuaResource.java │ │ │ │ └── settings │ │ │ │ ├── KapuaApiCoreSetting.java │ │ │ │ └── KapuaApiCoreSettingKeys.java │ │ └── resources │ │ │ └── kapua-api-core-settings.properties │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── api │ │ │ └── core │ │ │ ├── KapuaSerializableBodyWriterTest.java │ │ │ ├── ListBodyWriterTest.java │ │ │ ├── MoxyJsonConfigContextResolverTest.java │ │ │ ├── auth │ │ │ ├── KapuaTokenAuthenticationFilterTest.java │ │ │ └── MockitoLocator.java │ │ │ ├── exception │ │ │ ├── RestApiRuntimeExceptionTest.java │ │ │ └── SessionNotPopulatedExceptionTest.java │ │ │ ├── model │ │ │ ├── ByteArrayParamTest.java │ │ │ ├── CountResultTest.java │ │ │ ├── DateParamTest.java │ │ │ ├── EntityIdTest.java │ │ │ ├── MetricTypeTest.java │ │ │ ├── StorableEntityIdTest.java │ │ │ ├── TestModule.java │ │ │ ├── data │ │ │ │ ├── JsonDatastoreMessageTest.java │ │ │ │ ├── JsonKapuaDataMessageTest.java │ │ │ │ ├── JsonMessageListResultTest.java │ │ │ │ └── JsonMessageQueryTest.java │ │ │ ├── device │ │ │ │ └── management │ │ │ │ │ ├── JsonGenericRequestMessageTest.java │ │ │ │ │ └── JsonGenericResponseMessageTest.java │ │ │ └── message │ │ │ │ └── JsonKapuaPayloadTest.java │ │ │ ├── resources │ │ │ └── AbstractKapuaResourceTest.java │ │ │ └── settings │ │ │ └── KapuaApiCoreSettingKeysTest.java │ │ └── resources │ │ └── locator.xml ├── pom.xml ├── resources │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── api │ │ │ └── resources │ │ │ └── v1 │ │ │ └── resources │ │ │ ├── AccessInfos.java │ │ │ ├── AccessPermissions.java │ │ │ ├── AccessRoles.java │ │ │ ├── Account.java │ │ │ ├── Accounts.java │ │ │ ├── Authentication.java │ │ │ ├── Authorizations.java │ │ │ ├── Credentials.java │ │ │ ├── CurrentAccount.java │ │ │ ├── DataChannels.java │ │ │ ├── DataClients.java │ │ │ ├── DataMessages.java │ │ │ ├── DataMessagesJson.java │ │ │ ├── DataMetrics.java │ │ │ ├── DeviceConnectionOptions.java │ │ │ ├── DeviceConnections.java │ │ │ ├── DeviceEvents.java │ │ │ ├── DeviceManagementAssets.java │ │ │ ├── DeviceManagementBundles.java │ │ │ ├── DeviceManagementCommands.java │ │ │ ├── DeviceManagementConfigurations.java │ │ │ ├── DeviceManagementInventory.java │ │ │ ├── DeviceManagementKeystores.java │ │ │ ├── DeviceManagementOperationNotifications.java │ │ │ ├── DeviceManagementOperations.java │ │ │ ├── DeviceManagementPackages.java │ │ │ ├── DeviceManagementRequests.java │ │ │ ├── DeviceManagementRequestsJson.java │ │ │ ├── DeviceManagementSnapshots.java │ │ │ ├── Devices.java │ │ │ ├── Domains.java │ │ │ ├── EndpointInfos.java │ │ │ ├── Groups.java │ │ │ ├── Internal.java │ │ │ ├── JobEngine.java │ │ │ ├── JobExecutions.java │ │ │ ├── JobStepDefinitions.java │ │ │ ├── JobSteps.java │ │ │ ├── JobTargets.java │ │ │ ├── JobTriggerDefinitions.java │ │ │ ├── JobTriggers.java │ │ │ ├── JobTriggersFired.java │ │ │ ├── Jobs.java │ │ │ ├── Roles.java │ │ │ ├── RolesPermissions.java │ │ │ ├── ServiceConfigurations.java │ │ │ ├── Streams.java │ │ │ ├── StreamsJson.java │ │ │ ├── SystemInformation.java │ │ │ ├── Tags.java │ │ │ ├── UserCredentials.java │ │ │ ├── UserMfa.java │ │ │ ├── UserProfiles.java │ │ │ ├── Users.java │ │ │ ├── UsersCredentials.java │ │ │ ├── UsersMfa.java │ │ │ ├── marker │ │ │ └── JsonSerializationFixed.java │ │ │ └── model │ │ │ └── device │ │ │ └── management │ │ │ └── keystore │ │ │ └── DeviceKeystoreCertificateInfo.java │ │ └── resources │ │ └── openapi │ │ ├── accessInfo │ │ ├── accessInfo-scopeId-_count.yaml │ │ ├── accessInfo-scopeId-_query.yaml │ │ ├── accessInfo-scopeId-accessInfoId-permissions-_count.yaml │ │ ├── accessInfo-scopeId-accessInfoId-permissions-_query.yaml │ │ ├── accessInfo-scopeId-accessInfoId-permissions-accessPermissionId.yaml │ │ ├── accessInfo-scopeId-accessInfoId-permissions.yaml │ │ ├── accessInfo-scopeId-accessInfoId-roles-_count.yaml │ │ ├── accessInfo-scopeId-accessInfoId-roles-_query.yaml │ │ ├── accessInfo-scopeId-accessInfoId-roles-accessRoleId.yaml │ │ ├── accessInfo-scopeId-accessInfoId-roles.yaml │ │ ├── accessInfo-scopeId-accessInfoId.yaml │ │ ├── accessInfo-scopeId.yaml │ │ └── accessInfo.yaml │ │ ├── account │ │ └── account.yaml │ │ ├── accounts │ │ ├── accounts-accountId.yaml │ │ ├── accounts-scopeId-_count.yaml │ │ ├── accounts-scopeId-_query.yaml │ │ ├── accounts-scopeId.yaml │ │ └── accounts.yaml │ │ ├── authentication │ │ ├── authentication-apikey.yaml │ │ ├── authentication-info.yaml │ │ ├── authentication-jwt.yaml │ │ ├── authentication-logout.yaml │ │ ├── authentication-mfa.yaml │ │ ├── authentication-refresh.yaml │ │ ├── authentication-user.yaml │ │ └── authentication.yaml │ │ ├── authorization │ │ ├── authorization-scopeId.yaml │ │ └── authorization.yaml │ │ ├── credential │ │ ├── credential-scopeId-_count.yaml │ │ ├── credential-scopeId-_query.yaml │ │ ├── credential-scopeId-credentialId-unlock.yaml │ │ ├── credential-scopeId-credentialId.yaml │ │ ├── credential-scopeId.yaml │ │ └── credential.yaml │ │ ├── dataChannel │ │ ├── dataChannel-scopeId-_count.yaml │ │ ├── dataChannel-scopeId-channelInfoId.yaml │ │ ├── dataChannel-scopeId.yaml │ │ └── dataChannel.yaml │ │ ├── dataClient │ │ ├── dataClient-scopeId-_count.yaml │ │ ├── dataClient-scopeId-clientInfoId.yaml │ │ ├── dataClient-scopeId.yaml │ │ └── dataClient.yaml │ │ ├── dataMessage │ │ ├── dataMessage-scopeId-_count.yaml │ │ ├── dataMessage-scopeId-datastoreMessageId.yaml │ │ ├── dataMessage-scopeId.yaml │ │ └── dataMessage.yaml │ │ ├── dataMetric │ │ ├── dataMetric-scopeId-_count.yaml │ │ ├── dataMetric-scopeId-metricInfoId.yaml │ │ ├── dataMetric-scopeId.yaml │ │ └── dataMetric.yaml │ │ ├── device │ │ ├── device-scopeId-_count.yaml │ │ ├── device-scopeId-_query.yaml │ │ ├── device-scopeId-deviceId.yaml │ │ ├── device-scopeId.yaml │ │ └── device.yaml │ │ ├── deviceAsset │ │ ├── deviceAsset-scopeId-deviceId-_read.yaml │ │ ├── deviceAsset-scopeId-deviceId-_settings.yaml │ │ ├── deviceAsset-scopeId-deviceId-_write.yaml │ │ ├── deviceAsset-scopeId-deviceId.yaml │ │ └── deviceAsset.yaml │ │ ├── deviceBundle │ │ ├── deviceBundle-scopeId-deviceId-_start.yaml │ │ ├── deviceBundle-scopeId-deviceId-_stop.yaml │ │ ├── deviceBundle-scopeId-deviceId.yaml │ │ └── deviceBundle.yaml │ │ ├── deviceCommand │ │ ├── deviceCommand-scopeId-deviceId-_execute.yaml │ │ └── deviceCommand.yaml │ │ ├── deviceConfiguration │ │ ├── deviceConfiguration-scopeId-deviceId-_settings.yaml │ │ ├── deviceConfiguration-scopeId-deviceId-componentId.yaml │ │ ├── deviceConfiguration-scopeId-deviceId.yaml │ │ └── deviceConfiguration.yaml │ │ ├── deviceConnection │ │ ├── deviceConnection-scopeId-_count.yaml │ │ ├── deviceConnection-scopeId-_query.yaml │ │ ├── deviceConnection-scopeId-connectionId-_disconnect.yaml │ │ ├── deviceConnection-scopeId-connectionId-options.yaml │ │ ├── deviceConnection-scopeId-connectionId.yaml │ │ ├── deviceConnection-scopeId.yaml │ │ └── deviceConnection.yaml │ │ ├── deviceEvent │ │ ├── deviceEvent-scopeId-deviceId-_count.yaml │ │ ├── deviceEvent-scopeId-deviceId-_query.yaml │ │ ├── deviceEvent-scopeId-deviceId-deviceEventId.yaml │ │ ├── deviceEvent-scopeId-deviceId.yaml │ │ └── deviceEvent.yaml │ │ ├── deviceInventory │ │ ├── deviceInventory-scopeId-deviceId.yaml │ │ └── deviceInventory.yaml │ │ ├── deviceKeystore │ │ ├── deviceKeystore-scopeId-deviceId.yaml │ │ └── deviceKeystore.yaml │ │ ├── deviceNotification │ │ ├── deviceNotification-scopeId-deviceId-operationId-_count.yaml │ │ ├── deviceNotification-scopeId-deviceId-operationId-_query.yaml │ │ ├── deviceNotification-scopeId-deviceId-operationId-notificationId.yaml │ │ ├── deviceNotification-scopeId-deviceId-operationId.yaml │ │ └── deviceNotification.yaml │ │ ├── deviceOperation │ │ ├── deviceOperation-scopeId-deviceId-_count.yaml │ │ ├── deviceOperation-scopeId-deviceId-_query.yaml │ │ ├── deviceOperation-scopeId-deviceId-operationId.yaml │ │ ├── deviceOperation-scopeId-deviceId.yaml │ │ └── deviceOperation.yaml │ │ ├── devicePackage │ │ ├── devicePackage-scopeId-deviceId-_download.yaml │ │ ├── devicePackage-scopeId-deviceId-_uninstall.yaml │ │ ├── devicePackage-scopeId-deviceId.yaml │ │ └── devicePackage.yaml │ │ ├── deviceRequest │ │ ├── deviceRequest-scopeId-deviceId.yaml │ │ └── deviceRequest.yaml │ │ ├── deviceSnapshot │ │ ├── deviceSnapshot-scopeId-deviceId-snapshotId-_rollback.yaml │ │ ├── deviceSnapshot-scopeId-deviceId-snapshotId.yaml │ │ ├── deviceSnapshot-scopeId-deviceId.yaml │ │ └── deviceSnapshot.yaml │ │ ├── domain │ │ ├── domain-scopeId-_count.yaml │ │ ├── domain-scopeId-_query.yaml │ │ ├── domain-scopeId-domainId.yaml │ │ ├── domain-scopeId.yaml │ │ └── domain.yaml │ │ ├── endpointInfo │ │ ├── endpointInfo-scopeId-_count.yaml │ │ ├── endpointInfo-scopeId-_query.yaml │ │ ├── endpointInfo-scopeId-endpointInfoId.yaml │ │ ├── endpointInfo-scopeId.yaml │ │ └── endpointInfo.yaml │ │ ├── group │ │ ├── group-scopeId-_count.yaml │ │ ├── group-scopeId-_query.yaml │ │ ├── group-scopeId-groupId.yaml │ │ ├── group-scopeId.yaml │ │ └── group.yaml │ │ ├── job │ │ ├── job-scopeId-_count.yaml │ │ ├── job-scopeId-_query.yaml │ │ ├── job-scopeId-jobId.yaml │ │ ├── job-scopeId.yaml │ │ └── job.yaml │ │ ├── jobEngine │ │ ├── jobEngine-scopeId-jobId-executionId.yaml │ │ ├── jobEngine-scopeId-jobId.yaml │ │ ├── jobEngine-scopeId.yaml │ │ └── jobEngine.yaml │ │ ├── jobExecution │ │ ├── job-scopeId-jobId-executions-_count.yaml │ │ ├── job-scopeId-jobId-executions-_query.yaml │ │ ├── job-scopeId-jobId-executions-executionId-targets.yaml │ │ ├── job-scopeId-jobId-executions-executionId.yaml │ │ ├── job-scopeId-jobId-executions.yaml │ │ └── jobExecution.yaml │ │ ├── jobStep │ │ ├── job-scopeId-jobId-steps-_count.yaml │ │ ├── job-scopeId-jobId-steps-_query.yaml │ │ ├── job-scopeId-jobId-steps-stepId.yaml │ │ ├── job-scopeId-jobId-steps.yaml │ │ └── jobStep.yaml │ │ ├── jobStepDefinition │ │ ├── jobStepDefinition-scopeId-_count.yaml │ │ ├── jobStepDefinition-scopeId-_query.yaml │ │ ├── jobStepDefinition-scopeId-jobStepDefinitionId.yaml │ │ ├── jobStepDefinition-scopeId.yaml │ │ └── jobStepDefinition.yaml │ │ ├── jobTarget │ │ ├── job-scopeId-jobId-targets-_count.yaml │ │ ├── job-scopeId-jobId-targets-_query.yaml │ │ ├── job-scopeId-jobId-targets-targetId-executions.yaml │ │ ├── job-scopeId-jobId-targets-targetId.yaml │ │ ├── job-scopeId-jobId-targets.yaml │ │ └── jobTarget.yaml │ │ ├── jobTrigger │ │ ├── job-scopeId-jobId-triggers-_count.yaml │ │ ├── job-scopeId-jobId-triggers-_query.yaml │ │ ├── job-scopeId-jobId-triggers-triggerId.yaml │ │ ├── job-scopeId-jobId-triggers.yaml │ │ └── jobTrigger.yaml │ │ ├── jobTriggerFired │ │ ├── job-scopeId-jobId-triggers-triggerId-fired-_count.yaml │ │ ├── job-scopeId-jobId-triggers-triggerId-fired-_query.yaml │ │ ├── job-scopeId-jobId-triggers-triggerId-fired.yaml │ │ └── jobTriggerFired.yaml │ │ ├── openapi.yaml │ │ ├── role │ │ ├── role-scopeId-_count.yaml │ │ ├── role-scopeId-_query.yaml │ │ ├── role-scopeId-roleId-users.yaml │ │ ├── role-scopeId-roleId.yaml │ │ ├── role-scopeId.yaml │ │ ├── role.yaml │ │ ├── rolePermission-scopeId-roleId-_count.yaml │ │ ├── rolePermission-scopeId-roleId-_query.yaml │ │ ├── rolePermission-scopeId-roleId-permissionId.yaml │ │ └── rolePermission-scopeId-roleId.yaml │ │ ├── serviceConfiguration │ │ ├── serviceConfiguration-scopeId-componentId.yaml │ │ ├── serviceConfiguration-scopeId.yaml │ │ └── serviceConfiguration.yaml │ │ ├── stream │ │ └── stream-scopeId.yaml │ │ ├── systemInfo │ │ └── systemInfo.yaml │ │ ├── tag │ │ ├── tag-scopeId-_count.yaml │ │ ├── tag-scopeId-_query.yaml │ │ ├── tag-scopeId-tagId.yaml │ │ ├── tag-scopeId.yaml │ │ └── tag.yaml │ │ ├── triggerDefinition │ │ ├── triggerDefinition-scopeId-_count.yaml │ │ ├── triggerDefinition-scopeId-_query.yaml │ │ ├── triggerDefinition-scopeId-triggerDefinitionId.yaml │ │ ├── triggerDefinition-scopeId.yaml │ │ └── triggerDefinition.yaml │ │ ├── user │ │ ├── user-scopeId-_count.yaml │ │ ├── user-scopeId-_query.yaml │ │ ├── user-scopeId-userId.yaml │ │ ├── user-scopeId.yaml │ │ └── user.yaml │ │ ├── userCredentials │ │ ├── user-credentials-credentialId-_reset.yaml │ │ ├── user-credentials-password.yaml │ │ └── user-credentials.yaml │ │ ├── userMfa │ │ ├── userMfa-disableTrust.yaml │ │ └── userMfa.yaml │ │ ├── userProfile │ │ └── userProfile.yaml │ │ ├── usersCredentials │ │ ├── users-credentials-scopeId-userId-_count.yaml │ │ ├── users-credentials-scopeId-userId-password-_reset.yaml │ │ └── users-credentials-scopeId-userId.yaml │ │ └── usersMfa │ │ ├── users-scopeId-userId-mfa-disableTrust.yaml │ │ └── users-scopeId-userId-mfa.yaml └── web │ ├── about.html │ ├── epl-2.0.html │ ├── notice.html │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── app │ │ │ └── api │ │ │ └── web │ │ │ ├── AppModule.java │ │ │ ├── ExceptionConfigurationProviderImpl.java │ │ │ ├── JaxbContextResolver.java │ │ │ ├── RestApiJAXBContextProvider.java │ │ │ ├── RestApiListener.java │ │ │ ├── RestApisApplication.java │ │ │ ├── ScopeIdParamConverter.java │ │ │ └── ScopeIdParamConverterProvider.java │ ├── resources │ │ ├── locator.xml │ │ ├── logback.xml │ │ └── shiro.ini │ └── webapp │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.html │ └── test │ └── java │ └── org │ └── eclipse │ └── kapua │ └── app │ └── api │ └── web │ ├── JaxbContextResolverTest.java │ ├── RestApiListenerTest.java │ ├── RestApisApplicationTest.java │ └── ScopeIdParamConverterTest.java ├── service ├── account │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── account │ │ │ ├── Account.java │ │ │ ├── AccountAttributes.java │ │ │ ├── AccountCreator.java │ │ │ ├── AccountFactory.java │ │ │ ├── AccountListResult.java │ │ │ ├── AccountQuery.java │ │ │ ├── AccountRepository.java │ │ │ ├── AccountService.java │ │ │ ├── AccountUpdateRequest.java │ │ │ ├── CurrentAccountUpdateRequest.java │ │ │ ├── Organization.java │ │ │ └── xml │ │ │ ├── AccountParentPathXmlAdapter.java │ │ │ └── AccountXmlRegistry.java │ ├── internal │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── account │ │ │ │ │ └── internal │ │ │ │ │ ├── AccountCreatorImpl.java │ │ │ │ │ ├── AccountFactoryImpl.java │ │ │ │ │ ├── AccountImpl.java │ │ │ │ │ ├── AccountImplJpaRepository.java │ │ │ │ │ ├── AccountListResultImpl.java │ │ │ │ │ ├── AccountMapper.java │ │ │ │ │ ├── AccountModule.java │ │ │ │ │ ├── AccountQueryImpl.java │ │ │ │ │ ├── AccountRelativeFinderImpl.java │ │ │ │ │ ├── AccountServiceConfigurationManagerModule.java │ │ │ │ │ ├── AccountServiceImpl.java │ │ │ │ │ ├── AccountServiceModule.java │ │ │ │ │ ├── CachingAccountRepository.java │ │ │ │ │ ├── OrganizationImpl.java │ │ │ │ │ └── setting │ │ │ │ │ ├── KapuaAccountSetting.java │ │ │ │ │ └── KapuaAccountSettingKeys.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ ├── metatypes │ │ │ │ │ └── org.eclipse.kapua.service.account.AccountService.xml │ │ │ │ └── persistence.xml │ │ │ │ ├── kapua-account-service-error-messages.properties │ │ │ │ ├── kapua-account-setting.properties │ │ │ │ └── liquibase │ │ │ │ ├── 0.2.0 │ │ │ │ ├── account-configuration.xml │ │ │ │ ├── account-domain.xml │ │ │ │ ├── account.xml │ │ │ │ └── changelog-account-0.2.0.xml │ │ │ │ ├── 0.3.0 │ │ │ │ ├── account-id_check_positive.xml │ │ │ │ ├── account-parent_account_path_length.xml │ │ │ │ └── changelog-account-0.3.0.xml │ │ │ │ ├── 1.0.0 │ │ │ │ ├── account-domain.xml │ │ │ │ ├── account-expiration-date.xml │ │ │ │ ├── account-sys-housekeeper-run-seed.xml │ │ │ │ └── changelog-account-1.0.0.xml │ │ │ │ ├── 1.1.0 │ │ │ │ ├── account-description.xml │ │ │ │ └── changelog-account-1.1.0.xml │ │ │ │ ├── 1.2.0 │ │ │ │ ├── account-timestamp.xml │ │ │ │ └── changelog-account-1.2.0.xml │ │ │ │ ├── 1.5.0 │ │ │ │ ├── account-name_indexes.xml │ │ │ │ └── changelog-account-1.5.0.xml │ │ │ │ ├── changelog-account-master.xml │ │ │ │ └── common-properties.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── account │ │ │ │ └── xml │ │ │ │ ├── AccountParentPathXmlAdapterTest.java │ │ │ │ └── TestConfigModule.java │ │ │ └── resources │ │ │ ├── locator.xml │ │ │ └── logback.xml │ ├── pom.xml │ ├── test-steps │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── account │ │ │ └── steps │ │ │ └── AccountServiceSteps.java │ └── test │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── account │ │ │ └── test │ │ │ ├── AccountLocatorConfiguration.java │ │ │ └── RunAccountUnitTest.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.kapua.service.authentication.CredentialsFactory │ │ ├── features │ │ └── AccountService.feature │ │ ├── kapua-environment-setting.properties │ │ ├── locator.xml │ │ ├── logback.xml │ │ └── shiro.ini ├── api │ ├── about.html │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ ├── ExceptionMessageUtils.java │ │ │ │ ├── KapuaDuplicateExternalIdException.java │ │ │ │ ├── KapuaDuplicateExternalIdInAnotherAccountError.java │ │ │ │ ├── KapuaDuplicateExternalUsernameException.java │ │ │ │ ├── KapuaDuplicateNameException.java │ │ │ │ ├── KapuaDuplicateNameInAnotherAccountError.java │ │ │ │ ├── KapuaEntityCloneException.java │ │ │ │ ├── KapuaEntityExistsException.java │ │ │ │ ├── KapuaEntityNotFoundException.java │ │ │ │ ├── KapuaEntityUniquenessException.java │ │ │ │ ├── KapuaErrorCode.java │ │ │ │ ├── KapuaErrorCodes.java │ │ │ │ ├── KapuaException.java │ │ │ │ ├── KapuaExceptionWithoutBundle.java │ │ │ │ ├── KapuaIllegalAccessException.java │ │ │ │ ├── KapuaIllegalArgumentException.java │ │ │ │ ├── KapuaIllegalNullArgumentException.java │ │ │ │ ├── KapuaIllegalStateException.java │ │ │ │ ├── KapuaMaxNumberOfItemsReachedException.java │ │ │ │ ├── KapuaOptimisticLockingException.java │ │ │ │ ├── KapuaRuntimeErrorCodes.java │ │ │ │ ├── KapuaRuntimeException.java │ │ │ │ ├── KapuaSerializable.java │ │ │ │ ├── KapuaUnauthenticatedException.java │ │ │ │ ├── MissingKapuaErrorCodes.java │ │ │ │ ├── ResourceRestrictedToFirstLevelAccountException.java │ │ │ │ ├── ResourceRestrictedToSysAdminAccountException.java │ │ │ │ ├── entity │ │ │ │ ├── EntityPropertiesReadException.java │ │ │ │ └── EntityPropertiesWriteException.java │ │ │ │ ├── event │ │ │ │ ├── ListenServiceEvent.java │ │ │ │ ├── RaiseServiceEvent.java │ │ │ │ ├── ServiceEvent.java │ │ │ │ ├── ServiceEventBus.java │ │ │ │ ├── ServiceEventBusException.java │ │ │ │ ├── ServiceEventBusListener.java │ │ │ │ ├── ServiceEventListeners.java │ │ │ │ └── Subscription.java │ │ │ │ ├── exception │ │ │ │ └── KapuaFeatureDisabledException.java │ │ │ │ ├── kapuaIntegrityConstraintViolationException.java │ │ │ │ ├── locator │ │ │ │ ├── KapuaLocator.java │ │ │ │ ├── KapuaLocatorErrorCodes.java │ │ │ │ ├── KapuaLocatorException.java │ │ │ │ ├── KapuaProvider.java │ │ │ │ ├── KapuaServiceLoader.java │ │ │ │ ├── LocatorConfig.java │ │ │ │ ├── LocatorConfigurationExtractor.java │ │ │ │ └── initializers │ │ │ │ │ └── KapuaInitializingMethod.java │ │ │ │ ├── model │ │ │ │ ├── KapuaEntity.java │ │ │ │ ├── KapuaEntityAttributes.java │ │ │ │ ├── KapuaEntityCreator.java │ │ │ │ ├── KapuaEntityFactory.java │ │ │ │ ├── KapuaForwardableEntity.java │ │ │ │ ├── KapuaForwardableEntityAttributes.java │ │ │ │ ├── KapuaNamedEntity.java │ │ │ │ ├── KapuaNamedEntityAttributes.java │ │ │ │ ├── KapuaNamedEntityCreator.java │ │ │ │ ├── KapuaNamedEntityUpdateRequest.java │ │ │ │ ├── KapuaObjectFactory.java │ │ │ │ ├── KapuaUpdatableEntity.java │ │ │ │ ├── KapuaUpdatableEntityAttributes.java │ │ │ │ ├── KapuaUpdatableEntityCreator.java │ │ │ │ ├── KapuaUpdatableEntityUpdateRequest.java │ │ │ │ ├── config │ │ │ │ │ └── metatype │ │ │ │ │ │ ├── EmptyTocd.java │ │ │ │ │ │ ├── KapuaTad.java │ │ │ │ │ │ ├── KapuaTattribute.java │ │ │ │ │ │ ├── KapuaTdesignate.java │ │ │ │ │ │ ├── KapuaTicon.java │ │ │ │ │ │ ├── KapuaTmetadata.java │ │ │ │ │ │ ├── KapuaTobject.java │ │ │ │ │ │ ├── KapuaTocd.java │ │ │ │ │ │ ├── KapuaToption.java │ │ │ │ │ │ ├── KapuaTscalar.java │ │ │ │ │ │ ├── KapuaTscalarAdapter.java │ │ │ │ │ │ └── Password.java │ │ │ │ ├── domain │ │ │ │ │ ├── AbstractDomain.java │ │ │ │ │ ├── Actions.java │ │ │ │ │ ├── Domain.java │ │ │ │ │ └── DomainEntry.java │ │ │ │ ├── id │ │ │ │ │ ├── KapuaId.java │ │ │ │ │ ├── KapuaIdAdapter.java │ │ │ │ │ ├── KapuaIdFactory.java │ │ │ │ │ └── KapuaIdImpl.java │ │ │ │ ├── query │ │ │ │ │ ├── FieldSortCriteria.java │ │ │ │ │ ├── KapuaForwardableEntityQuery.java │ │ │ │ │ ├── KapuaListResult.java │ │ │ │ │ ├── KapuaQuery.java │ │ │ │ │ ├── KapuaSortCriteria.java │ │ │ │ │ ├── QueryFactory.java │ │ │ │ │ ├── SortOrder.java │ │ │ │ │ └── predicate │ │ │ │ │ │ ├── AndPredicate.java │ │ │ │ │ │ ├── AttributePredicate.java │ │ │ │ │ │ ├── MatchPredicate.java │ │ │ │ │ │ ├── OrPredicate.java │ │ │ │ │ │ └── QueryPredicate.java │ │ │ │ ├── type │ │ │ │ │ ├── ByteArrayConverter.java │ │ │ │ │ ├── DateConverter.java │ │ │ │ │ ├── ObjectTypeConverter.java │ │ │ │ │ └── ObjectValueConverter.java │ │ │ │ └── xml │ │ │ │ │ ├── BinaryXmlAdapter.java │ │ │ │ │ ├── DateXmlAdapter.java │ │ │ │ │ ├── ObjectTypeXmlAdapter.java │ │ │ │ │ ├── XmlAdaptedNameTypeValueObject.java │ │ │ │ │ ├── XmlAdaptedTypeValueObject.java │ │ │ │ │ ├── XmlPropertyAdapted.java │ │ │ │ │ └── adapters │ │ │ │ │ ├── BooleanPropertyAdapter.java │ │ │ │ │ ├── BytePropertyAdapter.java │ │ │ │ │ ├── CharPropertyAdapter.java │ │ │ │ │ ├── ClassBasedXmlPropertyAdapterBase.java │ │ │ │ │ ├── DoublePropertyAdapter.java │ │ │ │ │ ├── FloatPropertyAdapter.java │ │ │ │ │ ├── IntegerPropertyAdapter.java │ │ │ │ │ ├── LongPropertyAdapter.java │ │ │ │ │ ├── ShortPropertyAdapter.java │ │ │ │ │ ├── StringPropertyAdapter.java │ │ │ │ │ ├── XmlPropertiesAdapter.java │ │ │ │ │ └── XmlPropertyAdapter.java │ │ │ │ ├── service │ │ │ │ ├── KapuaEntityService.java │ │ │ │ ├── KapuaNamedEntityService.java │ │ │ │ ├── KapuaService.java │ │ │ │ ├── KapuaUpdatableEntityService.java │ │ │ │ └── config │ │ │ │ │ ├── KapuaConfigurableService.java │ │ │ │ │ ├── ServiceComponentConfiguration.java │ │ │ │ │ ├── ServiceConfiguration.java │ │ │ │ │ ├── ServiceXmlConfigPropertiesAdapted.java │ │ │ │ │ ├── ServiceXmlConfigPropertiesAdapter.java │ │ │ │ │ └── ServiceXmlConfigPropertyAdapted.java │ │ │ │ └── storage │ │ │ │ ├── KapuaEntityRepository.java │ │ │ │ ├── KapuaEntityRepositoryNoopWrapper.java │ │ │ │ ├── KapuaNamedEntityRepository.java │ │ │ │ ├── KapuaNamedEntityRepositoryNoopWrapper.java │ │ │ │ ├── KapuaUpdatableEntityRepository.java │ │ │ │ ├── KapuaUpdatableEntityRepositoryNoopWrapper.java │ │ │ │ ├── TxContext.java │ │ │ │ ├── TxManager.java │ │ │ │ └── TxManagerImpl.java │ │ └── resources │ │ │ ├── kapua-locator-service-error-messages.properties │ │ │ ├── kapua-service-error-messages.properties │ │ │ └── log4j.properties │ │ └── test │ │ └── java │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ ├── ExceptionMessageUtilsTest.java │ │ ├── KapuaDuplicateExternalIdExceptionTest.java │ │ ├── KapuaDuplicateExternalIdInAnotherAccountErrorTest.java │ │ ├── KapuaDuplicateNameExceptionTest.java │ │ ├── KapuaDuplicateNameInAnotherAccountErrorTest.java │ │ ├── KapuaEntityCloneExceptionTest.java │ │ ├── KapuaEntityExistsExceptionTest.java │ │ ├── KapuaEntityNotFoundExceptionTest.java │ │ ├── KapuaEntityUniquenessExceptionTest.java │ │ ├── KapuaExceptionTest.java │ │ ├── KapuaExceptionWithoutBundleTest.java │ │ ├── KapuaIllegalAccessExceptionTest.java │ │ ├── KapuaIllegalArgumentExceptionTest.java │ │ ├── KapuaIllegalNullArgumentExceptionTest.java │ │ ├── KapuaIllegalStateExceptionTest.java │ │ ├── KapuaMaxNumberOfItemsReachedExceptionTest.java │ │ ├── KapuaOptimisticLockingExceptionTest.java │ │ ├── KapuaRuntimeExceptionTest.java │ │ ├── KapuaUnauthenticatedExceptionTest.java │ │ ├── entity │ │ ├── EntityPropertiesReadExceptionTest.java │ │ └── EntityPropertiesWriteExceptionTest.java │ │ ├── event │ │ ├── ServiceEventBusExceptionTest.java │ │ └── ServiceEventTest.java │ │ ├── locator │ │ └── KapuaLocatorExceptionTest.java │ │ ├── model │ │ ├── KapuaEntityAttributesTest.java │ │ ├── config │ │ │ └── metatype │ │ │ │ ├── EmptyTocdTest.java │ │ │ │ ├── KapuaTadTest.java │ │ │ │ ├── KapuaTattributeTest.java │ │ │ │ ├── KapuaTdesignateTest.java │ │ │ │ ├── KapuaTiconTest.java │ │ │ │ ├── KapuaTmetadataTest.java │ │ │ │ ├── KapuaTobjectTest.java │ │ │ │ ├── KapuaTocdTest.java │ │ │ │ ├── KapuaToptionTest.java │ │ │ │ └── PasswordTest.java │ │ ├── domain │ │ │ └── AbstractDomainTest.java │ │ ├── id │ │ │ └── KapuaIdImplTest.java │ │ ├── query │ │ │ └── SortOrderTest.java │ │ ├── type │ │ │ ├── ByteArrayConverterTest.java │ │ │ ├── DateConverterTest.java │ │ │ ├── ObjectTypeConverterTest.java │ │ │ ├── ObjectValueConverterTest.java │ │ │ └── ObjectValueConverterTestEnum.java │ │ └── xml │ │ │ ├── BinaryXmlAdapterTest.java │ │ │ ├── DateXmlAdapterTest.java │ │ │ ├── ObjectTypeXmlAdapterTest.java │ │ │ ├── XmlAdaptedNameTypeValueObjectTest.java │ │ │ ├── XmlAdaptedTypeValueObjectTest.java │ │ │ └── adapters │ │ │ └── XmlPropertiesAdapterTest.java │ │ └── service │ │ └── config │ │ ├── ServiceXmlConfigPropertiesAdaptedTest.java │ │ ├── ServiceXmlConfigPropertiesAdapterTest.java │ │ └── ServiceXmlConfigPropertyAdaptedTest.java ├── authentication-app │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── authentication │ │ │ ├── AppModule.java │ │ │ ├── AuthenticationApplication.java │ │ │ ├── AuthenticationJAXBContextProvider.java │ │ │ ├── AuthenticationRouteHealthIndicator.java │ │ │ └── SpringBridge.java │ │ └── resources │ │ ├── camel │ │ └── camel.xml │ │ ├── locator.xml │ │ ├── logback.xml │ │ ├── shiro.ini │ │ └── spring │ │ ├── application.properties │ │ └── applicationContext.xml ├── authentication │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── authentication │ │ │ ├── AuthenticationModule.java │ │ │ ├── AuthenticationServiceBackEndCall.java │ │ │ ├── AuthenticationServiceConverter.java │ │ │ ├── AuthenticationServiceListener.java │ │ │ ├── MetricsAuthentication.java │ │ │ ├── authentication │ │ │ ├── AclCreator.java │ │ │ ├── AdminAuthenticationLogic.java │ │ │ ├── AuthenticationLogic.java │ │ │ ├── Authenticator.java │ │ │ ├── DefaultAuthenticator.java │ │ │ ├── UserAuthenticationLogic.java │ │ │ └── UserPermissions.java │ │ │ └── setting │ │ │ ├── ServiceAuthenticationSetting.java │ │ │ └── ServiceAuthenticationSettingKey.java │ │ └── resources │ │ ├── kapua-service-authentication-setting.properties │ │ └── liquibase │ │ ├── 0.2.0 │ │ ├── broker-domain.xml │ │ └── changelog-broker-0.2.0.xml │ │ ├── 1.0.0 │ │ ├── broker-domain.xml │ │ └── changelog-broker-1.0.0.xml │ │ └── changelog-broker-master.xml ├── camel │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── service │ │ └── camel │ │ ├── application │ │ ├── CamelModule.java │ │ ├── KapuaApplication.java │ │ └── MetricsCamel.java │ │ ├── converter │ │ ├── AbstractKapuaConverter.java │ │ └── KapuaCamelFilter.java │ │ ├── listener │ │ └── error │ │ │ ├── ErrorMessageListener.java │ │ │ ├── FailureProcessor.java │ │ │ └── ObjectSerializer.java │ │ └── message │ │ ├── CamelKapuaMessage.java │ │ └── JmsUtil.java ├── client │ ├── about.html │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── client │ │ │ │ ├── message │ │ │ │ ├── MessageConstants.java │ │ │ │ ├── MessageType.java │ │ │ │ └── Util.java │ │ │ │ ├── protocol │ │ │ │ ├── DefaultProtocolDescriptionProvider.java │ │ │ │ ├── ProtocolDescriptor.java │ │ │ │ ├── ProtocolDescriptorModule.java │ │ │ │ └── ProtocolDescriptorProvider.java │ │ │ │ └── setting │ │ │ │ ├── ServiceClientSetting.java │ │ │ │ └── ServiceClientSettingKey.java │ │ ├── readme.txt │ │ └── resources │ │ │ └── kapua-service-client-setting.properties │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── broker │ │ │ └── client │ │ │ └── protocol │ │ │ ├── DefaultProtocolDescriptorProviderTest.java │ │ │ ├── TestFragment.java │ │ │ └── Tests.java │ │ └── resources │ │ └── protocol.descriptor │ │ ├── 1.properties │ │ ├── 2.properties │ │ └── 3.properties ├── commons │ ├── elasticsearch │ │ ├── client-api │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── elasticsearch │ │ │ │ │ │ └── client │ │ │ │ │ │ ├── AbstractElasticsearchClient.java │ │ │ │ │ │ ├── AbstractStoreUtils.java │ │ │ │ │ │ ├── ElasticsearchClient.java │ │ │ │ │ │ ├── ElasticsearchClientProvider.java │ │ │ │ │ │ ├── ElasticsearchRepository.java │ │ │ │ │ │ ├── ModelContext.java │ │ │ │ │ │ ├── QueryConverter.java │ │ │ │ │ │ ├── SchemaKeys.java │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── ElasticsearchClientConfiguration.java │ │ │ │ │ │ ├── ElasticsearchClientReconnectConfiguration.java │ │ │ │ │ │ ├── ElasticsearchClientRequestConfiguration.java │ │ │ │ │ │ ├── ElasticsearchClientSslConfiguration.java │ │ │ │ │ │ └── ElasticsearchNode.java │ │ │ │ │ │ ├── exception │ │ │ │ │ │ ├── ClientActionResponseException.java │ │ │ │ │ │ ├── ClientClosingException.java │ │ │ │ │ │ ├── ClientCommunicationException.java │ │ │ │ │ │ ├── ClientErrorCodes.java │ │ │ │ │ │ ├── ClientException.java │ │ │ │ │ │ ├── ClientInitializationException.java │ │ │ │ │ │ ├── ClientInternalError.java │ │ │ │ │ │ ├── ClientProviderInitException.java │ │ │ │ │ │ ├── ClientUnavailableException.java │ │ │ │ │ │ ├── DatamodelMappingException.java │ │ │ │ │ │ └── QueryMappingException.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── BulkUpdateRequest.java │ │ │ │ │ │ ├── BulkUpdateResponse.java │ │ │ │ │ │ ├── IndexRequest.java │ │ │ │ │ │ ├── IndexResponse.java │ │ │ │ │ │ ├── InsertRequest.java │ │ │ │ │ │ ├── InsertResponse.java │ │ │ │ │ │ ├── Request.java │ │ │ │ │ │ ├── Response.java │ │ │ │ │ │ ├── ResultList.java │ │ │ │ │ │ ├── UpdateRequest.java │ │ │ │ │ │ └── UpdateResponse.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ └── InetAddressParser.java │ │ │ │ └── resources │ │ │ │ │ └── elasticsearch-client-error-messages.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── elasticsearch │ │ │ │ └── client │ │ │ │ └── utils │ │ │ │ └── InetAddressParserTest.java │ │ ├── client-rest │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── elasticsearch │ │ │ │ └── client │ │ │ │ └── rest │ │ │ │ ├── ElasticsearchKeywords.java │ │ │ │ ├── ElasticsearchResourcePaths.java │ │ │ │ ├── MetricsEsClient.java │ │ │ │ ├── QueryConverterImpl.java │ │ │ │ ├── RestElasticsearchClient.java │ │ │ │ ├── RestElasticsearchClientProvider.java │ │ │ │ ├── exception │ │ │ │ ├── RequestEntityWriteError.java │ │ │ │ └── ResponseEntityReadError.java │ │ │ │ ├── ssl │ │ │ │ └── SkipCertificateCheckTrustStrategy.java │ │ │ │ └── utils │ │ │ │ ├── ApplicationJsonEntityBuilder.java │ │ │ │ └── ContentTypeApplicationJsonHeader.java │ │ └── pom.xml │ ├── pom.xml │ ├── storable │ │ ├── api │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── storable │ │ │ │ │ │ ├── StorableFactory.java │ │ │ │ │ │ ├── StorableService.java │ │ │ │ │ │ ├── exception │ │ │ │ │ │ ├── InvalidValueMappingException.java │ │ │ │ │ │ ├── MappingException.java │ │ │ │ │ │ ├── StorableErrorCodes.java │ │ │ │ │ │ ├── StorableException.java │ │ │ │ │ │ └── UnsupportedTypeMappingException.java │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── Storable.java │ │ │ │ │ │ ├── StorableCreator.java │ │ │ │ │ │ ├── StorableListResult.java │ │ │ │ │ │ ├── id │ │ │ │ │ │ │ ├── StorableId.java │ │ │ │ │ │ │ ├── StorableIdFactory.java │ │ │ │ │ │ │ └── StorableIdXmlAdapter.java │ │ │ │ │ │ ├── query │ │ │ │ │ │ │ ├── SortDirection.java │ │ │ │ │ │ │ ├── SortField.java │ │ │ │ │ │ │ ├── SortFieldXmlAdapter.java │ │ │ │ │ │ │ ├── StorableFetchStyle.java │ │ │ │ │ │ │ ├── StorableField.java │ │ │ │ │ │ │ ├── StorableQuery.java │ │ │ │ │ │ │ ├── XmlAdaptedSortField.java │ │ │ │ │ │ │ ├── XmlAdaptedSortFields.java │ │ │ │ │ │ │ └── predicate │ │ │ │ │ │ │ │ ├── AndPredicate.java │ │ │ │ │ │ │ │ ├── ExistsPredicate.java │ │ │ │ │ │ │ │ ├── IdsPredicate.java │ │ │ │ │ │ │ │ ├── MatchPredicate.java │ │ │ │ │ │ │ │ ├── OrPredicate.java │ │ │ │ │ │ │ │ ├── RangePredicate.java │ │ │ │ │ │ │ │ ├── StorablePredicate.java │ │ │ │ │ │ │ │ ├── StorablePredicateFactory.java │ │ │ │ │ │ │ │ └── TermPredicate.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── KeyValueEntry.java │ │ │ │ │ │ │ └── MappingUtils.java │ │ │ │ │ │ └── repository │ │ │ │ │ │ └── StorableRepository.java │ │ │ │ └── resources │ │ │ │ │ └── storable-error-messages.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── storable │ │ │ │ └── exception │ │ │ │ ├── InvalidValueMappingExceptionTest.java │ │ │ │ └── UnsupportedTypeMappingExceptionTest.java │ │ ├── internal │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── storable │ │ │ │ └── model │ │ │ │ ├── AbstractStorableListResult.java │ │ │ │ ├── DataStorableModule.java │ │ │ │ ├── id │ │ │ │ ├── StorableIdFactoryImpl.java │ │ │ │ ├── StorableIdImpl.java │ │ │ │ └── StorableIdModule.java │ │ │ │ └── query │ │ │ │ ├── AbstractStorableQuery.java │ │ │ │ ├── StorableFieldImpl.java │ │ │ │ └── predicate │ │ │ │ ├── AndPredicateImpl.java │ │ │ │ ├── ExistsPredicateImpl.java │ │ │ │ ├── IdsPredicateImpl.java │ │ │ │ ├── MatchPredicateImpl.java │ │ │ │ ├── OrPredicateImpl.java │ │ │ │ ├── PredicateConstants.java │ │ │ │ ├── RangePredicateImpl.java │ │ │ │ ├── StorablePredicateFactoryImpl.java │ │ │ │ ├── StorablePredicateImpl.java │ │ │ │ ├── StorableQueryPredicateModule.java │ │ │ │ └── TermPredicateImpl.java │ │ └── pom.xml │ └── utils │ │ ├── api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── utils │ │ │ ├── KapuaEntityQueryUtil.java │ │ │ └── KapuaForwardableEntityRepository.java │ │ ├── internal │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── utils │ │ │ └── internal │ │ │ ├── KapuaEntityQueryUtilImpl.java │ │ │ ├── KapuaForwardableEntityJpaRepository.java │ │ │ └── KapuaServiceUtilsModule.java │ │ └── pom.xml ├── datastore │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── datastore │ │ │ │ ├── ChannelInfoFactory.java │ │ │ │ ├── ChannelInfoRegistryService.java │ │ │ │ ├── ClientInfoFactory.java │ │ │ │ ├── ClientInfoRegistryService.java │ │ │ │ ├── MessageStoreFactory.java │ │ │ │ ├── MessageStoreService.java │ │ │ │ ├── MetricInfoFactory.java │ │ │ │ ├── MetricInfoRegistryService.java │ │ │ │ ├── exception │ │ │ │ ├── DatastoreDisabledException.java │ │ │ │ ├── DatastoreInternalError.java │ │ │ │ ├── DatastoreOperationException.java │ │ │ │ ├── DatastoreServiceError.java │ │ │ │ ├── DatastoreServiceErrorCodes.java │ │ │ │ ├── DatastoreServiceException.java │ │ │ │ └── DatastoreUnavailableException.java │ │ │ │ └── model │ │ │ │ ├── ChannelInfo.java │ │ │ │ ├── ChannelInfoCreator.java │ │ │ │ ├── ChannelInfoListResult.java │ │ │ │ ├── ClientInfo.java │ │ │ │ ├── ClientInfoCreator.java │ │ │ │ ├── ClientInfoListResult.java │ │ │ │ ├── DatastoreMessage.java │ │ │ │ ├── MessageListResult.java │ │ │ │ ├── MetricInfo.java │ │ │ │ ├── MetricInfoCreator.java │ │ │ │ ├── MetricInfoListResult.java │ │ │ │ ├── MetricInfoTypeAdapter.java │ │ │ │ ├── metric │ │ │ │ └── Metric.java │ │ │ │ ├── query │ │ │ │ ├── ChannelInfoQuery.java │ │ │ │ ├── ClientInfoQuery.java │ │ │ │ ├── MessageQuery.java │ │ │ │ ├── MetricInfoQuery.java │ │ │ │ └── predicate │ │ │ │ │ ├── ChannelMatchPredicate.java │ │ │ │ │ ├── DatastorePredicateFactory.java │ │ │ │ │ ├── MetricExistsPredicate.java │ │ │ │ │ └── MetricPredicate.java │ │ │ │ └── xml │ │ │ │ ├── ChannelInfoXmlRegistry.java │ │ │ │ ├── ClientInfoXmlRegistry.java │ │ │ │ ├── DatastoreMessageXmlRegistry.java │ │ │ │ └── MetricInfoXmlRegistry.java │ │ │ └── resources │ │ │ └── dastore-service-error-messages.properties │ ├── internal │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── datastore │ │ │ │ └── internal │ │ │ │ ├── AbstractDatastoreFacade.java │ │ │ │ ├── ChannelInfoElasticsearchRepository.java │ │ │ │ ├── ChannelInfoFactoryImpl.java │ │ │ │ ├── ChannelInfoRegistryFacade.java │ │ │ │ ├── ChannelInfoRegistryFacadeImpl.java │ │ │ │ ├── ChannelInfoRegistryServiceImpl.java │ │ │ │ ├── ChannelInfoRepository.java │ │ │ │ ├── ClientInfoElasticsearchRepository.java │ │ │ │ ├── ClientInfoFactoryImpl.java │ │ │ │ ├── ClientInfoRegistryFacade.java │ │ │ │ ├── ClientInfoRegistryFacadeImpl.java │ │ │ │ ├── ClientInfoRegistryServiceImpl.java │ │ │ │ ├── ClientInfoRepository.java │ │ │ │ ├── ConfigurationProvider.java │ │ │ │ ├── ConfigurationProviderImpl.java │ │ │ │ ├── DatastoreCacheManager.java │ │ │ │ ├── DatastoreElasticSearchRepositoryBase.java │ │ │ │ ├── DatastoreModule.java │ │ │ │ ├── MessageElasticsearchRepository.java │ │ │ │ ├── MessageRepository.java │ │ │ │ ├── MessageStoreFacade.java │ │ │ │ ├── MessageStoreFacadeImpl.java │ │ │ │ ├── MessageStoreFactoryImpl.java │ │ │ │ ├── MessageStoreServiceConfigurationManagerModule.java │ │ │ │ ├── MessageStoreServiceImpl.java │ │ │ │ ├── MetricInfoFactoryImpl.java │ │ │ │ ├── MetricInfoRegistryFacade.java │ │ │ │ ├── MetricInfoRegistryFacadeImpl.java │ │ │ │ ├── MetricInfoRegistryServiceImpl.java │ │ │ │ ├── MetricInfoRepository.java │ │ │ │ ├── MetricInfoRepositoryImpl.java │ │ │ │ ├── MetricsDatastore.java │ │ │ │ ├── client │ │ │ │ └── DatastoreElasticsearchClientConfiguration.java │ │ │ │ ├── converter │ │ │ │ └── ModelContextImpl.java │ │ │ │ ├── mediator │ │ │ │ ├── ChannelInfoField.java │ │ │ │ ├── ClientInfoField.java │ │ │ │ ├── ConfigurationException.java │ │ │ │ ├── DatastoreChannel.java │ │ │ │ ├── DatastoreCommunicationException.java │ │ │ │ ├── DatastoreErrorCodes.java │ │ │ │ ├── DatastoreException.java │ │ │ │ ├── DatastoreUtils.java │ │ │ │ ├── InvalidChannelException.java │ │ │ │ ├── MessageField.java │ │ │ │ ├── MessageInfo.java │ │ │ │ ├── MessageStoreConfiguration.java │ │ │ │ ├── Metric.java │ │ │ │ └── MetricInfoField.java │ │ │ │ ├── model │ │ │ │ ├── ChannelInfoCreatorImpl.java │ │ │ │ ├── ChannelInfoImpl.java │ │ │ │ ├── ChannelInfoListResultImpl.java │ │ │ │ ├── ClientInfoCreatorImpl.java │ │ │ │ ├── ClientInfoImpl.java │ │ │ │ ├── ClientInfoListResultImpl.java │ │ │ │ ├── DataIndexBy.java │ │ │ │ ├── DatastoreMessageImpl.java │ │ │ │ ├── MessageListResultImpl.java │ │ │ │ ├── MessageUniquenessCheck.java │ │ │ │ ├── MetricInfoCreatorImpl.java │ │ │ │ ├── MetricInfoImpl.java │ │ │ │ ├── MetricInfoListResultImpl.java │ │ │ │ ├── metric │ │ │ │ │ ├── BinaryMetric.java │ │ │ │ │ ├── BooleanMetric.java │ │ │ │ │ ├── DateMetric.java │ │ │ │ │ ├── DoubleMetric.java │ │ │ │ │ ├── FloatMetric.java │ │ │ │ │ ├── IntMetric.java │ │ │ │ │ ├── LongMetric.java │ │ │ │ │ ├── MetricImpl.java │ │ │ │ │ ├── MetricsIndexBy.java │ │ │ │ │ └── StringMetric.java │ │ │ │ └── query │ │ │ │ │ ├── ChannelInfoQueryImpl.java │ │ │ │ │ ├── ClientInfoQueryImpl.java │ │ │ │ │ ├── MessageQueryImpl.java │ │ │ │ │ ├── MetricInfoQueryImpl.java │ │ │ │ │ └── predicate │ │ │ │ │ ├── ChannelMatchPredicateImpl.java │ │ │ │ │ ├── DatastorePredicateFactoryImpl.java │ │ │ │ │ ├── DatastoreQueryPredicateModule.java │ │ │ │ │ ├── MetricExistsPredicateImpl.java │ │ │ │ │ └── MetricPredicateImpl.java │ │ │ │ ├── schema │ │ │ │ ├── ChannelInfoSchema.java │ │ │ │ ├── ClientInfoSchema.java │ │ │ │ ├── MessageSchema.java │ │ │ │ └── MetricInfoSchema.java │ │ │ │ └── setting │ │ │ │ ├── DatastoreElasticsearchClientSettings.java │ │ │ │ ├── DatastoreElasticsearchClientSettingsKey.java │ │ │ │ ├── DatastoreSettings.java │ │ │ │ └── DatastoreSettingsKey.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── metatypes │ │ │ │ └── org.eclipse.kapua.service.datastore.MessageStoreService.xml │ │ │ └── persistence.xml │ │ │ ├── kapua-datastore-elasticsearch-client-settings.properties │ │ │ ├── kapua-datastore-service-error-messages.properties │ │ │ ├── kapua-datastore-settings.properties │ │ │ └── liquibase │ │ │ ├── 0.2.0 │ │ │ ├── changelog-datastore-0.2.0.xml │ │ │ └── datastore-domain.xml │ │ │ ├── 1.0.0 │ │ │ ├── changelog-datastore-1.0.0.xml │ │ │ └── datastore-domain.xml │ │ │ └── changelog-datastore-master.xml │ ├── pom.xml │ ├── test-steps │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── datastore │ │ │ ├── internal │ │ │ └── MetricEntry.java │ │ │ └── steps │ │ │ └── DatastoreSteps.java │ └── test │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── datastore │ │ │ └── test │ │ │ └── junit │ │ │ ├── DatastoreJAXBContextProvider.java │ │ │ ├── DatastoreUtilsIndexCalculatorTest.java │ │ │ └── utils │ │ │ ├── DatastoreUtilsConvertDateTest.java │ │ │ ├── DatastoreUtilsIndexNameTest.java │ │ │ └── MessageStoreConfigurationTest.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.kapua.service.authentication.CredentialsFactory │ │ ├── kapua-datastore-embedded-client-setting.properties │ │ ├── kapua-datastore-rest-client-setting.properties │ │ ├── kapua-datastore-setting.properties │ │ ├── kapua-datastore-transport-client-setting.properties │ │ ├── kapua-environment-setting.properties │ │ ├── locator.xml │ │ └── logback.xml ├── device │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── device │ │ │ └── management │ │ │ └── message │ │ │ ├── KapuaAppChannel.java │ │ │ ├── KapuaAppProperties.java │ │ │ ├── KapuaControlChannel.java │ │ │ ├── KapuaEventChannel.java │ │ │ ├── KapuaMethod.java │ │ │ ├── event │ │ │ ├── KapuaManagementEventChannel.java │ │ │ ├── KapuaManagementEventMessage.java │ │ │ └── KapuaManagementEventPayload.java │ │ │ ├── notification │ │ │ ├── KapuaNotifyChannel.java │ │ │ ├── KapuaNotifyMessage.java │ │ │ ├── KapuaNotifyPayload.java │ │ │ └── NotifyStatus.java │ │ │ ├── request │ │ │ ├── KapuaRequestChannel.java │ │ │ ├── KapuaRequestMessage.java │ │ │ ├── KapuaRequestMessageFactory.java │ │ │ ├── KapuaRequestPayload.java │ │ │ └── xml │ │ │ │ └── RequestMessageXmlRegistry.java │ │ │ ├── response │ │ │ ├── KapuaResponseChannel.java │ │ │ ├── KapuaResponseCode.java │ │ │ ├── KapuaResponseMessage.java │ │ │ ├── KapuaResponsePayload.java │ │ │ └── ResponseProperties.java │ │ │ └── xml │ │ │ └── KapuaAppPropertiesXmlAdapter.java │ ├── authentication │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── device │ │ │ └── authentication │ │ │ ├── DeviceAuthenticationModule.java │ │ │ ├── UserPassDeviceConnectionCredentialAdapter.java │ │ │ └── api │ │ │ └── DeviceConnectionCredentialAdapter.java │ ├── call │ │ ├── api │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── call │ │ │ │ │ │ ├── DeviceCall.java │ │ │ │ │ │ ├── DeviceCallFactory.java │ │ │ │ │ │ ├── DeviceCallback.java │ │ │ │ │ │ ├── DeviceMessageFactory.java │ │ │ │ │ │ ├── DeviceMethod.java │ │ │ │ │ │ ├── exception │ │ │ │ │ │ ├── DeviceCallErrorCodes.java │ │ │ │ │ │ ├── DeviceCallException.java │ │ │ │ │ │ ├── DeviceCallSendException.java │ │ │ │ │ │ └── DeviceCallTimeoutException.java │ │ │ │ │ │ └── message │ │ │ │ │ │ ├── DeviceChannel.java │ │ │ │ │ │ ├── DeviceMessage.java │ │ │ │ │ │ ├── DeviceMetrics.java │ │ │ │ │ │ ├── DevicePayload.java │ │ │ │ │ │ ├── DevicePosition.java │ │ │ │ │ │ ├── app │ │ │ │ │ │ ├── DeviceAppChannel.java │ │ │ │ │ │ ├── DeviceAppMessage.java │ │ │ │ │ │ ├── DeviceAppMetrics.java │ │ │ │ │ │ ├── DeviceAppPayload.java │ │ │ │ │ │ ├── event │ │ │ │ │ │ │ ├── DeviceManagementEventChannel.java │ │ │ │ │ │ │ ├── DeviceManagementEventMessage.java │ │ │ │ │ │ │ └── DeviceManagementEventPayload.java │ │ │ │ │ │ ├── notification │ │ │ │ │ │ │ ├── DeviceNotifyChannel.java │ │ │ │ │ │ │ ├── DeviceNotifyMessage.java │ │ │ │ │ │ │ └── DeviceNotifyPayload.java │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ ├── DeviceRequestChannel.java │ │ │ │ │ │ │ ├── DeviceRequestMessage.java │ │ │ │ │ │ │ ├── DeviceRequestMetrics.java │ │ │ │ │ │ │ └── DeviceRequestPayload.java │ │ │ │ │ │ └── response │ │ │ │ │ │ │ ├── DeviceResponseChannel.java │ │ │ │ │ │ │ ├── DeviceResponseCode.java │ │ │ │ │ │ │ ├── DeviceResponseMessage.java │ │ │ │ │ │ │ ├── DeviceResponseMetrics.java │ │ │ │ │ │ │ └── DeviceResponsePayload.java │ │ │ │ │ │ ├── data │ │ │ │ │ │ ├── DeviceDataChannel.java │ │ │ │ │ │ ├── DeviceDataMessage.java │ │ │ │ │ │ └── DeviceDataPayload.java │ │ │ │ │ │ └── lifecycle │ │ │ │ │ │ ├── DeviceLifecycleChannel.java │ │ │ │ │ │ ├── DeviceLifecycleMessage.java │ │ │ │ │ │ └── DeviceLifecyclePayload.java │ │ │ │ └── resources │ │ │ │ │ └── device-call-error-messages.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── device │ │ │ │ └── call │ │ │ │ └── exception │ │ │ │ ├── DeviceCallExceptionTest.java │ │ │ │ └── model │ │ │ │ ├── TestCodesDeviceCallException.java │ │ │ │ └── TestDeviceMessage.java │ │ ├── kura │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── call │ │ │ │ │ ├── kura │ │ │ │ │ ├── DeviceCallKuraModule.java │ │ │ │ │ ├── Kura.java │ │ │ │ │ ├── KuraDeviceCallFactoryImpl.java │ │ │ │ │ ├── KuraDeviceCallImpl.java │ │ │ │ │ ├── KuraDeviceCallback.java │ │ │ │ │ ├── KuraDeviceResponseContainer.java │ │ │ │ │ ├── KuraMessageFactoryImpl.java │ │ │ │ │ ├── KuraMethod.java │ │ │ │ │ ├── exception │ │ │ │ │ │ ├── KuraDeviceCallErrorCodes.java │ │ │ │ │ │ └── KuraDeviceCallException.java │ │ │ │ │ └── model │ │ │ │ │ │ ├── asset │ │ │ │ │ │ ├── AssetMetrics.java │ │ │ │ │ │ ├── KuraAsset.java │ │ │ │ │ │ ├── KuraAssetChannel.java │ │ │ │ │ │ ├── KuraAssetChannelMode.java │ │ │ │ │ │ ├── KuraAssets.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── bundle │ │ │ │ │ │ ├── BundleMetrics.java │ │ │ │ │ │ ├── KuraBundle.java │ │ │ │ │ │ ├── KuraBundles.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── command │ │ │ │ │ │ └── CommandMetrics.java │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── ConfigurationMetrics.java │ │ │ │ │ │ ├── KuraDeviceComponentConfiguration.java │ │ │ │ │ │ ├── KuraDeviceConfiguration.java │ │ │ │ │ │ ├── KuraPassword.java │ │ │ │ │ │ ├── package-info.java │ │ │ │ │ │ └── xml │ │ │ │ │ │ │ ├── KuraPasswordPropertyAdapter.java │ │ │ │ │ │ │ ├── KuraXmlConfigPropertiesAdapted.java │ │ │ │ │ │ │ ├── KuraXmlConfigPropertiesAdapter.java │ │ │ │ │ │ │ ├── XmlConfigPropertyAdapted.java │ │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── deploy │ │ │ │ │ │ ├── KuraBundleInfo.java │ │ │ │ │ │ ├── KuraDeploymentPackage.java │ │ │ │ │ │ ├── KuraDeploymentPackages.java │ │ │ │ │ │ ├── PackageMetrics.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── inventory │ │ │ │ │ │ ├── InventoryMetrics.java │ │ │ │ │ │ ├── KuraInventoryItem.java │ │ │ │ │ │ ├── KuraInventoryItems.java │ │ │ │ │ │ ├── bundles │ │ │ │ │ │ │ ├── KuraInventoryBundle.java │ │ │ │ │ │ │ └── KuraInventoryBundles.java │ │ │ │ │ │ ├── containers │ │ │ │ │ │ │ ├── KuraInventoryContainer.java │ │ │ │ │ │ │ └── KuraInventoryContainers.java │ │ │ │ │ │ ├── packages │ │ │ │ │ │ │ ├── KuraInventoryPackage.java │ │ │ │ │ │ │ └── KuraInventoryPackages.java │ │ │ │ │ │ └── system │ │ │ │ │ │ │ ├── KuraInventorySystemPackage.java │ │ │ │ │ │ │ └── KuraInventorySystemPackages.java │ │ │ │ │ │ ├── keystore │ │ │ │ │ │ ├── AbstractKuraKeystoreItem.java │ │ │ │ │ │ ├── KeystoreMetrics.java │ │ │ │ │ │ ├── KuraKeystore.java │ │ │ │ │ │ ├── KuraKeystoreCSR.java │ │ │ │ │ │ ├── KuraKeystoreCSRInfo.java │ │ │ │ │ │ ├── KuraKeystoreCertificate.java │ │ │ │ │ │ ├── KuraKeystoreItem.java │ │ │ │ │ │ ├── KuraKeystoreItemQuery.java │ │ │ │ │ │ └── KuraKeystoreKeypair.java │ │ │ │ │ │ ├── snapshot │ │ │ │ │ │ ├── KuraSnapshotIds.java │ │ │ │ │ │ ├── SnapshotMetrics.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ └── type │ │ │ │ │ │ ├── KuraObjectTypeConverter.java │ │ │ │ │ │ └── KuraObjectValueConverter.java │ │ │ │ │ └── message │ │ │ │ │ └── kura │ │ │ │ │ ├── KuraChannel.java │ │ │ │ │ ├── KuraMessage.java │ │ │ │ │ ├── KuraPayload.java │ │ │ │ │ ├── KuraPosition.java │ │ │ │ │ ├── app │ │ │ │ │ ├── KuraAppChannel.java │ │ │ │ │ ├── KuraAppMessage.java │ │ │ │ │ ├── KuraAppPayload.java │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── KuraNotifyChannel.java │ │ │ │ │ │ ├── KuraNotifyMessage.java │ │ │ │ │ │ ├── KuraNotifyMetrics.java │ │ │ │ │ │ └── KuraNotifyPayload.java │ │ │ │ │ ├── request │ │ │ │ │ │ ├── KuraRequestChannel.java │ │ │ │ │ │ ├── KuraRequestMessage.java │ │ │ │ │ │ ├── KuraRequestMetrics.java │ │ │ │ │ │ └── KuraRequestPayload.java │ │ │ │ │ └── response │ │ │ │ │ │ ├── KuraResponseChannel.java │ │ │ │ │ │ ├── KuraResponseCode.java │ │ │ │ │ │ ├── KuraResponseMessage.java │ │ │ │ │ │ ├── KuraResponseMetrics.java │ │ │ │ │ │ └── KuraResponsePayload.java │ │ │ │ │ ├── data │ │ │ │ │ ├── KuraDataChannel.java │ │ │ │ │ ├── KuraDataMessage.java │ │ │ │ │ └── KuraDataPayload.java │ │ │ │ │ ├── event │ │ │ │ │ └── configuration │ │ │ │ │ │ ├── KuraConfigurationEventChannel.java │ │ │ │ │ │ ├── KuraConfigurationEventMessage.java │ │ │ │ │ │ └── KuraConfigurationEventPayload.java │ │ │ │ │ ├── lifecycle │ │ │ │ │ ├── AbstractKuraAppsBirthChannel.java │ │ │ │ │ ├── AbstractKuraAppsBirthMessage.java │ │ │ │ │ ├── AbstractKuraAppsBirthPayload.java │ │ │ │ │ ├── AbstractKuraLifecycleChannel.java │ │ │ │ │ ├── AbstractKuraLifecycleMessage.java │ │ │ │ │ ├── AbstractKuraLifecyclePayload.java │ │ │ │ │ ├── KuraAppsChannel.java │ │ │ │ │ ├── KuraAppsMessage.java │ │ │ │ │ ├── KuraAppsPayload.java │ │ │ │ │ ├── KuraBirthChannel.java │ │ │ │ │ ├── KuraBirthMessage.java │ │ │ │ │ ├── KuraBirthPayload.java │ │ │ │ │ ├── KuraDisconnectChannel.java │ │ │ │ │ ├── KuraDisconnectMessage.java │ │ │ │ │ ├── KuraDisconnectPayload.java │ │ │ │ │ ├── KuraMissingChannel.java │ │ │ │ │ ├── KuraMissingMessage.java │ │ │ │ │ └── KuraMissingPayload.java │ │ │ │ │ ├── proto │ │ │ │ │ └── KuraPayloadProto.java │ │ │ │ │ ├── setting │ │ │ │ │ ├── DeviceCallSettingKeys.java │ │ │ │ │ └── DeviceCallSettings.java │ │ │ │ │ └── utils │ │ │ │ │ └── GZIPUtils.java │ │ │ │ ├── protobuf │ │ │ │ └── kurapayload.proto │ │ │ │ └── resources │ │ │ │ └── device-call-settings.properties │ │ └── pom.xml │ ├── commons │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── commons │ │ │ │ │ ├── AbstractDeviceManagementServiceImpl.java │ │ │ │ │ ├── AbstractDeviceManagementTransactionalServiceImpl.java │ │ │ │ │ ├── DeviceCommonsModule.java │ │ │ │ │ ├── KapuaAppPropertiesImpl.java │ │ │ │ │ ├── call │ │ │ │ │ ├── DeviceCallBuilder.java │ │ │ │ │ └── DeviceCallExecutor.java │ │ │ │ │ ├── message │ │ │ │ │ ├── KapuaAppChannelImpl.java │ │ │ │ │ ├── KapuaRequestMessageFactoryImpl.java │ │ │ │ │ ├── event │ │ │ │ │ │ ├── KapuaEventChannelImpl.java │ │ │ │ │ │ ├── KapuaEventMessageImpl.java │ │ │ │ │ │ └── KapuaEventPayloadImpl.java │ │ │ │ │ ├── notification │ │ │ │ │ │ ├── KapuaNotifyChannelImpl.java │ │ │ │ │ │ ├── KapuaNotifyMessageImpl.java │ │ │ │ │ │ └── KapuaNotifyPayloadImpl.java │ │ │ │ │ ├── request │ │ │ │ │ │ ├── KapuaRequestChannelImpl.java │ │ │ │ │ │ ├── KapuaRequestMessageImpl.java │ │ │ │ │ │ └── KapuaRequestPayloadImpl.java │ │ │ │ │ └── response │ │ │ │ │ │ ├── KapuaResponseChannelImpl.java │ │ │ │ │ │ ├── KapuaResponseMessageImpl.java │ │ │ │ │ │ └── KapuaResponsePayloadImpl.java │ │ │ │ │ └── setting │ │ │ │ │ ├── DeviceManagementSetting.java │ │ │ │ │ └── DeviceManagementSettingKey.java │ │ │ └── resources │ │ │ │ ├── device-management-setting.properties │ │ │ │ └── liquibase │ │ │ │ ├── 0.2.0 │ │ │ │ ├── changelog-device-management-0.2.0.xml │ │ │ │ └── device_management-domain.xml │ │ │ │ ├── 1.0.0 │ │ │ │ ├── changelog-device-management-1.0.0.xml │ │ │ │ └── device_management-domain.xml │ │ │ │ └── changelog-device-management-master.xml │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── device │ │ │ └── management │ │ │ └── commons │ │ │ └── message │ │ │ └── notification │ │ │ ├── KapuaNotifyMessageTest.java │ │ │ └── NotifyTestSuite.java │ ├── management │ │ ├── all │ │ │ ├── api │ │ │ │ └── pom.xml │ │ │ ├── internal │ │ │ │ └── pom.xml │ │ │ ├── job │ │ │ │ └── pom.xml │ │ │ └── pom.xml │ │ ├── api │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ ├── DeviceManagementService.java │ │ │ │ │ ├── app │ │ │ │ │ └── settings │ │ │ │ │ │ ├── ByDeviceAppManagementSettings.java │ │ │ │ │ │ └── ByDeviceAppManagementSettingsService.java │ │ │ │ │ └── exception │ │ │ │ │ ├── DeviceManagementApplicationDisabledException.java │ │ │ │ │ ├── DeviceManagementErrorCodes.java │ │ │ │ │ ├── DeviceManagementException.java │ │ │ │ │ ├── DeviceManagementRequestBadMethodException.java │ │ │ │ │ ├── DeviceManagementRequestContentException.java │ │ │ │ │ ├── DeviceManagementRequestException.java │ │ │ │ │ ├── DeviceManagementResponseBadRequestException.java │ │ │ │ │ ├── DeviceManagementResponseCodeException.java │ │ │ │ │ ├── DeviceManagementResponseContentException.java │ │ │ │ │ ├── DeviceManagementResponseException.java │ │ │ │ │ ├── DeviceManagementResponseInternalErrorException.java │ │ │ │ │ ├── DeviceManagementResponseNotFoundException.java │ │ │ │ │ ├── DeviceManagementResponseUnknownCodeException.java │ │ │ │ │ ├── DeviceManagementSendException.java │ │ │ │ │ ├── DeviceManagementTimeoutException.java │ │ │ │ │ ├── DeviceNeverConnectedException.java │ │ │ │ │ └── DeviceNotConnectedException.java │ │ │ │ └── resources │ │ │ │ └── device-management-error-messages.properties │ │ ├── asset-store │ │ │ ├── api │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── asset │ │ │ │ │ └── store │ │ │ │ │ ├── DeviceAssetStoreFactory.java │ │ │ │ │ ├── DeviceAssetStoreService.java │ │ │ │ │ ├── DeviceAssetStoreXmlFactory.java │ │ │ │ │ └── settings │ │ │ │ │ ├── DeviceAssetStoreEnablementPolicy.java │ │ │ │ │ └── DeviceAssetStoreSettings.java │ │ │ ├── dummy │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── asset │ │ │ │ │ └── store │ │ │ │ │ └── dummy │ │ │ │ │ ├── DeviceAssetStoreFactoryDummy.java │ │ │ │ │ ├── DeviceAssetStoreModule.java │ │ │ │ │ └── DeviceAssetStoreServiceDummy.java │ │ │ └── pom.xml │ │ ├── asset │ │ │ ├── api │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── asset │ │ │ │ │ ├── DeviceAsset.java │ │ │ │ │ ├── DeviceAssetChannel.java │ │ │ │ │ ├── DeviceAssetChannelMode.java │ │ │ │ │ ├── DeviceAssetFactory.java │ │ │ │ │ ├── DeviceAssetManagementService.java │ │ │ │ │ ├── DeviceAssetXmlRegistry.java │ │ │ │ │ ├── DeviceAssets.java │ │ │ │ │ └── xml │ │ │ │ │ ├── DeviceAssetChannelXmlAdapter.java │ │ │ │ │ └── XmlAdaptedDeviceAssetChannel.java │ │ │ ├── internal │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ ├── asset │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── DeviceAssetAppProperties.java │ │ │ │ │ │ ├── DeviceAssetChannelImpl.java │ │ │ │ │ │ ├── DeviceAssetFactoryImpl.java │ │ │ │ │ │ ├── DeviceAssetImpl.java │ │ │ │ │ │ ├── DeviceAssetManagementServiceImpl.java │ │ │ │ │ │ ├── DeviceAssetsImpl.java │ │ │ │ │ │ └── DeviceManagementAssetModule.java │ │ │ │ │ └── message │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── AssetRequestChannel.java │ │ │ │ │ │ ├── AssetRequestMessage.java │ │ │ │ │ │ ├── AssetRequestPayload.java │ │ │ │ │ │ ├── AssetResponseChannel.java │ │ │ │ │ │ ├── AssetResponseMessage.java │ │ │ │ │ │ └── AssetResponsePayload.java │ │ │ │ │ └── channel │ │ │ │ │ └── message │ │ │ │ │ └── internal │ │ │ │ │ ├── ChannelRequestChannel.java │ │ │ │ │ ├── ChannelRequestMessage.java │ │ │ │ │ ├── ChannelRequestPayload.java │ │ │ │ │ ├── ChannelResponseChannel.java │ │ │ │ │ ├── ChannelResponseMessage.java │ │ │ │ │ └── ChannelResponsePayload.java │ │ │ ├── job │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ └── asset │ │ │ │ │ │ └── job │ │ │ │ │ │ ├── DeviceAssetJobModule.java │ │ │ │ │ │ ├── DeviceAssetWriteTargetProcessor.java │ │ │ │ │ │ └── definition │ │ │ │ │ │ ├── DeviceAssetWriteJobStepDefinition.java │ │ │ │ │ │ └── DeviceAssetWritePropertyKeys.java │ │ │ │ │ └── resources │ │ │ │ │ └── liquibase │ │ │ │ │ ├── 0.3.0 │ │ │ │ │ ├── asset_write_job_step_definition.xml │ │ │ │ │ └── changelog-asset-job-0.3.0.xml │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ ├── asset_job_step_definition-scopeId.xml │ │ │ │ │ └── changelog-asset-job-1.0.0.xml │ │ │ │ │ ├── 1.0.4 │ │ │ │ │ ├── asset_job_step_definition_name_update.xml │ │ │ │ │ └── changelog-asset-job-1.0.4.xml │ │ │ │ │ ├── 1.1.0 │ │ │ │ │ ├── asset_job_step_definition_property_update.xml │ │ │ │ │ └── changelog-asset-job-1.1.0.post.xml │ │ │ │ │ ├── changelog-asset-job-master.post.xml │ │ │ │ │ └── changelog-asset-job-master.xml │ │ │ └── pom.xml │ │ ├── bundle │ │ │ ├── api │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── bundle │ │ │ │ │ ├── DeviceBundle.java │ │ │ │ │ ├── DeviceBundleFactory.java │ │ │ │ │ ├── DeviceBundleManagementService.java │ │ │ │ │ ├── DeviceBundleXmlRegistry.java │ │ │ │ │ └── DeviceBundles.java │ │ │ ├── internal │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── bundle │ │ │ │ │ ├── internal │ │ │ │ │ ├── DeviceBundleAppProperties.java │ │ │ │ │ ├── DeviceBundleFactoryImpl.java │ │ │ │ │ ├── DeviceBundleImpl.java │ │ │ │ │ ├── DeviceBundleManagementServiceImpl.java │ │ │ │ │ ├── DeviceBundlesImpl.java │ │ │ │ │ └── DeviceManagementBundleModule.java │ │ │ │ │ └── message │ │ │ │ │ └── internal │ │ │ │ │ ├── BundleRequestChannel.java │ │ │ │ │ ├── BundleRequestMessage.java │ │ │ │ │ ├── BundleRequestPayload.java │ │ │ │ │ ├── BundleResponseChannel.java │ │ │ │ │ ├── BundleResponseMessage.java │ │ │ │ │ └── BundleResponsePayload.java │ │ │ ├── job │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ └── bundle │ │ │ │ │ │ └── job │ │ │ │ │ │ ├── DeviceBundleJobModule.java │ │ │ │ │ │ ├── DeviceBundleStartTargetProcessor.java │ │ │ │ │ │ ├── DeviceBundleStopTargetProcessor.java │ │ │ │ │ │ └── definition │ │ │ │ │ │ ├── DeviceBundlePropertyKeys.java │ │ │ │ │ │ ├── DeviceBundleStartJobStepDefinition.java │ │ │ │ │ │ └── DeviceBundleStopJobStepDefinition.java │ │ │ │ │ └── resources │ │ │ │ │ └── liquibase │ │ │ │ │ ├── 0.3.0 │ │ │ │ │ ├── bundle_start_job_step_definition.xml │ │ │ │ │ ├── bundle_stop_job_step_definition.xml │ │ │ │ │ └── changelog-bundle-job-0.3.0.xml │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ ├── bundle_job_step_definition-scopeId.xml │ │ │ │ │ └── changelog-bundle-job-1.0.0.xml │ │ │ │ │ ├── 1.0.4 │ │ │ │ │ ├── bundle_job_step_definition_name_update.xml │ │ │ │ │ └── changelog-bundle-job-1.0.4.xml │ │ │ │ │ └── changelog-bundle-job-master.xml │ │ │ └── pom.xml │ │ ├── command │ │ │ ├── api │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── command │ │ │ │ │ ├── DeviceCommand.java │ │ │ │ │ ├── DeviceCommandFactory.java │ │ │ │ │ ├── DeviceCommandInput.java │ │ │ │ │ ├── DeviceCommandManagementService.java │ │ │ │ │ ├── DeviceCommandOutput.java │ │ │ │ │ └── DeviceCommandXmlRegistry.java │ │ │ ├── internal │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── command │ │ │ │ │ ├── internal │ │ │ │ │ ├── CommandAppProperties.java │ │ │ │ │ ├── DeviceCommandFactoryImpl.java │ │ │ │ │ ├── DeviceCommandInputImpl.java │ │ │ │ │ ├── DeviceCommandManagementServiceImpl.java │ │ │ │ │ ├── DeviceCommandOutputImpl.java │ │ │ │ │ └── DeviceManagementCommandModule.java │ │ │ │ │ └── message │ │ │ │ │ └── internal │ │ │ │ │ ├── CommandRequestChannel.java │ │ │ │ │ ├── CommandRequestMessage.java │ │ │ │ │ ├── CommandRequestPayload.java │ │ │ │ │ ├── CommandResponseChannel.java │ │ │ │ │ ├── CommandResponseMessage.java │ │ │ │ │ └── CommandResponsePayload.java │ │ │ ├── job │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ └── command │ │ │ │ │ │ └── job │ │ │ │ │ │ ├── DeviceCommandExecTargetProcessor.java │ │ │ │ │ │ ├── DeviceCommandJobModule.java │ │ │ │ │ │ └── definition │ │ │ │ │ │ ├── DeviceCommandExecJobStepDefinition.java │ │ │ │ │ │ └── DeviceCommandExecPropertyKeys.java │ │ │ │ │ └── resources │ │ │ │ │ └── liquibase │ │ │ │ │ ├── 0.3.0 │ │ │ │ │ ├── changelog-command-job-0.3.0.xml │ │ │ │ │ └── command_job_step_definition.xml │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ ├── changelog-command-job-1.0.0.xml │ │ │ │ │ └── command_job_step_definition-scopeId.xml │ │ │ │ │ ├── 1.0.4 │ │ │ │ │ ├── changelog-command-job-1.0.4.xml │ │ │ │ │ └── command_job_step_definition_name_update.xml │ │ │ │ │ ├── 1.1.0 │ │ │ │ │ ├── changelog-command-job-1.1.0.post.xml │ │ │ │ │ └── command_job_step_definition_property_update.xml │ │ │ │ │ ├── changelog-command-job-master.post.xml │ │ │ │ │ └── changelog-command-job-master.xml │ │ │ └── pom.xml │ │ ├── configuration-store │ │ │ ├── api │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── configuration │ │ │ │ │ └── store │ │ │ │ │ ├── DeviceConfigurationStoreFactory.java │ │ │ │ │ ├── DeviceConfigurationStoreService.java │ │ │ │ │ ├── DeviceConfigurationStoreXmlFactory.java │ │ │ │ │ └── settings │ │ │ │ │ ├── DeviceConfigurationStoreEnablementPolicy.java │ │ │ │ │ └── DeviceConfigurationStoreSettings.java │ │ │ ├── dummy │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── configuration │ │ │ │ │ └── store │ │ │ │ │ └── dummy │ │ │ │ │ ├── DeviceConfigurationStoreFactoryDummy.java │ │ │ │ │ ├── DeviceConfigurationStoreModule.java │ │ │ │ │ └── DeviceConfigurationStoreServiceDummy.java │ │ │ └── pom.xml │ │ ├── configuration │ │ │ ├── api │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ ├── configuration │ │ │ │ │ ├── DeviceComponentConfiguration.java │ │ │ │ │ ├── DeviceConfiguration.java │ │ │ │ │ ├── DeviceConfigurationFactory.java │ │ │ │ │ ├── DeviceConfigurationManagementService.java │ │ │ │ │ ├── DeviceConfigurationXmlRegistry.java │ │ │ │ │ ├── DeviceXmlConfigPropertiesAdapted.java │ │ │ │ │ ├── DeviceXmlConfigPropertiesAdapter.java │ │ │ │ │ └── DeviceXmlConfigPropertyAdapted.java │ │ │ │ │ └── snapshot │ │ │ │ │ ├── DeviceSnapshot.java │ │ │ │ │ ├── DeviceSnapshotFactory.java │ │ │ │ │ ├── DeviceSnapshotManagementService.java │ │ │ │ │ ├── DeviceSnapshotXmlRegistry.java │ │ │ │ │ └── DeviceSnapshots.java │ │ │ ├── internal │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ ├── configuration │ │ │ │ │ │ ├── internal │ │ │ │ │ │ │ ├── DeviceComponentConfigurationImpl.java │ │ │ │ │ │ │ ├── DeviceConfigurationAppProperties.java │ │ │ │ │ │ │ ├── DeviceConfigurationFactoryImpl.java │ │ │ │ │ │ │ ├── DeviceConfigurationImpl.java │ │ │ │ │ │ │ ├── DeviceConfigurationManagementServiceImpl.java │ │ │ │ │ │ │ ├── DeviceManagementConfigurationModule.java │ │ │ │ │ │ │ └── settings │ │ │ │ │ │ │ │ ├── DeviceConfigurationManagementSettings.java │ │ │ │ │ │ │ │ └── DeviceConfigurationManagementSettingsKeys.java │ │ │ │ │ │ └── message │ │ │ │ │ │ │ ├── event │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ │ ├── DeviceConfigurationEventChannelImpl.java │ │ │ │ │ │ │ │ ├── DeviceConfigurationEventMessageImpl.java │ │ │ │ │ │ │ │ └── DeviceConfigurationEventPayloadImpl.java │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── ConfigurationRequestChannel.java │ │ │ │ │ │ │ ├── ConfigurationRequestMessage.java │ │ │ │ │ │ │ ├── ConfigurationRequestPayload.java │ │ │ │ │ │ │ ├── ConfigurationResponseChannel.java │ │ │ │ │ │ │ ├── ConfigurationResponseMessage.java │ │ │ │ │ │ │ └── ConfigurationResponsePayload.java │ │ │ │ │ │ └── snapshot │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── DeviceManagementSnapshotModule.java │ │ │ │ │ │ ├── DeviceSnapshotAppProperties.java │ │ │ │ │ │ ├── DeviceSnapshotFactoryImpl.java │ │ │ │ │ │ ├── DeviceSnapshotImpl.java │ │ │ │ │ │ ├── DeviceSnapshotManagementServiceImpl.java │ │ │ │ │ │ └── DeviceSnapshotsImpl.java │ │ │ │ │ │ └── message │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── SnapshotRequestChannel.java │ │ │ │ │ │ ├── SnapshotRequestMessage.java │ │ │ │ │ │ ├── SnapshotRequestPayload.java │ │ │ │ │ │ ├── SnapshotResponseChannel.java │ │ │ │ │ │ ├── SnapshotResponseMessage.java │ │ │ │ │ │ └── SnapshotResponsePayload.java │ │ │ │ │ └── resources │ │ │ │ │ └── device-configuration-management-setting.properties │ │ │ ├── job │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ └── configuration │ │ │ │ │ │ └── job │ │ │ │ │ │ ├── DeviceConfigurationJobModule.java │ │ │ │ │ │ ├── DeviceConfigurationPutTargetProcessor.java │ │ │ │ │ │ └── definition │ │ │ │ │ │ ├── DeviceConfigurationPutJobStepDefinition.java │ │ │ │ │ │ └── DeviceConfigurationPutPropertyKeys.java │ │ │ │ │ └── resources │ │ │ │ │ └── liquibase │ │ │ │ │ ├── 0.3.0 │ │ │ │ │ ├── changelog-configuration-job-0.3.0.xml │ │ │ │ │ └── configuration_put_job_step_definition.xml │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ ├── changelog-configuration-job-1.0.0.xml │ │ │ │ │ └── configuration_job_step_definition-scopeId.xml │ │ │ │ │ ├── 1.0.4 │ │ │ │ │ ├── changelog-configuration-job-1.0.4.xml │ │ │ │ │ └── configuration_job_step_definition_name_update.xml │ │ │ │ │ ├── 1.1.0 │ │ │ │ │ ├── changelog-configuration-job-1.1.0.post.xml │ │ │ │ │ └── configuration_job_step_definition_property_update.xml │ │ │ │ │ ├── changelog-configuration-job-master.post.xml │ │ │ │ │ └── changelog-configuration-job-master.xml │ │ │ ├── message-api │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── configuration │ │ │ │ │ └── message │ │ │ │ │ └── event │ │ │ │ │ ├── DeviceConfigurationEventChannel.java │ │ │ │ │ ├── DeviceConfigurationEventMessage.java │ │ │ │ │ └── DeviceConfigurationEventPayload.java │ │ │ └── pom.xml │ │ ├── inventory │ │ │ ├── api │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── inventory │ │ │ │ │ ├── DeviceInventoryManagementFactory.java │ │ │ │ │ ├── DeviceInventoryManagementService.java │ │ │ │ │ └── model │ │ │ │ │ ├── bundle │ │ │ │ │ ├── DeviceInventoryBundle.java │ │ │ │ │ ├── DeviceInventoryBundleAction.java │ │ │ │ │ ├── DeviceInventoryBundles.java │ │ │ │ │ └── DeviceInventoryBundlesXmlRegistry.java │ │ │ │ │ ├── container │ │ │ │ │ ├── DeviceInventoryContainer.java │ │ │ │ │ ├── DeviceInventoryContainerAction.java │ │ │ │ │ ├── DeviceInventoryContainerState.java │ │ │ │ │ ├── DeviceInventoryContainers.java │ │ │ │ │ └── DeviceInventoryContainersXmlRegistry.java │ │ │ │ │ ├── inventory │ │ │ │ │ ├── DeviceInventory.java │ │ │ │ │ ├── DeviceInventoryItem.java │ │ │ │ │ └── DeviceInventoryXmlRegistry.java │ │ │ │ │ ├── packages │ │ │ │ │ ├── DeviceInventoryPackage.java │ │ │ │ │ ├── DeviceInventoryPackages.java │ │ │ │ │ └── DeviceInventoryPackagesXmlRegistry.java │ │ │ │ │ └── system │ │ │ │ │ ├── DeviceInventorySystemPackage.java │ │ │ │ │ ├── DeviceInventorySystemPackages.java │ │ │ │ │ └── DeviceInventorySystemPackagesXmlRegistry.java │ │ │ ├── internal │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── inventory │ │ │ │ │ ├── internal │ │ │ │ │ ├── DeviceInventoryAppProperties.java │ │ │ │ │ ├── DeviceInventoryManagementFactoryImpl.java │ │ │ │ │ ├── DeviceInventoryManagementServiceImpl.java │ │ │ │ │ ├── DeviceManagementInventoryModule.java │ │ │ │ │ └── message │ │ │ │ │ │ ├── InventoryBundleExecRequestMessage.java │ │ │ │ │ │ ├── InventoryBundlesResponseMessage.java │ │ │ │ │ │ ├── InventoryContainerExecRequestMessage.java │ │ │ │ │ │ ├── InventoryContainersResponseMessage.java │ │ │ │ │ │ ├── InventoryEmptyRequestMessage.java │ │ │ │ │ │ ├── InventoryListResponseMessage.java │ │ │ │ │ │ ├── InventoryNoContentResponseMessage.java │ │ │ │ │ │ ├── InventoryPackagesResponseMessage.java │ │ │ │ │ │ ├── InventoryRequestChannel.java │ │ │ │ │ │ ├── InventoryRequestMessage.java │ │ │ │ │ │ ├── InventoryRequestPayload.java │ │ │ │ │ │ ├── InventoryResponseChannel.java │ │ │ │ │ │ ├── InventoryResponseMessage.java │ │ │ │ │ │ ├── InventoryResponsePayload.java │ │ │ │ │ │ └── InventorySystemPackagesResponseMessage.java │ │ │ │ │ └── model │ │ │ │ │ ├── bundle │ │ │ │ │ └── internal │ │ │ │ │ │ ├── DeviceInventoryBundleImpl.java │ │ │ │ │ │ └── DeviceInventoryBundlesImpl.java │ │ │ │ │ ├── container │ │ │ │ │ └── internal │ │ │ │ │ │ ├── DeviceInventoryContainerImpl.java │ │ │ │ │ │ └── DeviceInventoryContainersImpl.java │ │ │ │ │ ├── inventory │ │ │ │ │ └── internal │ │ │ │ │ │ ├── DeviceInventoryImpl.java │ │ │ │ │ │ └── DeviceInventoryItemImpl.java │ │ │ │ │ ├── packages │ │ │ │ │ └── internal │ │ │ │ │ │ ├── DeviceInventoryPackageImpl.java │ │ │ │ │ │ └── DeviceInventoryPackagesImpl.java │ │ │ │ │ └── system │ │ │ │ │ └── internal │ │ │ │ │ ├── DeviceInventorySystemPackageImpl.java │ │ │ │ │ └── DeviceInventorySystemPackagesImpl.java │ │ │ ├── job │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── inventory │ │ │ │ │ └── job │ │ │ │ │ ├── DeviceContainerJobModule.java │ │ │ │ │ ├── DeviceContainerStartTargetProcessor.java │ │ │ │ │ ├── DeviceContainerStopTargetProcessor.java │ │ │ │ │ └── definition │ │ │ │ │ ├── DeviceContainerPropertyKeys.java │ │ │ │ │ ├── DeviceContainerStartJobStepDefinition.java │ │ │ │ │ └── DeviceContainerStopJobStepDefinition.java │ │ │ └── pom.xml │ │ ├── job │ │ │ ├── api │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ └── job │ │ │ │ │ │ ├── JobDeviceManagementOperation.java │ │ │ │ │ │ ├── JobDeviceManagementOperationAttributes.java │ │ │ │ │ │ ├── JobDeviceManagementOperationCreator.java │ │ │ │ │ │ ├── JobDeviceManagementOperationFactory.java │ │ │ │ │ │ ├── JobDeviceManagementOperationListResult.java │ │ │ │ │ │ ├── JobDeviceManagementOperationQuery.java │ │ │ │ │ │ ├── JobDeviceManagementOperationRepository.java │ │ │ │ │ │ ├── JobDeviceManagementOperationService.java │ │ │ │ │ │ ├── JobDeviceManagementOperationXmlRegistry.java │ │ │ │ │ │ ├── manager │ │ │ │ │ │ └── JobDeviceManagementOperationManagerService.java │ │ │ │ │ │ └── scheduler │ │ │ │ │ │ └── manager │ │ │ │ │ │ ├── JobDeviceManagementTriggerManagerService.java │ │ │ │ │ │ └── exception │ │ │ │ │ │ ├── JobDeviceManagementTriggerErrorCodes.java │ │ │ │ │ │ ├── JobDeviceManagementTriggerException.java │ │ │ │ │ │ └── ProcessOnConnectException.java │ │ │ │ │ └── resources │ │ │ │ │ └── job-device-management-trigger-service-error-messages.properties │ │ │ ├── internal │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ └── job │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── DeviceManagementJobModule.java │ │ │ │ │ │ ├── JobDeviceManagementOperationCreatorImpl.java │ │ │ │ │ │ ├── JobDeviceManagementOperationFactoryImpl.java │ │ │ │ │ │ ├── JobDeviceManagementOperationImpl.java │ │ │ │ │ │ ├── JobDeviceManagementOperationImplJpaRepository.java │ │ │ │ │ │ ├── JobDeviceManagementOperationListResultImpl.java │ │ │ │ │ │ ├── JobDeviceManagementOperationQueryImpl.java │ │ │ │ │ │ └── JobDeviceManagementOperationServiceImpl.java │ │ │ │ │ │ ├── manager │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── DeviceManagementJobManagerModule.java │ │ │ │ │ │ │ └── JobDeviceManagementOperationManagerServiceImpl.java │ │ │ │ │ │ └── scheduler │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── DeviceManagementJobSchedulerModule.java │ │ │ │ │ │ └── JobDeviceManagementTriggerManagerServiceImpl.java │ │ │ │ │ └── resources │ │ │ │ │ ├── META-INF │ │ │ │ │ └── persistence.xml │ │ │ │ │ └── liquibase │ │ │ │ │ ├── 1.1.0 │ │ │ │ │ ├── changelog-job-device-management-operation-1.1.0.xml │ │ │ │ │ └── job_device_management_operation.xml │ │ │ │ │ ├── 1.2.0 │ │ │ │ │ ├── changelog-job-device-management-operation-1.2.0.xml │ │ │ │ │ └── job_device_management_operation-timestamp.xml │ │ │ │ │ └── changelog-job-device-management-operation-master.xml │ │ │ └── pom.xml │ │ ├── keystore │ │ │ ├── api │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── keystore │ │ │ │ │ ├── DeviceKeystoreManagementFactory.java │ │ │ │ │ ├── DeviceKeystoreManagementService.java │ │ │ │ │ └── model │ │ │ │ │ ├── DeviceKeystore.java │ │ │ │ │ ├── DeviceKeystoreCSR.java │ │ │ │ │ ├── DeviceKeystoreCSRInfo.java │ │ │ │ │ ├── DeviceKeystoreCertificate.java │ │ │ │ │ ├── DeviceKeystoreItem.java │ │ │ │ │ ├── DeviceKeystoreItemQuery.java │ │ │ │ │ ├── DeviceKeystoreItems.java │ │ │ │ │ ├── DeviceKeystoreKeypair.java │ │ │ │ │ ├── DeviceKeystoreSubjectAN.java │ │ │ │ │ ├── DeviceKeystoreXmlRegistry.java │ │ │ │ │ └── DeviceKeystores.java │ │ │ ├── internal │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── keystore │ │ │ │ │ ├── internal │ │ │ │ │ ├── DeviceKeystoreAppProperties.java │ │ │ │ │ ├── DeviceKeystoreManagementFactoryImpl.java │ │ │ │ │ ├── DeviceKeystoreManagementServiceImpl.java │ │ │ │ │ ├── DeviceManagementKeystoreModule.java │ │ │ │ │ └── message │ │ │ │ │ │ ├── request │ │ │ │ │ │ ├── KeystoreCertificateRequestMessage.java │ │ │ │ │ │ ├── KeystoreCsrRequestMessage.java │ │ │ │ │ │ ├── KeystoreKeypairRequestMessage.java │ │ │ │ │ │ ├── KeystoreQueryRequestMessage.java │ │ │ │ │ │ ├── KeystoreRequestChannel.java │ │ │ │ │ │ ├── KeystoreRequestMessage.java │ │ │ │ │ │ └── KeystoreRequestPayload.java │ │ │ │ │ │ └── response │ │ │ │ │ │ ├── KeystoreCsrResponseMessage.java │ │ │ │ │ │ ├── KeystoreItemResponseMessage.java │ │ │ │ │ │ ├── KeystoreItemsResponseMessage.java │ │ │ │ │ │ ├── KeystoreNoContentResponseMessage.java │ │ │ │ │ │ ├── KeystoreResponseChannel.java │ │ │ │ │ │ ├── KeystoreResponseMessage.java │ │ │ │ │ │ ├── KeystoreResponsePayload.java │ │ │ │ │ │ └── KeystoresResponseMessage.java │ │ │ │ │ └── model │ │ │ │ │ └── internal │ │ │ │ │ ├── DeviceKeystoreCSRImpl.java │ │ │ │ │ ├── DeviceKeystoreCSRInfoImpl.java │ │ │ │ │ ├── DeviceKeystoreCertificateImpl.java │ │ │ │ │ ├── DeviceKeystoreImpl.java │ │ │ │ │ ├── DeviceKeystoreItemImpl.java │ │ │ │ │ ├── DeviceKeystoreItemQueryImpl.java │ │ │ │ │ ├── DeviceKeystoreItemsImpl.java │ │ │ │ │ ├── DeviceKeystoreKeypairImpl.java │ │ │ │ │ ├── DeviceKeystoreSubjectANImpl.java │ │ │ │ │ └── DeviceKeystoresImpl.java │ │ │ ├── job │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ └── keystore │ │ │ │ │ │ └── job │ │ │ │ │ │ ├── DeviceKeystoreCertificateCreateTargetProcessor.java │ │ │ │ │ │ ├── DeviceKeystoreItemDeleteTargetProcessor.java │ │ │ │ │ │ ├── DeviceKeystoreJobModule.java │ │ │ │ │ │ ├── DeviceKeystoreKeypairCreateTargetProcessor.java │ │ │ │ │ │ └── definition │ │ │ │ │ │ ├── DeviceKeystoreCertificateCreateJobStepDefinition.java │ │ │ │ │ │ ├── DeviceKeystoreCertificateCreatePropertyKeys.java │ │ │ │ │ │ ├── DeviceKeystoreItemDeleteJobStepDefinition.java │ │ │ │ │ │ ├── DeviceKeystoreItemDeletePropertyKeys.java │ │ │ │ │ │ ├── DeviceKeystoreKeypairCreateJobStepDefinition.java │ │ │ │ │ │ └── DeviceKeystoreKeypairCreatePropertyKeys.java │ │ │ │ │ └── resources │ │ │ │ │ └── liquibase │ │ │ │ │ ├── 1.5.0 │ │ │ │ │ ├── changelog-keystore-job-1.5.0.xml │ │ │ │ │ └── keystore_job_step_definition.xml │ │ │ │ │ └── changelog-keystore-job-master.xml │ │ │ └── pom.xml │ │ ├── packages │ │ │ ├── api │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── packages │ │ │ │ │ ├── DevicePackageFactory.java │ │ │ │ │ ├── DevicePackageManagementService.java │ │ │ │ │ └── model │ │ │ │ │ ├── DevicePackage.java │ │ │ │ │ ├── DevicePackageBundleInfo.java │ │ │ │ │ ├── DevicePackageBundleInfos.java │ │ │ │ │ ├── DevicePackageOptions.java │ │ │ │ │ ├── DevicePackageXmlRegistry.java │ │ │ │ │ ├── DevicePackages.java │ │ │ │ │ ├── FileType.java │ │ │ │ │ ├── download │ │ │ │ │ ├── AdvancedPackageDownloadOptions.java │ │ │ │ │ ├── DevicePackageDownloadOperation.java │ │ │ │ │ ├── DevicePackageDownloadOptions.java │ │ │ │ │ ├── DevicePackageDownloadRequest.java │ │ │ │ │ └── DevicePackageDownloadStatus.java │ │ │ │ │ ├── install │ │ │ │ │ ├── DevicePackageInstallOperation.java │ │ │ │ │ ├── DevicePackageInstallOptions.java │ │ │ │ │ ├── DevicePackageInstallRequest.java │ │ │ │ │ └── DevicePackageInstallStatus.java │ │ │ │ │ └── uninstall │ │ │ │ │ ├── DevicePackageUninstallOperation.java │ │ │ │ │ ├── DevicePackageUninstallOptions.java │ │ │ │ │ ├── DevicePackageUninstallRequest.java │ │ │ │ │ └── DevicePackageUninstallStatus.java │ │ │ ├── internal │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ └── packages │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── DeviceManagementPackagesModule.java │ │ │ │ │ │ ├── DevicePackageFactoryImpl.java │ │ │ │ │ │ ├── DevicePackageManagementServiceImpl.java │ │ │ │ │ │ └── setting │ │ │ │ │ │ │ ├── PackageManagementServiceSetting.java │ │ │ │ │ │ │ └── PackageManagementServiceSettingKeys.java │ │ │ │ │ │ ├── message │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── PackageAppProperties.java │ │ │ │ │ │ │ ├── PackageRequestChannel.java │ │ │ │ │ │ │ ├── PackageRequestMessage.java │ │ │ │ │ │ │ ├── PackageRequestPayload.java │ │ │ │ │ │ │ ├── PackageResource.java │ │ │ │ │ │ │ ├── PackageResponseChannel.java │ │ │ │ │ │ │ ├── PackageResponseMessage.java │ │ │ │ │ │ │ └── PackageResponsePayload.java │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── download │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── AdvancedPackageDownloadOptionsImpl.java │ │ │ │ │ │ │ ├── DevicePackageDownloadOperationImpl.java │ │ │ │ │ │ │ ├── DevicePackageDownloadOptionsImpl.java │ │ │ │ │ │ │ └── DevicePackageDownloadRequestImpl.java │ │ │ │ │ │ ├── install │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── DevicePackageInstallOperationImpl.java │ │ │ │ │ │ │ ├── DevicePackageInstallOptionsImpl.java │ │ │ │ │ │ │ └── DevicePackageInstallRequestImpl.java │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── DevicePackageBundleInfoImpl.java │ │ │ │ │ │ ├── DevicePackageBundleInfosImpl.java │ │ │ │ │ │ ├── DevicePackageImpl.java │ │ │ │ │ │ ├── DevicePackageOptionsImpl.java │ │ │ │ │ │ └── DevicePackagesImpl.java │ │ │ │ │ │ └── uninstall │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── DevicePackageUninstallOperationImpl.java │ │ │ │ │ │ ├── DevicePackageUninstallOptionsImpl.java │ │ │ │ │ │ └── DevicePackageUninstallRequestImpl.java │ │ │ │ │ └── resources │ │ │ │ │ └── service-device-management-package-setting.properties │ │ │ ├── job │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ └── packages │ │ │ │ │ │ └── job │ │ │ │ │ │ ├── AbstractDevicePackageTargetProcessor.java │ │ │ │ │ │ ├── DevicePackageDownloadTargetProcessor.java │ │ │ │ │ │ ├── DevicePackageJobModule.java │ │ │ │ │ │ ├── DevicePackageUninstallTargetProcessor.java │ │ │ │ │ │ └── definition │ │ │ │ │ │ ├── DevicePackageDownloadJobStepDefinition.java │ │ │ │ │ │ ├── DevicePackageDownloadPropertyKeys.java │ │ │ │ │ │ ├── DevicePackageUninstallJobStepDefinition.java │ │ │ │ │ │ └── DevicePackageUninstallPropertyKeys.java │ │ │ │ │ └── resources │ │ │ │ │ └── liquibase │ │ │ │ │ ├── 0.3.0 │ │ │ │ │ ├── changelog-packages-job-0.3.0.xml │ │ │ │ │ ├── package_download_job_step_definition.xml │ │ │ │ │ └── package_uninstall_job_step_definition.xml │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ ├── changelog-packages-job-1.0.0.xml │ │ │ │ │ └── packages_job_step_definition-scopeId.xml │ │ │ │ │ ├── 1.0.4 │ │ │ │ │ ├── changelog-packages-job-1.0.4.xml │ │ │ │ │ └── packages_job_step_definition_name_update.xml │ │ │ │ │ ├── 1.1.0 │ │ │ │ │ ├── changelog-packages-job-1.1.0.post.xml │ │ │ │ │ └── packages_job_step_definition_property_update.xml │ │ │ │ │ ├── 2.0.0 │ │ │ │ │ ├── changelog-packages-job-2.0.0.post.xml │ │ │ │ │ └── packages_job_step_definition_property_update_example_field.xml │ │ │ │ │ ├── changelog-packages-job-master.post.xml │ │ │ │ │ └── changelog-packages-job-master.xml │ │ │ └── pom.xml │ │ ├── pom.xml │ │ ├── registry │ │ │ ├── api │ │ │ │ ├── about.html │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ └── java │ │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── registry │ │ │ │ │ ├── manager │ │ │ │ │ ├── DeviceManagementRegistryManagerService.java │ │ │ │ │ └── exception │ │ │ │ │ │ ├── ManagementOperationManagerErrorCodes.java │ │ │ │ │ │ ├── ManagementOperationNotificationInvalidStatusException.java │ │ │ │ │ │ └── ManagementOperationNotificationProcessingException.java │ │ │ │ │ └── operation │ │ │ │ │ ├── DeviceManagementOperation.java │ │ │ │ │ ├── DeviceManagementOperationAttributes.java │ │ │ │ │ ├── DeviceManagementOperationCreator.java │ │ │ │ │ ├── DeviceManagementOperationFactory.java │ │ │ │ │ ├── DeviceManagementOperationListResult.java │ │ │ │ │ ├── DeviceManagementOperationProperty.java │ │ │ │ │ ├── DeviceManagementOperationQuery.java │ │ │ │ │ ├── DeviceManagementOperationRegistryService.java │ │ │ │ │ ├── DeviceManagementOperationRepository.java │ │ │ │ │ ├── DeviceManagementOperationStatus.java │ │ │ │ │ ├── DeviceManagementOperationXmlRegistry.java │ │ │ │ │ └── notification │ │ │ │ │ ├── ManagementOperationNotification.java │ │ │ │ │ ├── ManagementOperationNotificationAttributes.java │ │ │ │ │ ├── ManagementOperationNotificationCreator.java │ │ │ │ │ ├── ManagementOperationNotificationFactory.java │ │ │ │ │ ├── ManagementOperationNotificationListResult.java │ │ │ │ │ ├── ManagementOperationNotificationQuery.java │ │ │ │ │ ├── ManagementOperationNotificationRepository.java │ │ │ │ │ ├── ManagementOperationNotificationService.java │ │ │ │ │ └── ManagementOperationNotificationXmlRegistry.java │ │ │ ├── internal │ │ │ │ ├── pom.xml │ │ │ │ └── src │ │ │ │ │ └── main │ │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── device │ │ │ │ │ │ └── management │ │ │ │ │ │ └── registry │ │ │ │ │ │ ├── manager │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ ├── DeviceManagementRegistryManagerServiceImpl.java │ │ │ │ │ │ │ └── DeviceManagementRegistryModule.java │ │ │ │ │ │ └── operation │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── DeviceManagementOperationCreatorImpl.java │ │ │ │ │ │ ├── DeviceManagementOperationFactoryImpl.java │ │ │ │ │ │ ├── DeviceManagementOperationImpl.java │ │ │ │ │ │ ├── DeviceManagementOperationListResultImpl.java │ │ │ │ │ │ ├── DeviceManagementOperationPropertyImpl.java │ │ │ │ │ │ ├── DeviceManagementOperationQueryImpl.java │ │ │ │ │ │ ├── DeviceManagementOperationRegistryServiceImpl.java │ │ │ │ │ │ ├── DeviceManagementOperationRepositoryImplJpaRepository.java │ │ │ │ │ │ └── DeviceManagementRegistryOperationModule.java │ │ │ │ │ │ └── notification │ │ │ │ │ │ └── internal │ │ │ │ │ │ ├── DeviceManagementRegistryNotificationModule.java │ │ │ │ │ │ ├── ManagementOperationNotificationCreatorImpl.java │ │ │ │ │ │ ├── ManagementOperationNotificationFactoryImpl.java │ │ │ │ │ │ ├── ManagementOperationNotificationImpl.java │ │ │ │ │ │ ├── ManagementOperationNotificationImplJpaRepository.java │ │ │ │ │ │ ├── ManagementOperationNotificationListResultImpl.java │ │ │ │ │ │ ├── ManagementOperationNotificationQueryImpl.java │ │ │ │ │ │ └── ManagementOperationNotificationServiceImpl.java │ │ │ │ │ └── resources │ │ │ │ │ ├── META-INF │ │ │ │ │ └── persistence.xml │ │ │ │ │ └── liquibase │ │ │ │ │ ├── 1.0.0 │ │ │ │ │ ├── changelog-device_management_registry-1.0.0.xml │ │ │ │ │ ├── device_management_operation.xml │ │ │ │ │ ├── device_management_operation_input_properties.xml │ │ │ │ │ ├── device_management_operation_notification.xml │ │ │ │ │ └── device_management_registry-domain.xml │ │ │ │ │ ├── 1.2.0 │ │ │ │ │ ├── changelog-device_management_registry-1.2.0.xml │ │ │ │ │ ├── device_management_operation-add_log.xml │ │ │ │ │ ├── device_management_operation-timestamp.xml │ │ │ │ │ ├── device_management_operation_notification-add_message.xml │ │ │ │ │ └── device_management_operation_notification-timestamp.xml │ │ │ │ │ └── changelog-device_management_registry-master.xml │ │ │ └── pom.xml │ │ └── request │ │ │ ├── api │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── device │ │ │ │ └── management │ │ │ │ └── request │ │ │ │ ├── DeviceRequestManagementService.java │ │ │ │ ├── GenericRequestFactory.java │ │ │ │ ├── GenericRequestXmlRegistry.java │ │ │ │ └── message │ │ │ │ ├── request │ │ │ │ ├── GenericRequestChannel.java │ │ │ │ ├── GenericRequestMessage.java │ │ │ │ └── GenericRequestPayload.java │ │ │ │ └── response │ │ │ │ ├── GenericResponseChannel.java │ │ │ │ ├── GenericResponseMessage.java │ │ │ │ └── GenericResponsePayload.java │ │ │ ├── internal │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── device │ │ │ │ └── management │ │ │ │ └── request │ │ │ │ └── internal │ │ │ │ ├── DeviceManagementRequestModule.java │ │ │ │ ├── DeviceRequestManagementServiceImpl.java │ │ │ │ ├── GenericAppProperties.java │ │ │ │ ├── GenericRequestFactoryImpl.java │ │ │ │ └── message │ │ │ │ ├── request │ │ │ │ ├── GenericRequestChannelImpl.java │ │ │ │ ├── GenericRequestMessageImpl.java │ │ │ │ └── GenericRequestPayloadImpl.java │ │ │ │ └── response │ │ │ │ ├── GenericResponseChannelImpl.java │ │ │ │ ├── GenericResponseMessageImpl.java │ │ │ │ └── GenericResponsePayloadImpl.java │ │ │ └── pom.xml │ ├── pom.xml │ └── registry │ │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── device │ │ │ ├── connection │ │ │ └── listener │ │ │ │ ├── DeviceConnectionEventListenerService.java │ │ │ │ └── DeviceConnectionEventReceiver.java │ │ │ └── registry │ │ │ ├── ConnectionUserCouplingMode.java │ │ │ ├── Device.java │ │ │ ├── DeviceAttributes.java │ │ │ ├── DeviceCreator.java │ │ │ ├── DeviceEventType.java │ │ │ ├── DeviceExtendedProperty.java │ │ │ ├── DeviceFactory.java │ │ │ ├── DeviceListResult.java │ │ │ ├── DeviceMatchPredicate.java │ │ │ ├── DeviceQuery.java │ │ │ ├── DeviceRegistryService.java │ │ │ ├── DeviceRepository.java │ │ │ ├── DeviceStatus.java │ │ │ ├── DeviceXmlRegistry.java │ │ │ ├── KapuaDeviceRegistrySettingKeys.java │ │ │ ├── connection │ │ │ ├── DeviceConnection.java │ │ │ ├── DeviceConnectionAttributes.java │ │ │ ├── DeviceConnectionCreator.java │ │ │ ├── DeviceConnectionFactory.java │ │ │ ├── DeviceConnectionListResult.java │ │ │ ├── DeviceConnectionQuery.java │ │ │ ├── DeviceConnectionRepository.java │ │ │ ├── DeviceConnectionService.java │ │ │ ├── DeviceConnectionStatus.java │ │ │ ├── DeviceConnectionXmlRegistry.java │ │ │ └── option │ │ │ │ ├── ConnectionServiceErrorCodes.java │ │ │ │ ├── ConnectionServiceException.java │ │ │ │ ├── DeviceConnectionOption.java │ │ │ │ ├── DeviceConnectionOptionAttributes.java │ │ │ │ ├── DeviceConnectionOptionCreator.java │ │ │ │ ├── DeviceConnectionOptionFactory.java │ │ │ │ ├── DeviceConnectionOptionListResult.java │ │ │ │ ├── DeviceConnectionOptionQuery.java │ │ │ │ ├── DeviceConnectionOptionRepository.java │ │ │ │ ├── DeviceConnectionOptionService.java │ │ │ │ ├── DeviceConnectionOptionXmlRegistry.java │ │ │ │ └── UserAlreadyReservedException.java │ │ │ ├── event │ │ │ ├── DeviceEvent.java │ │ │ ├── DeviceEventAttributes.java │ │ │ ├── DeviceEventCreator.java │ │ │ ├── DeviceEventFactory.java │ │ │ ├── DeviceEventListResult.java │ │ │ ├── DeviceEventQuery.java │ │ │ ├── DeviceEventRepository.java │ │ │ ├── DeviceEventService.java │ │ │ └── DeviceEventXmlRegistry.java │ │ │ └── lifecycle │ │ │ └── DeviceLifeCycleService.java │ │ ├── internal │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── device │ │ │ │ ├── connection │ │ │ │ └── listener │ │ │ │ │ └── internal │ │ │ │ │ ├── DeviceConnectionEventListenerModule.java │ │ │ │ │ ├── DeviceConnectionEventListenerServiceImpl.java │ │ │ │ │ └── DeviceConnectionEventListenerServiceModule.java │ │ │ │ └── registry │ │ │ │ ├── DeviceConnectionServiceConfigurationManagerModule.java │ │ │ │ ├── DeviceRegistryModule.java │ │ │ │ ├── DeviceRegistryServiceConfigurationManagerModule.java │ │ │ │ ├── DeviceServiceModule.java │ │ │ │ ├── KapuaDeviceRegistrySettings.java │ │ │ │ ├── common │ │ │ │ ├── DeviceValidation.java │ │ │ │ ├── DeviceValidationImpl.java │ │ │ │ └── DeviceValidationRegex.java │ │ │ │ ├── connection │ │ │ │ ├── internal │ │ │ │ │ ├── CachingDeviceConnectionRepository.java │ │ │ │ │ ├── DeviceConnectionCreatorImpl.java │ │ │ │ │ ├── DeviceConnectionFactoryImpl.java │ │ │ │ │ ├── DeviceConnectionImpl.java │ │ │ │ │ ├── DeviceConnectionImplJpaRepository.java │ │ │ │ │ ├── DeviceConnectionListResultImpl.java │ │ │ │ │ ├── DeviceConnectionQueryImpl.java │ │ │ │ │ ├── DeviceConnectionServiceConfigurationManager.java │ │ │ │ │ └── DeviceConnectionServiceImpl.java │ │ │ │ └── option │ │ │ │ │ └── internal │ │ │ │ │ ├── DeviceConnectionOptionCreatorImpl.java │ │ │ │ │ ├── DeviceConnectionOptionFactoryImpl.java │ │ │ │ │ ├── DeviceConnectionOptionImpl.java │ │ │ │ │ ├── DeviceConnectionOptionImplJpaRepository.java │ │ │ │ │ ├── DeviceConnectionOptionListResultImpl.java │ │ │ │ │ ├── DeviceConnectionOptionQueryImpl.java │ │ │ │ │ └── DeviceConnectionOptionServiceImpl.java │ │ │ │ ├── event │ │ │ │ └── internal │ │ │ │ │ ├── DeviceEventCreatorImpl.java │ │ │ │ │ ├── DeviceEventFactoryImpl.java │ │ │ │ │ ├── DeviceEventImpl.java │ │ │ │ │ ├── DeviceEventImplJpaRepository.java │ │ │ │ │ ├── DeviceEventListResultImpl.java │ │ │ │ │ ├── DeviceEventQueryImpl.java │ │ │ │ │ └── DeviceEventServiceImpl.java │ │ │ │ ├── internal │ │ │ │ ├── CachingDeviceRepository.java │ │ │ │ ├── DeviceCreatorImpl.java │ │ │ │ ├── DeviceExtendedPropertyImpl.java │ │ │ │ ├── DeviceFactoryImpl.java │ │ │ │ ├── DeviceImpl.java │ │ │ │ ├── DeviceImplJpaRepository.java │ │ │ │ ├── DeviceListResultImpl.java │ │ │ │ ├── DeviceMatchPredicateImpl.java │ │ │ │ ├── DeviceQueryImpl.java │ │ │ │ ├── DeviceRegistryCache.java │ │ │ │ ├── DeviceRegistryCacheFactory.java │ │ │ │ └── DeviceRegistryServiceImpl.java │ │ │ │ └── lifecycle │ │ │ │ └── internal │ │ │ │ └── DeviceLifeCycleServiceImpl.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── metatypes │ │ │ │ ├── org.eclipse.kapua.service.device.registry.DeviceRegistryService.xml │ │ │ │ └── org.eclipse.kapua.service.device.registry.connection.DeviceConnectionService.xml │ │ │ └── persistence.xml │ │ │ ├── kapua-device-registry-setting.properties │ │ │ └── liquibase │ │ │ ├── 0.2.0 │ │ │ ├── changelog-device-0.2.0.xml │ │ │ ├── device-configuration.xml │ │ │ ├── device-domain.xml │ │ │ ├── device.xml │ │ │ ├── device_connection-domain.xml │ │ │ ├── device_connection.xml │ │ │ ├── device_event-domain.xml │ │ │ ├── device_event.xml │ │ │ └── device_lifecycle-domain.xml │ │ │ ├── 0.3.0 │ │ │ ├── changelog-device-0.3.0.xml │ │ │ ├── device-id_check_positive.xml │ │ │ ├── device-network_interface.xml │ │ │ ├── device-remove_credential_options.xml │ │ │ ├── device-tag.xml │ │ │ ├── device_connection-add_connection_options.xml │ │ │ ├── device_connection-configuration.xml │ │ │ ├── device_connection-id_check_positive.xml │ │ │ └── device_event-id_check_positive.xml │ │ │ ├── 0.3.1 │ │ │ ├── changelog-device-0.3.1.xml │ │ │ └── device-domain_set_groupable.xml │ │ │ ├── 1.0.0 │ │ │ ├── changelog-device-1.0.0.xml │ │ │ ├── device-domain.xml │ │ │ ├── device-sys-housekeeper-run-seed.xml │ │ │ ├── device_connection-domain.xml │ │ │ ├── device_event-domain.xml │ │ │ └── device_lifecycle-domain.xml │ │ │ ├── 1.1.0 │ │ │ ├── changelog-device-1.1.0.xml │ │ │ ├── device-add-model-name.xml │ │ │ ├── device-remove-modem-constraint.xml │ │ │ └── device_event-modify_gps_column.xml │ │ │ ├── 1.2.0 │ │ │ ├── changelog-device-1.2.0.xml │ │ │ ├── device-timestamp.xml │ │ │ ├── device_connection-timestamp.xml │ │ │ └── device_event-timestamp.xml │ │ │ ├── 1.3.0 │ │ │ ├── changelog-device-1.3.0.xml │ │ │ ├── device-match-indexes.xml │ │ │ └── device_event-index_received_on.xml │ │ │ ├── 1.4.0 │ │ │ ├── changelog-device-1.4.0.xml │ │ │ └── device_connection-create_index_id.xml │ │ │ ├── 1.5.0 │ │ │ ├── changelog-device-1.5.0.xml │ │ │ └── device_properties.xml │ │ │ ├── 2.0.0 │ │ │ ├── changelog-device-2.0.0.xml │ │ │ ├── device-add-clob-ip-if-columns.xml │ │ │ ├── device-client_id_binary.xml │ │ │ ├── device_connection-add_auth_type_column.xml │ │ │ ├── device_connection-client_id_binary.xml │ │ │ └── device_tamper-status.xml │ │ │ ├── changelog-device-master.xml │ │ │ └── common-properties.xml │ │ ├── pom.xml │ │ ├── test-steps │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ ├── artemis │ │ │ │ ├── ArtemisEmbeddedTest.java │ │ │ │ ├── ArtemisTest.java │ │ │ │ └── MqttCallback.java │ │ │ │ └── service │ │ │ │ └── device │ │ │ │ └── registry │ │ │ │ └── steps │ │ │ │ ├── AclCreator.java │ │ │ │ ├── AclPermission.java │ │ │ │ ├── AclSteps.java │ │ │ │ ├── BrokerSteps.java │ │ │ │ ├── DeviceManagementInventorySteps.java │ │ │ │ ├── DeviceManagementKeystoreSteps.java │ │ │ │ ├── DeviceRegistrySteps.java │ │ │ │ ├── KuraDevice.java │ │ │ │ └── MqttDevice.java │ │ │ └── resources │ │ │ └── mqtt │ │ │ └── rpione3_MQTT_BIRTH.mqtt │ │ └── test │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── device │ │ │ └── registry │ │ │ └── test │ │ │ ├── DeviceRegistryLocatorConfiguration.java │ │ │ └── RunDeviceRegistryUnitTest.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.kapua.service.authentication.CredentialsFactory │ │ ├── features │ │ ├── DeviceEvent.feature │ │ ├── DeviceRegistry.feature │ │ ├── DeviceRegistryConnection.feature │ │ └── DeviceRegistryValidation.feature │ │ ├── kapua-environment-setting.properties │ │ ├── locator.xml │ │ ├── logback.xml │ │ └── shiro.ini ├── endpoint │ ├── api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── endpoint │ │ │ ├── EndpointInfo.java │ │ │ ├── EndpointInfoAttributes.java │ │ │ ├── EndpointInfoCreator.java │ │ │ ├── EndpointInfoFactory.java │ │ │ ├── EndpointInfoListResult.java │ │ │ ├── EndpointInfoMatchPredicate.java │ │ │ ├── EndpointInfoQuery.java │ │ │ ├── EndpointInfoRepository.java │ │ │ ├── EndpointInfoService.java │ │ │ ├── EndpointInfoXmlRegistry.java │ │ │ └── EndpointUsage.java │ ├── internal │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── endpoint │ │ │ │ └── internal │ │ │ │ ├── EndpointInfoCreatorImpl.java │ │ │ │ ├── EndpointInfoFactoryImpl.java │ │ │ │ ├── EndpointInfoImpl.java │ │ │ │ ├── EndpointInfoImplJpaRepository.java │ │ │ │ ├── EndpointInfoListResultImpl.java │ │ │ │ ├── EndpointInfoMatchPredicateImpl.java │ │ │ │ ├── EndpointInfoQueryImpl.java │ │ │ │ ├── EndpointInfoServiceImpl.java │ │ │ │ ├── EndpointModule.java │ │ │ │ └── EndpointUsageImpl.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── persistence.xml │ │ │ └── liquibase │ │ │ ├── 1.0.0 │ │ │ ├── changelog-endpoint-1.0.0.post.xml │ │ │ ├── changelog-endpoint-1.0.0.xml │ │ │ ├── endpoint_info-domain.xml │ │ │ ├── endpoint_info.xml │ │ │ ├── endpoint_info_usage.xml │ │ │ └── update-endpoint_info-domain.xml │ │ │ ├── 1.2.0 │ │ │ ├── changelog-endpoint-1.2.0.xml │ │ │ └── endpoint_info-timestamp.xml │ │ │ ├── 1.5.0 │ │ │ ├── changelog-endpoint-1.5.0.xml │ │ │ └── endpoint_info-add_type.xml │ │ │ ├── changelog-endpoint-master.post.xml │ │ │ ├── changelog-endpoint-master.xml │ │ │ └── common-properties.xml │ ├── pom.xml │ └── test-steps │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── service │ │ └── endpoint │ │ └── steps │ │ └── EndpointServiceSteps.java ├── job │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── job │ │ │ │ ├── Job.java │ │ │ │ ├── JobAttributes.java │ │ │ │ ├── JobCreator.java │ │ │ │ ├── JobFactory.java │ │ │ │ ├── JobListResult.java │ │ │ │ ├── JobMatchPredicate.java │ │ │ │ ├── JobQuery.java │ │ │ │ ├── JobRepository.java │ │ │ │ ├── JobService.java │ │ │ │ ├── JobXmlRegistry.java │ │ │ │ ├── exception │ │ │ │ ├── CannotModifyJobStepsException.java │ │ │ │ ├── JobServiceErrorCodes.java │ │ │ │ └── JobServiceException.java │ │ │ │ ├── execution │ │ │ │ ├── JobExecution.java │ │ │ │ ├── JobExecutionAttributes.java │ │ │ │ ├── JobExecutionCreator.java │ │ │ │ ├── JobExecutionFactory.java │ │ │ │ ├── JobExecutionListResult.java │ │ │ │ ├── JobExecutionQuery.java │ │ │ │ ├── JobExecutionRepository.java │ │ │ │ ├── JobExecutionService.java │ │ │ │ ├── JobExecutionStatus.java │ │ │ │ └── JobExecutionXmlRegistry.java │ │ │ │ ├── operation │ │ │ │ ├── GenericOperation.java │ │ │ │ ├── TargetProcessor.java │ │ │ │ ├── TargetReader.java │ │ │ │ └── TargetWriter.java │ │ │ │ ├── step │ │ │ │ ├── JobStep.java │ │ │ │ ├── JobStepAttributes.java │ │ │ │ ├── JobStepCreator.java │ │ │ │ ├── JobStepFactory.java │ │ │ │ ├── JobStepIndex.java │ │ │ │ ├── JobStepListResult.java │ │ │ │ ├── JobStepQuery.java │ │ │ │ ├── JobStepRepository.java │ │ │ │ ├── JobStepService.java │ │ │ │ ├── JobStepXmlRegistry.java │ │ │ │ └── definition │ │ │ │ │ ├── JobPropertyKey.java │ │ │ │ │ ├── JobStepDefinition.java │ │ │ │ │ ├── JobStepDefinitionAttributes.java │ │ │ │ │ ├── JobStepDefinitionCreator.java │ │ │ │ │ ├── JobStepDefinitionFactory.java │ │ │ │ │ ├── JobStepDefinitionListResult.java │ │ │ │ │ ├── JobStepDefinitionQuery.java │ │ │ │ │ ├── JobStepDefinitionRecord.java │ │ │ │ │ ├── JobStepDefinitionRepository.java │ │ │ │ │ ├── JobStepDefinitionService.java │ │ │ │ │ ├── JobStepDefinitionXmlRegistry.java │ │ │ │ │ ├── JobStepProperty.java │ │ │ │ │ ├── JobStepPropertyRecord.java │ │ │ │ │ ├── JobStepType.java │ │ │ │ │ └── device │ │ │ │ │ └── management │ │ │ │ │ └── TimeoutJobStepPropertyRecord.java │ │ │ │ └── targets │ │ │ │ ├── JobTarget.java │ │ │ │ ├── JobTargetAttributes.java │ │ │ │ ├── JobTargetCreator.java │ │ │ │ ├── JobTargetFactory.java │ │ │ │ ├── JobTargetListResult.java │ │ │ │ ├── JobTargetQuery.java │ │ │ │ ├── JobTargetRepository.java │ │ │ │ ├── JobTargetService.java │ │ │ │ ├── JobTargetStatus.java │ │ │ │ └── JobTargetXmlRegistry.java │ │ │ └── resources │ │ │ └── job-service-error-messages.properties │ ├── internal │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── job │ │ │ │ ├── execution │ │ │ │ └── internal │ │ │ │ │ ├── JobExecutionCreatorImpl.java │ │ │ │ │ ├── JobExecutionFactoryImpl.java │ │ │ │ │ ├── JobExecutionImpl.java │ │ │ │ │ ├── JobExecutionImplJpaRepository.java │ │ │ │ │ ├── JobExecutionListResultImpl.java │ │ │ │ │ ├── JobExecutionModule.java │ │ │ │ │ ├── JobExecutionQueryImpl.java │ │ │ │ │ └── JobExecutionServiceImpl.java │ │ │ │ ├── internal │ │ │ │ ├── JobCreatorImpl.java │ │ │ │ ├── JobFactoryImpl.java │ │ │ │ ├── JobImpl.java │ │ │ │ ├── JobImplJpaRepository.java │ │ │ │ ├── JobListResultImpl.java │ │ │ │ ├── JobMatchPredicateImpl.java │ │ │ │ ├── JobModule.java │ │ │ │ ├── JobQueryImpl.java │ │ │ │ ├── JobServiceConfigurationManagerModule.java │ │ │ │ ├── JobServiceImpl.java │ │ │ │ └── settings │ │ │ │ │ ├── JobServiceSettingKeys.java │ │ │ │ │ └── JobServiceSettings.java │ │ │ │ ├── step │ │ │ │ ├── definition │ │ │ │ │ └── internal │ │ │ │ │ │ ├── JobStepDefinitionAligner.java │ │ │ │ │ │ ├── JobStepDefinitionCreatorImpl.java │ │ │ │ │ │ ├── JobStepDefinitionFactoryImpl.java │ │ │ │ │ │ ├── JobStepDefinitionImpl.java │ │ │ │ │ │ ├── JobStepDefinitionImplJpaRepository.java │ │ │ │ │ │ ├── JobStepDefinitionListResultImpl.java │ │ │ │ │ │ ├── JobStepDefinitionModule.java │ │ │ │ │ │ ├── JobStepDefinitionPropertyId.java │ │ │ │ │ │ ├── JobStepDefinitionPropertyImpl.java │ │ │ │ │ │ ├── JobStepDefinitionQueryImpl.java │ │ │ │ │ │ ├── JobStepDefinitionServiceImpl.java │ │ │ │ │ │ └── JobStepPropertyImpl.java │ │ │ │ └── internal │ │ │ │ │ ├── JobStepCreatorImpl.java │ │ │ │ │ ├── JobStepFactoryImpl.java │ │ │ │ │ ├── JobStepImpl.java │ │ │ │ │ ├── JobStepImplJpaRepository.java │ │ │ │ │ ├── JobStepListResultImpl.java │ │ │ │ │ ├── JobStepModule.java │ │ │ │ │ ├── JobStepQueryImpl.java │ │ │ │ │ └── JobStepServiceImpl.java │ │ │ │ └── targets │ │ │ │ └── internal │ │ │ │ ├── JobTargetCreatorImpl.java │ │ │ │ ├── JobTargetFactoryImpl.java │ │ │ │ ├── JobTargetImpl.java │ │ │ │ ├── JobTargetImplJpaRepository.java │ │ │ │ ├── JobTargetListResultImpl.java │ │ │ │ ├── JobTargetQueryImpl.java │ │ │ │ ├── JobTargetServiceImpl.java │ │ │ │ └── JobTargetsModule.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── metatypes │ │ │ │ └── org.eclipse.kapua.service.job.JobService.xml │ │ │ └── persistence.xml │ │ │ ├── job-service-settings.properties │ │ │ └── liquibase │ │ │ ├── 0.3.0 │ │ │ ├── changelog-job-0.3.0.pre.xml │ │ │ ├── changelog-job-0.3.0.xml │ │ │ ├── job-configuration.xml │ │ │ ├── job-domain.xml │ │ │ ├── job.xml │ │ │ ├── job_execution.xml │ │ │ ├── job_step.xml │ │ │ ├── job_step_definition.xml │ │ │ ├── job_step_definition_properties.xml │ │ │ ├── job_step_properties.xml │ │ │ └── job_target.xml │ │ │ ├── 1.0.0 │ │ │ ├── changelog-job-1.0.0.xml │ │ │ └── job-domain.xml │ │ │ ├── 1.1.0 │ │ │ ├── changelog-job-1.1.0.xml │ │ │ ├── job_execution-log.xml │ │ │ ├── job_execution_target.xml │ │ │ ├── job_job_step_definition_properties-example_value.xml │ │ │ ├── job_job_step_properties-example_value.xml │ │ │ └── job_target-status_message.xml │ │ │ ├── 1.2.0 │ │ │ ├── changelog-job-1.2.0.xml │ │ │ ├── job-timestamp.xml │ │ │ ├── job_execution-timestamp.xml │ │ │ ├── job_step-timestamp.xml │ │ │ ├── job_step_definition-timestamp.xml │ │ │ └── job_target-timestamp.xml │ │ │ ├── 1.5.0 │ │ │ ├── changelog-job-1.5.0.xml │ │ │ ├── job-name_indexes.xml │ │ │ ├── job_job_step_definition_properties-limits.xml │ │ │ ├── job_job_step_definition_properties-required.xml │ │ │ ├── job_job_step_properties-limits.xml │ │ │ └── job_job_step_properties-required.xml │ │ │ ├── 1.6.0 │ │ │ ├── changelog-job-1.6.0.xml │ │ │ ├── job_job_execution-indexes.xml │ │ │ ├── job_job_step_definition_properties-secret.xml │ │ │ └── job_job_step_properties-secret.xml │ │ │ ├── 2.0.0 │ │ │ ├── changelog-job-2.0.0.xml │ │ │ └── job_job_step_properties-value_length.xml │ │ │ ├── 2.1.0 │ │ │ ├── changelog-job-2.1.0.xml │ │ │ ├── job_job_step_definition_properties-description.xml │ │ │ └── job_job_step_properties-description.xml │ │ │ ├── changelog-job-master.pre.xml │ │ │ └── changelog-job-master.xml │ ├── pom.xml │ ├── test-steps │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── job │ │ │ └── steps │ │ │ ├── JobEngineSteps.java │ │ │ ├── JobExecutionServiceSteps.java │ │ │ ├── JobServiceSteps.java │ │ │ ├── JobServiceTestBase.java │ │ │ ├── JobStepDefinitionServiceSteps.java │ │ │ ├── JobStepServiceSteps.java │ │ │ ├── JobTargetServiceSteps.java │ │ │ └── model │ │ │ └── TestJobStepProcessor.java │ └── test │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── job │ │ │ └── test │ │ │ ├── JobLocatorConfiguration.java │ │ │ └── RunJobUnitTest.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.kapua.service.authentication.CredentialsFactory │ │ ├── features │ │ ├── JobService.feature │ │ ├── JobStepDefinitionService.feature │ │ └── JobStepService.feature │ │ ├── kapua-environment-setting.properties │ │ ├── locator.xml │ │ ├── logback.xml │ │ └── shiro.ini ├── pom.xml ├── scheduler │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── scheduler │ │ │ │ │ ├── exception │ │ │ │ │ ├── SchedulerServiceErrorCodes.java │ │ │ │ │ ├── SchedulerServiceException.java │ │ │ │ │ ├── TriggerCannotFireException.java │ │ │ │ │ ├── TriggerInvalidDatesException.java │ │ │ │ │ └── TriggerInvalidSchedulingException.java │ │ │ │ │ └── trigger │ │ │ │ │ ├── Trigger.java │ │ │ │ │ ├── TriggerAttributes.java │ │ │ │ │ ├── TriggerCreator.java │ │ │ │ │ ├── TriggerFactory.java │ │ │ │ │ ├── TriggerListResult.java │ │ │ │ │ ├── TriggerQuery.java │ │ │ │ │ ├── TriggerRepository.java │ │ │ │ │ ├── TriggerService.java │ │ │ │ │ ├── TriggerXmlRegistry.java │ │ │ │ │ ├── definition │ │ │ │ │ ├── TriggerDefinition.java │ │ │ │ │ ├── TriggerDefinitionAttributes.java │ │ │ │ │ ├── TriggerDefinitionCreator.java │ │ │ │ │ ├── TriggerDefinitionFactory.java │ │ │ │ │ ├── TriggerDefinitionListResult.java │ │ │ │ │ ├── TriggerDefinitionQuery.java │ │ │ │ │ ├── TriggerDefinitionRecord.java │ │ │ │ │ ├── TriggerDefinitionRepository.java │ │ │ │ │ ├── TriggerDefinitionService.java │ │ │ │ │ ├── TriggerDefinitionXmlRegistry.java │ │ │ │ │ ├── TriggerProperty.java │ │ │ │ │ ├── TriggerPropertyKey.java │ │ │ │ │ ├── TriggerPropertyRecord.java │ │ │ │ │ └── TriggerType.java │ │ │ │ │ └── fired │ │ │ │ │ ├── FiredTrigger.java │ │ │ │ │ ├── FiredTriggerAttributes.java │ │ │ │ │ ├── FiredTriggerCreator.java │ │ │ │ │ ├── FiredTriggerFactory.java │ │ │ │ │ ├── FiredTriggerListResult.java │ │ │ │ │ ├── FiredTriggerQuery.java │ │ │ │ │ ├── FiredTriggerRepository.java │ │ │ │ │ ├── FiredTriggerService.java │ │ │ │ │ ├── FiredTriggerStatus.java │ │ │ │ │ └── FiredTriggerXmlRegistry.java │ │ │ └── resources │ │ │ │ └── scheduler-service-error-messages.properties │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── scheduler │ │ │ └── exception │ │ │ ├── SchedulerServiceExceptionTest.java │ │ │ └── model │ │ │ └── TestSchedulerServiceException.java │ ├── pom.xml │ ├── quartz │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── scheduler │ │ │ │ ├── quartz │ │ │ │ ├── SchedulerServiceInit.java │ │ │ │ ├── driver │ │ │ │ │ ├── QuartzTriggerDriver.java │ │ │ │ │ └── exception │ │ │ │ │ │ ├── CannotAddQuartzJobException.java │ │ │ │ │ │ ├── CannotScheduleJobException.java │ │ │ │ │ │ ├── CannotUnscheduleJobException.java │ │ │ │ │ │ ├── QuartzTriggerDriverErrorCodes.java │ │ │ │ │ │ ├── QuartzTriggerDriverException.java │ │ │ │ │ │ ├── SchedulerNotAvailableException.java │ │ │ │ │ │ └── TriggerNeverFiresException.java │ │ │ │ ├── job │ │ │ │ │ └── KapuaJobLauncher.java │ │ │ │ └── persistence │ │ │ │ │ └── KapuaQuartzConnectionProvider.java │ │ │ │ └── trigger │ │ │ │ ├── definition │ │ │ │ └── quartz │ │ │ │ │ ├── CronJobTriggerDefinition.java │ │ │ │ │ ├── CronJobTriggerDefinitionPropertyKeys.java │ │ │ │ │ ├── DeviceConnectTriggerDefinition.java │ │ │ │ │ ├── DeviceConnectTriggerDefinitionPropertyKeys.java │ │ │ │ │ ├── IntervalJobTriggerDefinition.java │ │ │ │ │ ├── IntervalJobTriggerDefinitionPropertyKeys.java │ │ │ │ │ ├── SchedulerTriggerDefinitionModule.java │ │ │ │ │ ├── TriggerDefinitionAligner.java │ │ │ │ │ ├── TriggerDefinitionCreatorImpl.java │ │ │ │ │ ├── TriggerDefinitionFactoryImpl.java │ │ │ │ │ ├── TriggerDefinitionImpl.java │ │ │ │ │ ├── TriggerDefinitionImplJpaRepository.java │ │ │ │ │ ├── TriggerDefinitionListResultImpl.java │ │ │ │ │ ├── TriggerDefinitionPropertyId.java │ │ │ │ │ ├── TriggerDefinitionPropertyImpl.java │ │ │ │ │ ├── TriggerDefinitionQueryImpl.java │ │ │ │ │ ├── TriggerDefinitionServiceImpl.java │ │ │ │ │ └── TriggerPropertyImpl.java │ │ │ │ ├── fired │ │ │ │ └── quartz │ │ │ │ │ ├── FiredTriggerCreatorImpl.java │ │ │ │ │ ├── FiredTriggerFactoryImpl.java │ │ │ │ │ ├── FiredTriggerImpl.java │ │ │ │ │ ├── FiredTriggerImplJpaRepository.java │ │ │ │ │ ├── FiredTriggerListResultImpl.java │ │ │ │ │ ├── FiredTriggerQueryImpl.java │ │ │ │ │ ├── FiredTriggerServiceImpl.java │ │ │ │ │ └── SchedulerTriggerFiredModule.java │ │ │ │ └── quartz │ │ │ │ ├── SchedulerQuartzModule.java │ │ │ │ ├── TriggerCreatorImpl.java │ │ │ │ ├── TriggerFactoryImpl.java │ │ │ │ ├── TriggerImpl.java │ │ │ │ ├── TriggerImplJpaRepository.java │ │ │ │ ├── TriggerListResultImpl.java │ │ │ │ ├── TriggerQueryImpl.java │ │ │ │ └── TriggerServiceImpl.java │ │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── metatypes │ │ │ │ └── org.eclipse.kapua.service.schedule.trigger.TriggerService.xml │ │ │ └── persistence.xml │ │ │ ├── liquibase │ │ │ ├── 0.3.0 │ │ │ │ ├── changelog-scheduler-0.3.0.xml │ │ │ │ ├── scheduler-domain.xml │ │ │ │ ├── scheduler-engine-quartz.xml │ │ │ │ ├── trigger-configuration.xml │ │ │ │ ├── trigger.xml │ │ │ │ └── trigger_properties.xml │ │ │ ├── 1.0.0 │ │ │ │ ├── changelog-scheduler-1.0.0.xml │ │ │ │ └── scheduler-domain.xml │ │ │ ├── 1.1.0 │ │ │ │ ├── changelog-scheduler-1.1.0.pre.xml │ │ │ │ ├── changelog-scheduler-1.1.0.xml │ │ │ │ ├── cron_job_trigger_definition.xml │ │ │ │ ├── device_connect_trigger_definition.xml │ │ │ │ ├── interval_job_trigger_definition.xml │ │ │ │ ├── scheduler-engine-quartz-update_job_launcher.xml │ │ │ │ ├── trigger-description.xml │ │ │ │ ├── trigger-trigger_definition_id.xml │ │ │ │ ├── trigger_definition.xml │ │ │ │ └── trigger_definition_properties.xml │ │ │ ├── 1.2.0 │ │ │ │ ├── changelog-scheduler-1.2.0.xml │ │ │ │ ├── scheduler_engine_quartz-delete_cascade.xml │ │ │ │ ├── trigger-timestamp.xml │ │ │ │ └── trigger_definition-timestamp.xml │ │ │ ├── 1.5.0 │ │ │ │ ├── changelog-scheduler-1.5.0.xml │ │ │ │ └── fired_trigger.xml │ │ │ ├── 2.1.0 │ │ │ │ ├── changelog-scheduler-2.1.0.xml │ │ │ │ ├── trigger_definition-nullable_processor.xml │ │ │ │ ├── trigger_definition_properties-description.xml │ │ │ │ └── trigger_properties-description.xml │ │ │ ├── changelog-scheduler-master.pre.xml │ │ │ └── changelog-scheduler-master.xml │ │ │ ├── quartz-trigger-driver-error-messages.properties │ │ │ └── quartz.properties │ ├── test-steps │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── scheduler │ │ │ └── steps │ │ │ └── JobScheduleServiceSteps.java │ └── test │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── scheduler │ │ │ └── test │ │ │ ├── RunSchedulerUnitTest.java │ │ │ └── SchedulerLocatorConfiguration.java │ │ └── resources │ │ ├── features │ │ └── SchedulerService.feature │ │ ├── kapua-environment-setting.properties │ │ ├── locator.xml │ │ ├── logback.xml │ │ └── shiro.ini ├── security │ ├── authentication │ │ ├── api │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── authentication │ │ │ │ │ │ ├── AccessTokenCredentials.java │ │ │ │ │ │ ├── ApiKeyCredentials.java │ │ │ │ │ │ ├── AuthenticationCredentials.java │ │ │ │ │ │ ├── AuthenticationService.java │ │ │ │ │ │ ├── AuthenticationXmlRegistry.java │ │ │ │ │ │ ├── CredentialsFactory.java │ │ │ │ │ │ ├── JwtCredentials.java │ │ │ │ │ │ ├── KapuaPrincipal.java │ │ │ │ │ │ ├── LoginCredentials.java │ │ │ │ │ │ ├── RefreshTokenCredentials.java │ │ │ │ │ │ ├── SessionCredentials.java │ │ │ │ │ │ ├── StringToCharArrayAdapter.java │ │ │ │ │ │ ├── UsernamePasswordCredentials.java │ │ │ │ │ │ ├── credential │ │ │ │ │ │ ├── Credential.java │ │ │ │ │ │ ├── CredentialAttributes.java │ │ │ │ │ │ ├── CredentialCreator.java │ │ │ │ │ │ ├── CredentialFactory.java │ │ │ │ │ │ ├── CredentialListResult.java │ │ │ │ │ │ ├── CredentialQuery.java │ │ │ │ │ │ ├── CredentialRepository.java │ │ │ │ │ │ ├── CredentialService.java │ │ │ │ │ │ ├── CredentialStatus.java │ │ │ │ │ │ ├── CredentialType.java │ │ │ │ │ │ ├── CredentialXmlRegistry.java │ │ │ │ │ │ ├── handler │ │ │ │ │ │ │ └── CredentialTypeHandler.java │ │ │ │ │ │ └── mfa │ │ │ │ │ │ │ ├── KapuaExistingMfaOptionException.java │ │ │ │ │ │ │ ├── KapuaExistingScratchCodesException.java │ │ │ │ │ │ │ ├── MfaOption.java │ │ │ │ │ │ │ ├── MfaOptionAttributes.java │ │ │ │ │ │ │ ├── MfaOptionCreator.java │ │ │ │ │ │ │ ├── MfaOptionFactory.java │ │ │ │ │ │ │ ├── MfaOptionListResult.java │ │ │ │ │ │ │ ├── MfaOptionQuery.java │ │ │ │ │ │ │ ├── MfaOptionRepository.java │ │ │ │ │ │ │ ├── MfaOptionService.java │ │ │ │ │ │ │ ├── MfaOptionXmlRegistry.java │ │ │ │ │ │ │ ├── ScratchCode.java │ │ │ │ │ │ │ ├── ScratchCodeFactory.java │ │ │ │ │ │ │ ├── ScratchCodeListResult.java │ │ │ │ │ │ │ ├── ScratchCodeRepository.java │ │ │ │ │ │ │ ├── ScratchCodeService.java │ │ │ │ │ │ │ └── ScratchCodeXmlRegistry.java │ │ │ │ │ │ ├── exception │ │ │ │ │ │ ├── DuplicatedPasswordCredentialException.java │ │ │ │ │ │ ├── KapuaAuthenticationErrorCodes.java │ │ │ │ │ │ ├── KapuaAuthenticationException.java │ │ │ │ │ │ └── PasswordLengthException.java │ │ │ │ │ │ ├── mfa │ │ │ │ │ │ └── MfaAuthenticator.java │ │ │ │ │ │ ├── registration │ │ │ │ │ │ ├── RegistrationService.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ │ ├── token │ │ │ │ │ │ ├── AccessToken.java │ │ │ │ │ │ ├── AccessTokenAttributes.java │ │ │ │ │ │ ├── AccessTokenCreator.java │ │ │ │ │ │ ├── AccessTokenFactory.java │ │ │ │ │ │ ├── AccessTokenListResult.java │ │ │ │ │ │ ├── AccessTokenQuery.java │ │ │ │ │ │ ├── AccessTokenRepository.java │ │ │ │ │ │ ├── AccessTokenService.java │ │ │ │ │ │ ├── AccessTokenXmlRegistry.java │ │ │ │ │ │ └── LoginInfo.java │ │ │ │ │ │ └── user │ │ │ │ │ │ ├── PasswordChangeRequest.java │ │ │ │ │ │ ├── PasswordResetRequest.java │ │ │ │ │ │ ├── UserCredentialsFactory.java │ │ │ │ │ │ ├── UserCredentialsService.java │ │ │ │ │ │ └── UserCredentialsXmlRegistry.java │ │ │ │ └── resources │ │ │ │ │ └── authentication-error-messages.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── authentication │ │ │ │ └── exception │ │ │ │ └── KapuaAuthenticationExceptionTest.java │ │ └── pom.xml │ ├── authorization │ │ ├── api │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── eclipse │ │ │ │ │ │ └── kapua │ │ │ │ │ │ └── service │ │ │ │ │ │ └── authorization │ │ │ │ │ │ ├── AuthorizationService.java │ │ │ │ │ │ ├── access │ │ │ │ │ │ ├── AccessInfo.java │ │ │ │ │ │ ├── AccessInfoAttributes.java │ │ │ │ │ │ ├── AccessInfoCreator.java │ │ │ │ │ │ ├── AccessInfoFactory.java │ │ │ │ │ │ ├── AccessInfoListResult.java │ │ │ │ │ │ ├── AccessInfoQuery.java │ │ │ │ │ │ ├── AccessInfoRepository.java │ │ │ │ │ │ ├── AccessInfoService.java │ │ │ │ │ │ ├── AccessInfoXmlRegistry.java │ │ │ │ │ │ ├── AccessPermission.java │ │ │ │ │ │ ├── AccessPermissionAttributes.java │ │ │ │ │ │ ├── AccessPermissionCreator.java │ │ │ │ │ │ ├── AccessPermissionFactory.java │ │ │ │ │ │ ├── AccessPermissionListResult.java │ │ │ │ │ │ ├── AccessPermissionQuery.java │ │ │ │ │ │ ├── AccessPermissionRepository.java │ │ │ │ │ │ ├── AccessPermissionService.java │ │ │ │ │ │ ├── AccessPermissionXmlRegistry.java │ │ │ │ │ │ ├── AccessRole.java │ │ │ │ │ │ ├── AccessRoleAttributes.java │ │ │ │ │ │ ├── AccessRoleCreator.java │ │ │ │ │ │ ├── AccessRoleFactory.java │ │ │ │ │ │ ├── AccessRoleListResult.java │ │ │ │ │ │ ├── AccessRoleQuery.java │ │ │ │ │ │ ├── AccessRoleRepository.java │ │ │ │ │ │ ├── AccessRoleService.java │ │ │ │ │ │ ├── AccessRoleXmlRegistry.java │ │ │ │ │ │ └── GroupQueryHelper.java │ │ │ │ │ │ ├── domain │ │ │ │ │ │ ├── Domain.java │ │ │ │ │ │ ├── DomainAttributes.java │ │ │ │ │ │ ├── DomainCreator.java │ │ │ │ │ │ ├── DomainFactory.java │ │ │ │ │ │ ├── DomainListResult.java │ │ │ │ │ │ ├── DomainQuery.java │ │ │ │ │ │ ├── DomainRegistryService.java │ │ │ │ │ │ ├── DomainRepository.java │ │ │ │ │ │ └── DomainXmlRegistry.java │ │ │ │ │ │ ├── exception │ │ │ │ │ │ ├── InternalUserOnlyException.java │ │ │ │ │ │ ├── KapuaAuthorizationErrorCodes.java │ │ │ │ │ │ ├── KapuaAuthorizationException.java │ │ │ │ │ │ ├── SelfManagedOnlyException.java │ │ │ │ │ │ └── SubjectUnauthorizedException.java │ │ │ │ │ │ ├── group │ │ │ │ │ │ ├── Group.java │ │ │ │ │ │ ├── GroupAttributes.java │ │ │ │ │ │ ├── GroupCreator.java │ │ │ │ │ │ ├── GroupFactory.java │ │ │ │ │ │ ├── GroupListResult.java │ │ │ │ │ │ ├── GroupMatchPredicate.java │ │ │ │ │ │ ├── GroupQuery.java │ │ │ │ │ │ ├── GroupRepository.java │ │ │ │ │ │ ├── GroupService.java │ │ │ │ │ │ ├── GroupXmlRegistry.java │ │ │ │ │ │ └── Groupable.java │ │ │ │ │ │ ├── permission │ │ │ │ │ │ ├── Permission.java │ │ │ │ │ │ ├── PermissionAttributes.java │ │ │ │ │ │ ├── PermissionFactory.java │ │ │ │ │ │ └── PermissionXmlRegistry.java │ │ │ │ │ │ └── role │ │ │ │ │ │ ├── Role.java │ │ │ │ │ │ ├── RoleAttributes.java │ │ │ │ │ │ ├── RoleCreator.java │ │ │ │ │ │ ├── RoleFactory.java │ │ │ │ │ │ ├── RoleListResult.java │ │ │ │ │ │ ├── RoleMatchPredicate.java │ │ │ │ │ │ ├── RolePermission.java │ │ │ │ │ │ ├── RolePermissionAttributes.java │ │ │ │ │ │ ├── RolePermissionCreator.java │ │ │ │ │ │ ├── RolePermissionFactory.java │ │ │ │ │ │ ├── RolePermissionListResult.java │ │ │ │ │ │ ├── RolePermissionQuery.java │ │ │ │ │ │ ├── RolePermissionRepository.java │ │ │ │ │ │ ├── RolePermissionService.java │ │ │ │ │ │ ├── RolePermissionXmlRegistry.java │ │ │ │ │ │ ├── RoleQuery.java │ │ │ │ │ │ ├── RoleRepository.java │ │ │ │ │ │ ├── RoleService.java │ │ │ │ │ │ └── RoleXmlRegistry.java │ │ │ │ └── resources │ │ │ │ │ └── authorization-error-messages.properties │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── authorization │ │ │ │ └── exception │ │ │ │ └── KapuaAuthorizationExceptionTest.java │ │ └── pom.xml │ ├── certificate │ │ ├── api │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── certificate │ │ │ │ ├── Certificate.java │ │ │ │ ├── CertificateAttributes.java │ │ │ │ ├── CertificateCreator.java │ │ │ │ ├── CertificateFactory.java │ │ │ │ ├── CertificateGenerator.java │ │ │ │ ├── CertificateListResult.java │ │ │ │ ├── CertificateQuery.java │ │ │ │ ├── CertificateRepository.java │ │ │ │ ├── CertificateService.java │ │ │ │ ├── CertificateStatus.java │ │ │ │ ├── CertificateUsage.java │ │ │ │ ├── KeyUsage.java │ │ │ │ ├── KeyUsageSetting.java │ │ │ │ ├── exception │ │ │ │ ├── KapuaCertificateErrorCodes.java │ │ │ │ └── KapuaCertificateException.java │ │ │ │ ├── info │ │ │ │ ├── CertificateInfo.java │ │ │ │ ├── CertificateInfoAttributes.java │ │ │ │ ├── CertificateInfoCreator.java │ │ │ │ ├── CertificateInfoFactory.java │ │ │ │ ├── CertificateInfoListResult.java │ │ │ │ ├── CertificateInfoMatchPredicate.java │ │ │ │ ├── CertificateInfoQuery.java │ │ │ │ ├── CertificateInfoRepository.java │ │ │ │ ├── CertificateInfoService.java │ │ │ │ └── xml │ │ │ │ │ └── CertificateInfoXmlRegistry.java │ │ │ │ ├── util │ │ │ │ └── CertificateUtils.java │ │ │ │ └── xml │ │ │ │ └── CertificateXmlRegistry.java │ │ ├── internal │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── certificate │ │ │ │ │ ├── info │ │ │ │ │ └── internal │ │ │ │ │ │ ├── CertificateInfoFactoryImpl.java │ │ │ │ │ │ ├── CertificateInfoImpl.java │ │ │ │ │ │ ├── CertificateInfoListResultImpl.java │ │ │ │ │ │ ├── CertificateInfoMatchPredicateImpl.java │ │ │ │ │ │ ├── CertificateInfoModule.java │ │ │ │ │ │ ├── CertificateInfoQueryImpl.java │ │ │ │ │ │ └── CertificateInfoServiceImpl.java │ │ │ │ │ └── internal │ │ │ │ │ ├── CertificateFactoryImpl.java │ │ │ │ │ ├── CertificateImpl.java │ │ │ │ │ ├── CertificateListResultImpl.java │ │ │ │ │ ├── CertificateModule.java │ │ │ │ │ ├── CertificateQueryImpl.java │ │ │ │ │ ├── CertificateServiceImpl.java │ │ │ │ │ ├── CertificateUsageImpl.java │ │ │ │ │ ├── KeyUsageSettingImpl.java │ │ │ │ │ └── setting │ │ │ │ │ ├── KapuaCertificateSetting.java │ │ │ │ │ └── KapuaCertificateSettingKeys.java │ │ │ │ └── resources │ │ │ │ └── kapua-certificate-setting.properties │ │ └── pom.xml │ ├── pom.xml │ ├── registration │ │ ├── about.html │ │ ├── api │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── security │ │ │ │ └── registration │ │ │ │ ├── NoopRegistrationProcessor.java │ │ │ │ ├── RegistrationModule.java │ │ │ │ ├── RegistrationProcessor.java │ │ │ │ ├── RegistrationProcessorProvider.java │ │ │ │ └── package-info.java │ │ ├── pom.xml │ │ └── simple │ │ │ ├── about.html │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── security │ │ │ │ └── registration │ │ │ │ └── simple │ │ │ │ ├── SimpleRegistrationModule.java │ │ │ │ ├── SimpleRegistrationProcessor.java │ │ │ │ ├── SimpleRegistrationProcessorProvider.java │ │ │ │ └── setting │ │ │ │ ├── SimpleSetting.java │ │ │ │ └── SimpleSettingKeys.java │ │ │ └── resources │ │ │ └── kapua-security-registration-simple-setting.properties │ ├── shiro │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ ├── SecurityUtil.java │ │ │ │ │ ├── authentication │ │ │ │ │ ├── credential │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ ├── CacheMetric.java │ │ │ │ │ │ │ ├── CachedCredential.java │ │ │ │ │ │ │ ├── CachedPasswordMatcher.java │ │ │ │ │ │ │ ├── DefaultPasswordMatcher.java │ │ │ │ │ │ │ └── PasswordMatcher.java │ │ │ │ │ │ ├── handler │ │ │ │ │ │ │ └── shiro │ │ │ │ │ │ │ │ ├── ApiKeyCredentialTypeHandler.java │ │ │ │ │ │ │ │ ├── JwtCredentialTypeHandler.java │ │ │ │ │ │ │ │ └── PasswordCredentialTypeHandler.java │ │ │ │ │ │ ├── mfa │ │ │ │ │ │ │ └── shiro │ │ │ │ │ │ │ │ ├── MfaOptionCreatorImpl.java │ │ │ │ │ │ │ │ ├── MfaOptionFactoryImpl.java │ │ │ │ │ │ │ │ ├── MfaOptionImpl.java │ │ │ │ │ │ │ │ ├── MfaOptionImplJpaRepository.java │ │ │ │ │ │ │ │ ├── MfaOptionListResultImpl.java │ │ │ │ │ │ │ │ ├── MfaOptionQueryImpl.java │ │ │ │ │ │ │ │ ├── MfaOptionServiceImpl.java │ │ │ │ │ │ │ │ ├── ScratchCodeFactoryImpl.java │ │ │ │ │ │ │ │ ├── ScratchCodeImpl.java │ │ │ │ │ │ │ │ ├── ScratchCodeImplJpaRepository.java │ │ │ │ │ │ │ │ ├── ScratchCodeListResultImpl.java │ │ │ │ │ │ │ │ └── ScratchCodeServiceImpl.java │ │ │ │ │ │ └── shiro │ │ │ │ │ │ │ ├── AccountPasswordLengthProvider.java │ │ │ │ │ │ │ ├── AccountPasswordLengthProviderImpl.java │ │ │ │ │ │ │ ├── CredentialCreatorImpl.java │ │ │ │ │ │ │ ├── CredentialFactoryImpl.java │ │ │ │ │ │ │ ├── CredentialImpl.java │ │ │ │ │ │ │ ├── CredentialImplJpaRepository.java │ │ │ │ │ │ │ ├── CredentialListResultImpl.java │ │ │ │ │ │ │ ├── CredentialQueryImpl.java │ │ │ │ │ │ │ ├── CredentialServiceImpl.java │ │ │ │ │ │ │ ├── PasswordResetRequestImpl.java │ │ │ │ │ │ │ ├── PasswordResetter.java │ │ │ │ │ │ │ ├── PasswordResetterImpl.java │ │ │ │ │ │ │ ├── PasswordValidator.java │ │ │ │ │ │ │ └── PasswordValidatorImpl.java │ │ │ │ │ ├── shiro │ │ │ │ │ │ ├── AccessTokenCredentialsImpl.java │ │ │ │ │ │ ├── ApiKeyCredentialsImpl.java │ │ │ │ │ │ ├── AuthenticationModule.java │ │ │ │ │ │ ├── AuthenticationServiceModule.java │ │ │ │ │ │ ├── AuthenticationServiceShiroImpl.java │ │ │ │ │ │ ├── CredentialServiceConfigurationManagerImpl.java │ │ │ │ │ │ ├── CredentialServiceConfigurationManagerModule.java │ │ │ │ │ │ ├── CredentialsFactoryImpl.java │ │ │ │ │ │ ├── JwtCredentialsImpl.java │ │ │ │ │ │ ├── KapuaAuthenticator.java │ │ │ │ │ │ ├── RefreshTokenCredentialsImpl.java │ │ │ │ │ │ ├── SystemPasswordLengthProvider.java │ │ │ │ │ │ ├── SystemPasswordLengthProviderImpl.java │ │ │ │ │ │ ├── UsernamePasswordCredentialsImpl.java │ │ │ │ │ │ ├── exceptions │ │ │ │ │ │ │ ├── AuthenticationRuntimeException.java │ │ │ │ │ │ │ ├── ExpiredAccessTokenException.java │ │ │ │ │ │ │ ├── ExpiredAccountException.java │ │ │ │ │ │ │ ├── InvalidatedAccessTokenException.java │ │ │ │ │ │ │ ├── JwtCertificateNotFoundException.java │ │ │ │ │ │ │ ├── MalformedAccessTokenException.java │ │ │ │ │ │ │ ├── MfaRequiredException.java │ │ │ │ │ │ │ └── TemporaryLockedAccountException.java │ │ │ │ │ │ ├── mfa │ │ │ │ │ │ │ ├── MfaAuthenticatorImpl.java │ │ │ │ │ │ │ └── MfaAuthenticatorServiceLocator.java │ │ │ │ │ │ ├── realm │ │ │ │ │ │ │ ├── AccessTokenAuthenticatingRealm.java │ │ │ │ │ │ │ ├── AccessTokenCredentialsConverter.java │ │ │ │ │ │ │ ├── AccessTokenCredentialsMatcher.java │ │ │ │ │ │ │ ├── ApiKeyAuthenticatingRealm.java │ │ │ │ │ │ │ ├── ApiKeyCredentialsConverter.java │ │ │ │ │ │ │ ├── ApiKeyCredentialsMatcher.java │ │ │ │ │ │ │ ├── CredentialsConverter.java │ │ │ │ │ │ │ ├── JwtAuthenticatingRealm.java │ │ │ │ │ │ │ ├── JwtCredentialsConverter.java │ │ │ │ │ │ │ ├── JwtCredentialsMatcher.java │ │ │ │ │ │ │ ├── KapuaAuthenticatingRealm.java │ │ │ │ │ │ │ ├── KapuaAuthenticationToken.java │ │ │ │ │ │ │ ├── LoginAuthenticationInfo.java │ │ │ │ │ │ │ ├── SessionAuthenticationInfo.java │ │ │ │ │ │ │ ├── UserPassAuthenticatingRealm.java │ │ │ │ │ │ │ ├── UserPassCredentialsConverter.java │ │ │ │ │ │ │ └── UserPassCredentialsMatcher.java │ │ │ │ │ │ ├── registration │ │ │ │ │ │ │ └── RegistrationServiceImpl.java │ │ │ │ │ │ ├── session │ │ │ │ │ │ │ └── ShiroSessionKeys.java │ │ │ │ │ │ ├── setting │ │ │ │ │ │ │ ├── KapuaAuthenticationSetting.java │ │ │ │ │ │ │ ├── KapuaAuthenticationSettingKeys.java │ │ │ │ │ │ │ ├── KapuaCryptoSetting.java │ │ │ │ │ │ │ └── KapuaCryptoSettingKeys.java │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── AuthenticationUtils.java │ │ │ │ │ │ │ └── CryptAlgorithm.java │ │ │ │ │ ├── token │ │ │ │ │ │ └── shiro │ │ │ │ │ │ │ ├── AccessTokenCreatorImpl.java │ │ │ │ │ │ │ ├── AccessTokenFactoryImpl.java │ │ │ │ │ │ │ ├── AccessTokenImpl.java │ │ │ │ │ │ │ ├── AccessTokenImplJpaRepository.java │ │ │ │ │ │ │ ├── AccessTokenListResultImpl.java │ │ │ │ │ │ │ ├── AccessTokenQueryImpl.java │ │ │ │ │ │ │ ├── AccessTokenServiceImpl.java │ │ │ │ │ │ │ └── LoginInfoImpl.java │ │ │ │ │ └── user │ │ │ │ │ │ └── shiro │ │ │ │ │ │ ├── PasswordChangeRequestImpl.java │ │ │ │ │ │ ├── UserCredentialsFactoryImpl.java │ │ │ │ │ │ ├── UserCredentialsModule.java │ │ │ │ │ │ └── UserCredentialsServiceImpl.java │ │ │ │ │ ├── authorization │ │ │ │ │ ├── access │ │ │ │ │ │ └── shiro │ │ │ │ │ │ │ ├── AccessInfoCache.java │ │ │ │ │ │ │ ├── AccessInfoCacheFactory.java │ │ │ │ │ │ │ ├── AccessInfoCachingRepository.java │ │ │ │ │ │ │ ├── AccessInfoCreatorImpl.java │ │ │ │ │ │ │ ├── AccessInfoFactoryImpl.java │ │ │ │ │ │ │ ├── AccessInfoImpl.java │ │ │ │ │ │ │ ├── AccessInfoImplJpaRepository.java │ │ │ │ │ │ │ ├── AccessInfoListResultImpl.java │ │ │ │ │ │ │ ├── AccessInfoQueryImpl.java │ │ │ │ │ │ │ ├── AccessInfoServiceImpl.java │ │ │ │ │ │ │ ├── AccessPermissionCreatorImpl.java │ │ │ │ │ │ │ ├── AccessPermissionFactoryImpl.java │ │ │ │ │ │ │ ├── AccessPermissionImpl.java │ │ │ │ │ │ │ ├── AccessPermissionImplJpaRepository.java │ │ │ │ │ │ │ ├── AccessPermissionListResultImpl.java │ │ │ │ │ │ │ ├── AccessPermissionQueryImpl.java │ │ │ │ │ │ │ ├── AccessPermissionServiceImpl.java │ │ │ │ │ │ │ ├── AccessRoleCreatorImpl.java │ │ │ │ │ │ │ ├── AccessRoleFactoryImpl.java │ │ │ │ │ │ │ ├── AccessRoleImpl.java │ │ │ │ │ │ │ ├── AccessRoleImplJpaRepository.java │ │ │ │ │ │ │ ├── AccessRoleListResultImpl.java │ │ │ │ │ │ │ ├── AccessRoleQueryImpl.java │ │ │ │ │ │ │ ├── AccessRoleServiceImpl.java │ │ │ │ │ │ │ ├── CachingAccessPermissionRepository.java │ │ │ │ │ │ │ ├── CachingAccessRoleRepository.java │ │ │ │ │ │ │ └── GroupQueryHelperImpl.java │ │ │ │ │ ├── domain │ │ │ │ │ │ └── shiro │ │ │ │ │ │ │ ├── DomainCreatorImpl.java │ │ │ │ │ │ │ ├── DomainFactoryImpl.java │ │ │ │ │ │ │ ├── DomainImpl.java │ │ │ │ │ │ │ ├── DomainImplJpaRepository.java │ │ │ │ │ │ │ ├── DomainListResultImpl.java │ │ │ │ │ │ │ ├── DomainQueryImpl.java │ │ │ │ │ │ │ ├── DomainRegistryServiceImpl.java │ │ │ │ │ │ │ └── DomainsAligner.java │ │ │ │ │ ├── group │ │ │ │ │ │ └── shiro │ │ │ │ │ │ │ ├── GroupCreatorImpl.java │ │ │ │ │ │ │ ├── GroupFactoryImpl.java │ │ │ │ │ │ │ ├── GroupImpl.java │ │ │ │ │ │ │ ├── GroupImplJpaRepository.java │ │ │ │ │ │ │ ├── GroupListResultImpl.java │ │ │ │ │ │ │ ├── GroupMatchPredicateImpl.java │ │ │ │ │ │ │ ├── GroupQueryImpl.java │ │ │ │ │ │ │ └── GroupServiceImpl.java │ │ │ │ │ ├── permission │ │ │ │ │ │ └── shiro │ │ │ │ │ │ │ ├── PermissionFactoryImpl.java │ │ │ │ │ │ │ ├── PermissionImpl.java │ │ │ │ │ │ │ └── PermissionValidator.java │ │ │ │ │ ├── role │ │ │ │ │ │ └── shiro │ │ │ │ │ │ │ ├── RoleCachingRepository.java │ │ │ │ │ │ │ ├── RoleCreatorImpl.java │ │ │ │ │ │ │ ├── RoleFactoryImpl.java │ │ │ │ │ │ │ ├── RoleImpl.java │ │ │ │ │ │ │ ├── RoleImplJpaRepository.java │ │ │ │ │ │ │ ├── RoleListResultImpl.java │ │ │ │ │ │ │ ├── RoleMatchPredicateImpl.java │ │ │ │ │ │ │ ├── RolePermissionCachingRepository.java │ │ │ │ │ │ │ ├── RolePermissionCreatorImpl.java │ │ │ │ │ │ │ ├── RolePermissionFactoryImpl.java │ │ │ │ │ │ │ ├── RolePermissionImpl.java │ │ │ │ │ │ │ ├── RolePermissionImplJpaRepository.java │ │ │ │ │ │ │ ├── RolePermissionListResultImpl.java │ │ │ │ │ │ │ ├── RolePermissionQueryImpl.java │ │ │ │ │ │ │ ├── RolePermissionServiceImpl.java │ │ │ │ │ │ │ ├── RoleQueryImpl.java │ │ │ │ │ │ │ └── RoleServiceImpl.java │ │ │ │ │ └── shiro │ │ │ │ │ │ ├── AuthorizationModule.java │ │ │ │ │ │ ├── AuthorizationServiceImpl.java │ │ │ │ │ │ ├── AuthorizationServiceModule.java │ │ │ │ │ │ ├── GroupServiceConfigurationManagerModule.java │ │ │ │ │ │ ├── KapuaAuthorizingRealm.java │ │ │ │ │ │ ├── PermissionMapper.java │ │ │ │ │ │ ├── PermissionMapperImpl.java │ │ │ │ │ │ ├── RoleServiceConfigurationManagerModule.java │ │ │ │ │ │ ├── claims │ │ │ │ │ │ ├── ClaimsFetcher.java │ │ │ │ │ │ └── ClaimsFetcherImpl.java │ │ │ │ │ │ └── setting │ │ │ │ │ │ ├── KapuaAuthorizationSetting.java │ │ │ │ │ │ └── KapuaAuthorizationSettingKeys.java │ │ │ │ │ └── security │ │ │ │ │ ├── EnhModularRealmAuthorizer.java │ │ │ │ │ └── SecurityUtil.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ ├── metatypes │ │ │ │ │ ├── org.eclipse.kapua.service.authentication.credential.CredentialService.xml │ │ │ │ │ ├── org.eclipse.kapua.service.authorization.group.GroupService.xml │ │ │ │ │ └── org.eclipse.kapua.service.authorization.role.RoleService.xml │ │ │ │ └── persistence.xml │ │ │ │ ├── kapua-authentication-setting.properties │ │ │ │ ├── kapua-authorization-setting.properties │ │ │ │ ├── kapua-crypto-setting.properties │ │ │ │ └── liquibase │ │ │ │ ├── 0.2.0 │ │ │ │ ├── atht_access_token-domain.xml │ │ │ │ ├── atht_access_token.xml │ │ │ │ ├── atht_credential-domain.xml │ │ │ │ ├── atht_credential.xml │ │ │ │ ├── athz_access_info-domain.xml │ │ │ │ ├── athz_access_info.xml │ │ │ │ ├── athz_access_permission.xml │ │ │ │ ├── athz_access_role.xml │ │ │ │ ├── athz_domain-domain.xml │ │ │ │ ├── athz_domain.xml │ │ │ │ ├── athz_domain_actions.xml │ │ │ │ ├── athz_group-configuration.xml │ │ │ │ ├── athz_group-domain.xml │ │ │ │ ├── athz_group.xml │ │ │ │ ├── athz_role-configuration.xml │ │ │ │ ├── athz_role-domain.xml │ │ │ │ ├── athz_role.xml │ │ │ │ ├── athz_role_permission.xml │ │ │ │ ├── changelog-authentication-0.2.0.xml │ │ │ │ ├── changelog-authorization-0.2.0.pre.xml │ │ │ │ └── changelog-authorization-0.2.0.xml │ │ │ │ ├── 0.3.0 │ │ │ │ ├── atht_access_token-id_check_positive.xml │ │ │ │ ├── atht_credential-expiration.xml │ │ │ │ ├── atht_credential-id_check_positive.xml │ │ │ │ ├── atht_credential-lockout_policy.xml │ │ │ │ ├── athz_access_info-id_check_positive.xml │ │ │ │ ├── athz_access_permission-id_check_positive.xml │ │ │ │ ├── athz_access_role-id_check_positive.xml │ │ │ │ ├── athz_domain-id_check_positive.xml │ │ │ │ ├── athz_domain_actions-id_check_positive.xml │ │ │ │ ├── athz_group-id_check_positive.xml │ │ │ │ ├── athz_role-id_check_positive.xml │ │ │ │ ├── athz_role_permission-id_check_positive.xml │ │ │ │ ├── changelog-authentication-0.3.0.xml │ │ │ │ └── changelog-authorization-0.3.0.xml │ │ │ │ ├── 0.3.1 │ │ │ │ ├── athz_domain-add_groupable.xml │ │ │ │ └── changelog-authorization-0.3.1.pre.xml │ │ │ │ ├── 1.0.0 │ │ │ │ ├── atht-access_token-domain.xml │ │ │ │ ├── atht-credential-domain.xml │ │ │ │ ├── atht-sys-housekeeper-run-seed.xml │ │ │ │ ├── athz-access_info-domain.xml │ │ │ │ ├── athz-domain-domain.xml │ │ │ │ ├── athz-group-domain.xml │ │ │ │ ├── athz-role-domain.xml │ │ │ │ ├── athz-sys-housekeeper-run-seed.xml │ │ │ │ ├── athz-sys-housekeeper-update-domain-service.xml │ │ │ │ ├── changelog-authentication-1.0.0.xml │ │ │ │ └── changelog-authorization-1.0.0.xml │ │ │ │ ├── 1.1.0 │ │ │ │ ├── changelog-authorization-1.1.0.xml │ │ │ │ ├── group-description.xml │ │ │ │ └── role-description.xml │ │ │ │ ├── 1.2.0 │ │ │ │ ├── atht-access_token-timestamp.xml │ │ │ │ ├── atht-credential-timestamp.xml │ │ │ │ ├── athz-access_info-timestamp.xml │ │ │ │ ├── athz-access_permission-timestamp.xml │ │ │ │ ├── athz-access_role-timestamp.xml │ │ │ │ ├── athz-domain-timestamp.xml │ │ │ │ ├── athz-group-timestamp.xml │ │ │ │ ├── athz-role-timestamp.xml │ │ │ │ ├── athz-role_permission-timestamp.xml │ │ │ │ ├── changelog-authentication-1.2.0.xml │ │ │ │ └── changelog-authorization-1.2.0.xml │ │ │ │ ├── 1.3.0 │ │ │ │ ├── atht-access_token-expires_index.xml │ │ │ │ ├── atht-access_token-refresh-expires_index.xml │ │ │ │ ├── atht-mfa_option.xml │ │ │ │ ├── atht-scratch_code.xml │ │ │ │ └── changelog-authentication-1.3.0.xml │ │ │ │ ├── 2.0.0 │ │ │ │ ├── atht-newTokenIdentifier.xml │ │ │ │ ├── atht-scratch_code-not_updateable.xml │ │ │ │ └── changelog-authentication-2.0.0.xml │ │ │ │ ├── 2.1.0 │ │ │ │ ├── atht-mfa_option-has_trust_me.xml │ │ │ │ └── changelog-authentication-2.1.0.xml │ │ │ │ ├── changelog-authentication-master.xml │ │ │ │ ├── changelog-authorization-master.pre.xml │ │ │ │ ├── changelog-authorization-master.xml │ │ │ │ └── common-properties.xml │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ ├── authentication │ │ │ │ ├── TestModule.java │ │ │ │ ├── credential │ │ │ │ │ ├── mfa │ │ │ │ │ │ └── shiro │ │ │ │ │ │ │ ├── MfaOptionCreatorImplTest.java │ │ │ │ │ │ │ ├── MfaOptionFactoryImplTest.java │ │ │ │ │ │ │ ├── MfaOptionImplTest.java │ │ │ │ │ │ │ ├── MfaOptionQueryImplTest.java │ │ │ │ │ │ │ ├── ScratchCodeFactoryImplTest.java │ │ │ │ │ │ │ └── ScratchCodeImplTest.java │ │ │ │ │ └── shiro │ │ │ │ │ │ ├── CredentialCreatorImplTest.java │ │ │ │ │ │ ├── CredentialFactoryImplTest.java │ │ │ │ │ │ ├── CredentialImplTest.java │ │ │ │ │ │ ├── CredentialQueryImplTest.java │ │ │ │ │ │ └── CredentialServiceImplTest.java │ │ │ │ ├── shiro │ │ │ │ │ ├── AccessTokenCredentialsImplTest.java │ │ │ │ │ ├── ApiKeyCredentialsImplTest.java │ │ │ │ │ ├── CredentialsFactoryImplTest.java │ │ │ │ │ ├── JwtCredentialsTest.java │ │ │ │ │ ├── RefreshTokenCredentialsImplTest.java │ │ │ │ │ ├── UsernamePasswordCredentialsImplTest.java │ │ │ │ │ ├── exceptions │ │ │ │ │ │ ├── AuthenticationRuntimeExceptionTest.java │ │ │ │ │ │ ├── ExpiredAccountExceptionTest.java │ │ │ │ │ │ ├── JwtCertificateNotFoundExceptionTest.java │ │ │ │ │ │ ├── MfaRequiredExceptionTest.java │ │ │ │ │ │ └── TemporaryLockedAccountExceptionTest.java │ │ │ │ │ ├── mfa │ │ │ │ │ │ ├── MfaAuthenticatorImplTest.java │ │ │ │ │ │ └── MfaAuthenticatorServiceLocatorTest.java │ │ │ │ │ ├── realm │ │ │ │ │ │ ├── AccessTokenCredentialsConverterTest.java │ │ │ │ │ │ ├── ApiKeyCredentialsConverterTest.java │ │ │ │ │ │ ├── ApiKeyCredentialsMatcherTest.java │ │ │ │ │ │ ├── JwtCredentialsConverterTest.java │ │ │ │ │ │ ├── JwtCredentialsMatcherTest.java │ │ │ │ │ │ ├── LoginAuthenticationInfoTest.java │ │ │ │ │ │ ├── SessionAuthenticationInfoTest.java │ │ │ │ │ │ ├── UserPassCredentialsConverterTest.java │ │ │ │ │ │ └── model │ │ │ │ │ │ │ ├── AccessTokenCredentialsAnotherImpl.java │ │ │ │ │ │ │ ├── ApiKeyCredentialsAnotherImpl.java │ │ │ │ │ │ │ ├── JwtCredentialsAnotherImpl.java │ │ │ │ │ │ │ ├── NotProcessableCredentials.java │ │ │ │ │ │ │ ├── NotProcessableCredentialsImpl.java │ │ │ │ │ │ │ └── UsernamePasswordCredentialsAnotherImpl.java │ │ │ │ │ ├── registration │ │ │ │ │ │ └── RegistrationServiceImplTest.java │ │ │ │ │ ├── setting │ │ │ │ │ │ ├── KapuaAuthenticationSettingKeysTest.java │ │ │ │ │ │ └── KapuaCryptoSettingKeysTest.java │ │ │ │ │ └── utils │ │ │ │ │ │ └── AuthenticationUtilsTest.java │ │ │ │ └── token │ │ │ │ │ └── shiro │ │ │ │ │ ├── AccessTokenCreatorImplTest.java │ │ │ │ │ ├── AccessTokenFactoryImplTest.java │ │ │ │ │ ├── AccessTokenImplTest.java │ │ │ │ │ ├── AccessTokenQueryImplTest.java │ │ │ │ │ └── LoginInfoImplTest.java │ │ │ │ ├── authorization │ │ │ │ ├── access │ │ │ │ │ └── shiro │ │ │ │ │ │ ├── AccessInfoCacheTest.java │ │ │ │ │ │ ├── AccessInfoFactoryImplTest.java │ │ │ │ │ │ ├── AccessInfoImplTest.java │ │ │ │ │ │ ├── AccessInfoQueryImplTest.java │ │ │ │ │ │ ├── AccessPermissionCreatorImplTest.java │ │ │ │ │ │ ├── AccessPermissionFactoryImplTest.java │ │ │ │ │ │ ├── AccessPermissionQueryImplTest.java │ │ │ │ │ │ ├── AccessRoleCreatorImplTest.java │ │ │ │ │ │ ├── AccessRoleFactoryImplTest.java │ │ │ │ │ │ ├── AccessRoleImplTest.java │ │ │ │ │ │ ├── AccessRoleQueryImplTest.java │ │ │ │ │ │ └── MockitoLocator.java │ │ │ │ ├── domain │ │ │ │ │ └── shiro │ │ │ │ │ │ ├── DomainCreatorImplTest.java │ │ │ │ │ │ ├── DomainFactoryImplTest.java │ │ │ │ │ │ ├── DomainImplTest.java │ │ │ │ │ │ └── DomainQueryImplTest.java │ │ │ │ ├── group │ │ │ │ │ └── shiro │ │ │ │ │ │ ├── GroupCreatorImplTest.java │ │ │ │ │ │ ├── GroupFactoryImplTest.java │ │ │ │ │ │ ├── GroupImplTest.java │ │ │ │ │ │ └── GroupQueryImplTest.java │ │ │ │ ├── role │ │ │ │ │ └── shiro │ │ │ │ │ │ ├── RoleCreatorImplTest.java │ │ │ │ │ │ ├── RoleFactoryImplTest.java │ │ │ │ │ │ ├── RoleImplTest.java │ │ │ │ │ │ ├── RolePermissionCreatorImplTest.java │ │ │ │ │ │ ├── RolePermissionQueryImplTest.java │ │ │ │ │ │ └── RoleQueryImplTest.java │ │ │ │ └── shiro │ │ │ │ │ ├── KapuaAuthorizingRealmTest.java │ │ │ │ │ └── setting │ │ │ │ │ └── KapuaAuthorizationSettingKeysTest.java │ │ │ │ └── security │ │ │ │ └── EnhModularRealmAuthorizerTest.java │ │ │ └── resources │ │ │ └── locator.xml │ ├── test-steps │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ ├── authentication │ │ │ └── steps │ │ │ │ └── AuthenticationServiceSteps.java │ │ │ └── authorization │ │ │ └── steps │ │ │ ├── AuthorizationModuleTests.java │ │ │ ├── AuthorizationServiceSteps.java │ │ │ └── NoGroupsClaimsFetcher.java │ └── test │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── security │ │ │ └── test │ │ │ ├── RunSecurityUnitTest.java │ │ │ └── SecurityLocatorConfiguration.java │ │ └── resources │ │ ├── features │ │ ├── CredentialServiceUnitTests.feature │ │ ├── GroupServiceUnitTests.feature │ │ └── RoleServiceUnitTests.feature │ │ ├── kapua-environment-setting.properties │ │ ├── locator.xml │ │ └── logback.xml ├── stream │ ├── api │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── stream │ │ │ └── StreamService.java │ ├── internal │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── service │ │ │ │ └── stream │ │ │ │ └── internal │ │ │ │ ├── StreamModule.java │ │ │ │ └── StreamServiceImpl.java │ │ │ └── resources │ │ │ └── liquibase │ │ │ ├── 1.0.0 │ │ │ ├── changelog-stream-1.0.0.xml │ │ │ └── stream-domain.xml │ │ │ └── changelog-stream-master.xml │ └── pom.xml ├── system │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── systeminfo │ │ │ ├── SystemInfo.java │ │ │ ├── SystemInfoFactory.java │ │ │ ├── SystemInfoService.java │ │ │ └── SystemInfoXmlRegistry.java │ ├── internal │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── systeminfo │ │ │ └── internal │ │ │ ├── SystemInfoFactoryImpl.java │ │ │ ├── SystemInfoImpl.java │ │ │ ├── SystemInfoModule.java │ │ │ └── SystemInfoServiceImpl.java │ ├── pom.xml │ ├── test-steps │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── systeminfo │ │ │ └── steps │ │ │ └── SystemInfoSteps.java │ └── test │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── systeminfo │ │ │ └── test │ │ │ ├── RunSystemInfoUnitTest.java │ │ │ └── SystemInfoLocatorConfiguration.java │ │ └── resources │ │ ├── features │ │ └── SystemInfoServiceUnitTests.feature │ │ ├── kapua-environment-setting.properties │ │ ├── locator.xml │ │ ├── logback.xml │ │ ├── services │ │ └── org.eclipse.kapua.service.authentication.CredentialsFactory │ │ └── shiro.ini ├── tag │ ├── api │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── tag │ │ │ ├── Tag.java │ │ │ ├── TagAttributes.java │ │ │ ├── TagCreator.java │ │ │ ├── TagFactory.java │ │ │ ├── TagListResult.java │ │ │ ├── TagMatchPredicate.java │ │ │ ├── TagQuery.java │ │ │ ├── TagRepository.java │ │ │ ├── TagService.java │ │ │ ├── TagXmlRegistry.java │ │ │ └── Taggable.java │ ├── internal │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── eclipse │ │ │ │ │ └── kapua │ │ │ │ │ └── service │ │ │ │ │ └── tag │ │ │ │ │ └── internal │ │ │ │ │ ├── TagCreatorImpl.java │ │ │ │ │ ├── TagFactoryImpl.java │ │ │ │ │ ├── TagImpl.java │ │ │ │ │ ├── TagImplJpaRepository.java │ │ │ │ │ ├── TagListResultImpl.java │ │ │ │ │ ├── TagMatchPredicateImpl.java │ │ │ │ │ ├── TagModule.java │ │ │ │ │ ├── TagQueryImpl.java │ │ │ │ │ ├── TagServiceConfigurationManagerModule.java │ │ │ │ │ └── TagServiceImpl.java │ │ │ └── resources │ │ │ │ ├── META-INF │ │ │ │ ├── metatypes │ │ │ │ │ └── org.eclipse.kapua.service.tag.TagService.xml │ │ │ │ └── persistence.xml │ │ │ │ └── liquibase │ │ │ │ ├── 0.3.0 │ │ │ │ ├── changelog-tag-0.3.0.xml │ │ │ │ ├── tag-configuration.xml │ │ │ │ ├── tag-domain.xml │ │ │ │ └── tag.xml │ │ │ │ ├── 1.0.0 │ │ │ │ ├── changelog-tag-1.0.0.xml │ │ │ │ └── tag-domain.xml │ │ │ │ ├── 1.1.0 │ │ │ │ ├── changelog-tag-1.1.0.xml │ │ │ │ └── tag-description.xml │ │ │ │ ├── 1.2.0 │ │ │ │ ├── changelog-tag-1.2.0.xml │ │ │ │ └── tag-timestamp.xml │ │ │ │ ├── changelog-tag-master.xml │ │ │ │ └── common-properties.xml │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── tag │ │ │ └── internal │ │ │ ├── StubPermission.java │ │ │ └── TagServiceImplTest.java │ ├── pom.xml │ ├── test-steps │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── tag │ │ │ └── steps │ │ │ └── TagServiceSteps.java │ └── test │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── tag │ │ │ └── test │ │ │ ├── RunTagUnitTest.java │ │ │ └── TagLocatorConfiguration.java │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.kapua.service.authentication.CredentialsFactory │ │ ├── features │ │ └── TagService.feature │ │ ├── kapua-environment-setting.properties │ │ ├── locator.xml │ │ ├── logback.xml │ │ └── shiro.ini └── user │ ├── api │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── service │ │ └── user │ │ ├── User.java │ │ ├── UserAttributes.java │ │ ├── UserCreator.java │ │ ├── UserFactory.java │ │ ├── UserListResult.java │ │ ├── UserMatchPredicate.java │ │ ├── UserQuery.java │ │ ├── UserRepository.java │ │ ├── UserService.java │ │ ├── UserStatus.java │ │ ├── UserType.java │ │ ├── UserXmlRegistry.java │ │ └── profile │ │ ├── UserProfile.java │ │ ├── UserProfileFactory.java │ │ ├── UserProfileService.java │ │ └── UserProfileXmlRegistry.java │ ├── internal │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── service │ │ │ └── user │ │ │ └── internal │ │ │ ├── UserCachedRepository.java │ │ │ ├── UserCreatorImpl.java │ │ │ ├── UserFactoryImpl.java │ │ │ ├── UserImpl.java │ │ │ ├── UserImplJpaRepository.java │ │ │ ├── UserListResultImpl.java │ │ │ ├── UserMatchPredicateImpl.java │ │ │ ├── UserModule.java │ │ │ ├── UserQueryImpl.java │ │ │ ├── UserServiceConfigurationManagerModule.java │ │ │ ├── UserServiceImpl.java │ │ │ ├── UserServiceModule.java │ │ │ ├── profile │ │ │ ├── UserProfileFactoryImpl.java │ │ │ ├── UserProfileImpl.java │ │ │ ├── UserProfileModule.java │ │ │ └── UserProfileServiceImpl.java │ │ │ └── setting │ │ │ ├── KapuaUserSetting.java │ │ │ └── KapuaUserSettingKeys.java │ │ └── resources │ │ ├── META-INF │ │ ├── metatypes │ │ │ └── org.eclipse.kapua.service.user.UserService.xml │ │ └── persistence.xml │ │ ├── kapua-user-setting.properties │ │ └── liquibase │ │ ├── 0.2.0 │ │ ├── changelog-user-0.2.0.xml │ │ ├── user-configuration.xml │ │ ├── user-domain.xml │ │ └── user.xml │ │ ├── 0.3.0 │ │ ├── changelog-user-0.3.0.xml │ │ ├── user-expiration.xml │ │ └── user-id_check_positive.xml │ │ ├── 1.0.0 │ │ ├── changelog-user-1.0.0.xml │ │ ├── user-domain.xml │ │ └── user-sys-housekeeper-run-seed.xml │ │ ├── 1.1.0 │ │ ├── changelog-user-1.1.0.xml │ │ └── user-description.xml │ │ ├── 1.2.0 │ │ ├── changelog-user-1.2.0.xml │ │ └── user-timestamp.xml │ │ ├── 1.5.0 │ │ ├── changelog-user-1.5.0.xml │ │ └── user-name_indexes.xml │ │ ├── 2.0.0 │ │ ├── changelog-user-2.0.0.xml │ │ └── user-external_username.xml │ │ ├── changelog-user-master.xml │ │ └── common-properties.xml │ ├── pom.xml │ ├── test-steps │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── service │ │ └── user │ │ └── steps │ │ ├── ComparableUser.java │ │ ├── UserProfileServiceTest.java │ │ ├── UserRoleServiceSteps.java │ │ └── UserServiceSteps.java │ └── test │ ├── about.html │ ├── pom.xml │ └── src │ └── test │ ├── java │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── service │ │ └── user │ │ └── test │ │ ├── RunUserUnitTest.java │ │ └── UserLocatorConfiguration.java │ └── resources │ ├── META-INF │ └── services │ │ └── org.eclipse.kapua.service.authentication.CredentialsFactory │ ├── features │ └── UserService.feature │ ├── kapua-environment-setting.properties │ ├── locator.xml │ ├── logback.xml │ └── shiro.ini ├── simulator-kura ├── README.md ├── about.html ├── openshift │ ├── README.md │ ├── external-template.yml │ ├── setup-external.sh │ └── setup.sh ├── pom.xml └── src │ ├── main │ ├── docker │ │ ├── kura-simulator.xml │ │ └── logback.xml │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── kura │ │ │ └── simulator │ │ │ ├── AbstractMqttTransport.java │ │ │ ├── GatewayConfiguration.java │ │ │ ├── Module.java │ │ │ ├── MqttAsyncTransport.java │ │ │ ├── Simulator.java │ │ │ ├── Transport.java │ │ │ ├── app │ │ │ ├── AbstractDefaultApplication.java │ │ │ ├── Application.java │ │ │ ├── ApplicationContext.java │ │ │ ├── ApplicationController.java │ │ │ ├── Descriptor.java │ │ │ ├── Handler.java │ │ │ ├── Request.java │ │ │ ├── Sender.java │ │ │ ├── annotated │ │ │ │ ├── AnnotatedApplication.java │ │ │ │ ├── Application.java │ │ │ │ ├── DELETE.java │ │ │ │ ├── EXECUTE.java │ │ │ │ ├── GET.java │ │ │ │ ├── POST.java │ │ │ │ ├── PUT.java │ │ │ │ └── Resource.java │ │ │ ├── command │ │ │ │ ├── AbstractCommandApplication.java │ │ │ │ ├── SimpleCommandApplication.java │ │ │ │ └── package-info.java │ │ │ ├── config │ │ │ │ └── package-info.java │ │ │ ├── data │ │ │ │ ├── AbstractSingleTopicPeriodicGenerator.java │ │ │ │ ├── PeriodicGenerator.java │ │ │ │ └── SimplePeriodicGenerator.java │ │ │ └── deploy │ │ │ │ ├── AbstractDeployApplication.java │ │ │ │ ├── BundleInformation.java │ │ │ │ ├── DeploymentDownloadPackageRequest.java │ │ │ │ ├── DeploymentInstallPackageRequest.java │ │ │ │ ├── DeploymentPackageInformation.java │ │ │ │ ├── DeploymentUninstallPackageRequest.java │ │ │ │ ├── DownloadSimulator.java │ │ │ │ ├── DownloadState.java │ │ │ │ ├── InstallState.java │ │ │ │ ├── SimpleDeployApplication.java │ │ │ │ └── package-info.java │ │ │ ├── birth │ │ │ ├── BirthCertificateBuilder.java │ │ │ └── BirthCertificateModule.java │ │ │ ├── generator │ │ │ ├── Generator.java │ │ │ ├── GeneratorFactories.java │ │ │ ├── GeneratorFactory.java │ │ │ ├── GeneratorScheduler.java │ │ │ ├── Generators.java │ │ │ ├── Payload.java │ │ │ ├── Position.java │ │ │ ├── basic │ │ │ │ ├── AbstractGeneratorFactory.java │ │ │ │ ├── SineGeneratorFactory.java │ │ │ │ ├── StraightPositionGeneratorFactory.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ │ ├── main │ │ │ ├── NameFactories.java │ │ │ ├── NameFactory.java │ │ │ ├── SimulatorRunner.java │ │ │ └── package-info.java │ │ │ ├── payload │ │ │ ├── Message.java │ │ │ ├── Metric.java │ │ │ ├── Metrics.java │ │ │ └── Optional.java │ │ │ ├── proto │ │ │ └── KuraPayloadProto.java │ │ │ ├── simulation │ │ │ ├── Configuration.java │ │ │ ├── Configurations.java │ │ │ ├── ConfiguredSimulation.java │ │ │ ├── JsonReader.java │ │ │ ├── Simulation.java │ │ │ └── package-info.java │ │ │ ├── topic │ │ │ └── Topic.java │ │ │ └── util │ │ │ ├── Documents.java │ │ │ ├── Get.java │ │ │ ├── Hex.java │ │ │ └── package-info.java │ ├── protobuf │ │ └── kurapayload.proto │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.eclipse.kapua.kura.simulator.generator.GeneratorFactory │ └── test │ ├── java │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── kura │ │ └── simulator │ │ ├── SingleTestApplication.java │ │ ├── TestDownloadSimulator.java │ │ └── main │ │ └── simulation │ │ ├── AppTest.java │ │ ├── ConfigurationTest.java │ │ ├── JsonTest.java │ │ └── ValidationTest.java │ └── resources │ ├── example1.json │ ├── logback.xml │ └── org │ └── eclipse │ └── kapua │ └── kura │ └── simulator │ └── main │ └── simulation │ ├── test1.json │ └── test2.json ├── translator ├── api │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── translator │ │ │ ├── Translator.java │ │ │ ├── TranslatorHub.java │ │ │ ├── TranslatorHubImpl.java │ │ │ ├── TranslatorHubModule.java │ │ │ └── exception │ │ │ ├── InvalidBodyContentException.java │ │ │ ├── InvalidBodyEncodingException.java │ │ │ ├── InvalidBodyException.java │ │ │ ├── InvalidChannelException.java │ │ │ ├── InvalidMessageException.java │ │ │ ├── InvalidPayloadException.java │ │ │ ├── TranslateException.java │ │ │ ├── TranslatorErrorCodes.java │ │ │ ├── TranslatorException.java │ │ │ ├── TranslatorNotFoundException.java │ │ │ └── TranslatorRuntimeException.java │ │ └── resources │ │ └── translator-error-messages.properties ├── kapua │ ├── kura │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── translator │ │ │ │ ├── KapuaKuraTranslatorsModule.java │ │ │ │ ├── kapua │ │ │ │ └── kura │ │ │ │ │ ├── AbstractTranslatorKapuaKura.java │ │ │ │ │ ├── MethodDictionaryKapuaKura.java │ │ │ │ │ ├── TranslatorAppAssetKapuaKura.java │ │ │ │ │ ├── TranslatorAppBundleKapuaKura.java │ │ │ │ │ ├── TranslatorAppCommandKapuaKura.java │ │ │ │ │ ├── TranslatorAppConfigurationKapuaKura.java │ │ │ │ │ ├── TranslatorAppPackageKapuaKura.java │ │ │ │ │ ├── TranslatorAppRequestKapuaKura.java │ │ │ │ │ ├── TranslatorAppSnapshotKapuaKura.java │ │ │ │ │ ├── TranslatorDataKapuaKura.java │ │ │ │ │ ├── TranslatorKapuaKuraUtils.java │ │ │ │ │ ├── inventory │ │ │ │ │ ├── TranslatorAppInventoryBundleExecKapuaKura.java │ │ │ │ │ ├── TranslatorAppInventoryContainerExecKapuaKura.java │ │ │ │ │ └── TranslatorAppInventoryEmptyKapuaKura.java │ │ │ │ │ └── keystore │ │ │ │ │ ├── AbstractTranslatorAppKeystoreKapuaKura.java │ │ │ │ │ ├── TranslatorAppKeystoreCertificateKapuaKura.java │ │ │ │ │ ├── TranslatorAppKeystoreCsrKapuaKura.java │ │ │ │ │ ├── TranslatorAppKeystoreKeypairKapuaKura.java │ │ │ │ │ └── TranslatorAppKeystoreQueryKapuaKura.java │ │ │ │ ├── kura │ │ │ │ └── kapua │ │ │ │ │ ├── AbstractSimpleTranslatorResponseKuraKapua.java │ │ │ │ │ ├── AbstractTranslatorKuraKapua.java │ │ │ │ │ ├── AbstractTranslatorResponseKuraKapua.java │ │ │ │ │ ├── TranslatorAppAssetKuraKapua.java │ │ │ │ │ ├── TranslatorAppBundleKuraKapua.java │ │ │ │ │ ├── TranslatorAppCommandKuraKapua.java │ │ │ │ │ ├── TranslatorAppConfigurationKuraKapua.java │ │ │ │ │ ├── TranslatorAppNotifyKuraKapua.java │ │ │ │ │ ├── TranslatorAppPackageKuraKapua.java │ │ │ │ │ ├── TranslatorAppResponseKuraKapua.java │ │ │ │ │ ├── TranslatorAppSnapshotKuraKapua.java │ │ │ │ │ ├── TranslatorDataKuraKapua.java │ │ │ │ │ ├── TranslatorKuraKapuaUtils.java │ │ │ │ │ ├── TranslatorKuraKapuaUtilsImpl.java │ │ │ │ │ ├── TranslatorLifeAppsKuraKapua.java │ │ │ │ │ ├── TranslatorLifeBirthKuraKapua.java │ │ │ │ │ ├── TranslatorLifeDisconnectKuraKapua.java │ │ │ │ │ ├── TranslatorLifeMissingKuraKapua.java │ │ │ │ │ ├── event │ │ │ │ │ └── TranslatorEventConfigurationKuraKapua.java │ │ │ │ │ ├── inventory │ │ │ │ │ ├── AbstractTranslatorAppInventoryKuraKapua.java │ │ │ │ │ ├── TranslatorAppInventoryBundlesKuraKapua.java │ │ │ │ │ ├── TranslatorAppInventoryContainersKuraKapua.java │ │ │ │ │ ├── TranslatorAppInventoryListKuraKapua.java │ │ │ │ │ ├── TranslatorAppInventoryNoContentKuraKapua.java │ │ │ │ │ ├── TranslatorAppInventoryPackagesKuraKapua.java │ │ │ │ │ └── TranslatorAppInventorySystemPackagesKuraKapua.java │ │ │ │ │ └── keystore │ │ │ │ │ ├── AbstractTranslatorAppKeystoreKuraKapua.java │ │ │ │ │ ├── TranslatorAppKeystoreCsrKuraKapua.java │ │ │ │ │ ├── TranslatorAppKeystoreItemKuraKapua.java │ │ │ │ │ ├── TranslatorAppKeystoreItemsKuraKapua.java │ │ │ │ │ ├── TranslatorAppKeystoreNoContentKuraKapua.java │ │ │ │ │ └── TranslatorAppKeystoresKuraKapua.java │ │ │ │ └── setting │ │ │ │ ├── TranslatorKapuaKuraSettingKeys.java │ │ │ │ └── TranslatorKapuaKuraSettings.java │ │ │ └── resources │ │ │ └── translator-kapua-kura-settings.properties │ └── pom.xml ├── kura │ ├── jms │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── translator │ │ │ │ ├── jms │ │ │ │ └── kura │ │ │ │ │ ├── AbstractTranslatorJmsKura.java │ │ │ │ │ ├── JmsKuraTranslatorsModule.java │ │ │ │ │ ├── data │ │ │ │ │ └── TranslatorDataJmsKura.java │ │ │ │ │ ├── event │ │ │ │ │ ├── AbstractTranslatorEventJmsKura.java │ │ │ │ │ └── TranslatorEventConfigurationManagementJmsKura.java │ │ │ │ │ ├── lifecycle │ │ │ │ │ ├── AbstractTranslatorLifecycleJmsKura.java │ │ │ │ │ ├── TranslatorLifeAppsJmsKura.java │ │ │ │ │ ├── TranslatorLifeBirthJmsKura.java │ │ │ │ │ ├── TranslatorLifeDisconnectJmsKura.java │ │ │ │ │ └── TranslatorLifeMissingJmsKura.java │ │ │ │ │ └── notify │ │ │ │ │ └── TranslatorLifeNotifyJmsKura.java │ │ │ │ └── kura │ │ │ │ └── jms │ │ │ │ └── data │ │ │ │ └── TranslatorDataKuraJms.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.kapua.translator.Translator │ ├── mqtt │ │ ├── about.html │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── eclipse │ │ │ │ └── kapua │ │ │ │ └── translator │ │ │ │ ├── KuraMqttTranslatorsModule.java │ │ │ │ ├── kura │ │ │ │ └── mqtt │ │ │ │ │ ├── TranslatorDataKuraMqtt.java │ │ │ │ │ └── TranslatorRequestKuraMqtt.java │ │ │ │ └── mqtt │ │ │ │ └── kura │ │ │ │ ├── TranslatorDataMqttKura.java │ │ │ │ └── TranslatorResponseMqttKura.java │ │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.kapua.translator.Translator │ └── pom.xml ├── pom.xml ├── test-steps │ ├── about.html │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── translator │ │ └── test │ │ └── steps │ │ ├── ExampleTranslator.java │ │ └── TranslatorSteps.java └── test │ ├── about.html │ ├── pom.xml │ └── src │ └── test │ ├── java │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── translator │ │ └── test │ │ ├── RunTranslatorUnitTest.java │ │ └── TranslatorLocatorConfiguration.java │ └── resources │ ├── features │ └── TranslatorUnitTests.feature │ └── shiro.ini └── transport ├── api ├── README.md ├── about.html ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── transport │ │ │ ├── TransportClientConnectOptions.java │ │ │ ├── TransportClientFactory.java │ │ │ ├── TransportFacade.java │ │ │ ├── TransportModule.java │ │ │ ├── exception │ │ │ ├── TransportClientGetException.java │ │ │ ├── TransportClientPoolExhaustedException.java │ │ │ ├── TransportErrorCodes.java │ │ │ ├── TransportException.java │ │ │ ├── TransportSendException.java │ │ │ └── TransportTimeoutException.java │ │ │ ├── message │ │ │ ├── TransportChannel.java │ │ │ ├── TransportMessage.java │ │ │ ├── TransportPayload.java │ │ │ └── pubsub │ │ │ │ └── PubSubTransportMessage.java │ │ │ └── utils │ │ │ └── ClientIdGenerator.java │ └── resources │ │ └── transport-client-error-messages.properties │ └── test │ └── java │ └── org │ └── eclipse │ └── kapua │ └── transport │ ├── exception │ ├── TransportExceptionTest.java │ └── model │ │ ├── TestCodesTransportClientException.java │ │ └── TestTransportMessage.java │ └── utils │ └── ClientIdGeneratorTest.java ├── jms ├── README.md ├── about.html ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── eclipse │ │ └── kapua │ │ └── transport │ │ ├── jms │ │ └── setting │ │ │ ├── JmsClientSetting.java │ │ │ └── JmsClientSettingKeys.java │ │ └── message │ │ └── jms │ │ ├── JmsMessage.java │ │ ├── JmsPayload.java │ │ └── JmsTopic.java │ └── resources │ └── jms-client-setting.properties ├── mqtt ├── README.md ├── about.html ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── eclipse │ │ │ └── kapua │ │ │ └── transport │ │ │ ├── message │ │ │ └── mqtt │ │ │ │ ├── MqttMessage.java │ │ │ │ ├── MqttPayload.java │ │ │ │ └── MqttTopic.java │ │ │ └── mqtt │ │ │ ├── MqttClient.java │ │ │ ├── MqttClientConnectionOptions.java │ │ │ ├── MqttClientFactoryImpl.java │ │ │ ├── MqttFacade.java │ │ │ ├── MqttResponseCallback.java │ │ │ ├── MqttResponseTimeoutTimer.java │ │ │ ├── TransportMqttModule.java │ │ │ ├── exception │ │ │ ├── MqttClientAlreadyConnectedException.java │ │ │ ├── MqttClientCallbackSetException.java │ │ │ ├── MqttClientCleanException.java │ │ │ ├── MqttClientConnectException.java │ │ │ ├── MqttClientDisconnectException.java │ │ │ ├── MqttClientErrorCodes.java │ │ │ ├── MqttClientException.java │ │ │ ├── MqttClientNotConnectedException.java │ │ │ ├── MqttClientPublishException.java │ │ │ ├── MqttClientSubscribeException.java │ │ │ ├── MqttClientTerminateException.java │ │ │ └── MqttClientUnsubscribeException.java │ │ │ ├── pooling │ │ │ ├── MqttClientPool.java │ │ │ ├── PooledMqttClientFactory.java │ │ │ └── setting │ │ │ │ ├── MqttClientPoolSetting.java │ │ │ │ └── MqttClientPoolSettingKeys.java │ │ │ └── setting │ │ │ ├── MqttClientSetting.java │ │ │ └── MqttClientSettingKeys.java │ └── resources │ │ ├── mqtt-client-error-messages.properties │ │ ├── mqtt-client-pool-setting.properties │ │ └── mqtt-client-setting.properties │ └── test │ └── java │ └── org │ └── eclipse │ └── kapua │ └── transport │ └── mqtt │ └── test │ ├── message │ └── mqtt │ │ ├── MqttMessageTest.java │ │ ├── MqttPayloadTest.java │ │ └── MqttTopicTest.java │ └── mqtt │ ├── MqttClientConnectionOptionsTest.java │ └── exception │ └── MqttClientExceptionTest.java └── pom.xml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-on-kapua.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/ISSUE_TEMPLATE/question-on-kapua.md -------------------------------------------------------------------------------- /.github/actions/runTestsTaggedAs/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/actions/runTestsTaggedAs/action.yaml -------------------------------------------------------------------------------- /.github/actions/saveBuiltKapuaArtifacts/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/actions/saveBuiltKapuaArtifacts/action.yaml -------------------------------------------------------------------------------- /.github/actions/setUpMavenCaches/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/actions/setUpMavenCaches/action.yaml -------------------------------------------------------------------------------- /.github/actions/setUpRunner/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/actions/setUpRunner/action.yaml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/kapua-ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/workflows/kapua-ci.yaml -------------------------------------------------------------------------------- /.github/workflows/license-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/workflows/license-check.yaml -------------------------------------------------------------------------------- /.github/workflows/security-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/workflows/security-scan.yaml -------------------------------------------------------------------------------- /.github/workflows/sonarCloud-scan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.github/workflows/sonarCloud-scan.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/README.md -------------------------------------------------------------------------------- /RunTests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/RunTests.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/SECURITY.md -------------------------------------------------------------------------------- /UPGRADE_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/UPGRADE_NOTES.md -------------------------------------------------------------------------------- /assembly/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/README.md -------------------------------------------------------------------------------- /assembly/api/descriptors/kapua-api-jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/api/descriptors/kapua-api-jetty.xml -------------------------------------------------------------------------------- /assembly/api/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/api/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/api/entrypoint/run-api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/api/entrypoint/run-api -------------------------------------------------------------------------------- /assembly/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/api/pom.xml -------------------------------------------------------------------------------- /assembly/api/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/api/resources/index.html -------------------------------------------------------------------------------- /assembly/api/resources/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/api/resources/style.css -------------------------------------------------------------------------------- /assembly/broker-artemis/configurations/artemis.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/broker-artemis/configurations/artemis.profile -------------------------------------------------------------------------------- /assembly/broker-artemis/configurations/bootstrap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/broker-artemis/configurations/bootstrap.xml -------------------------------------------------------------------------------- /assembly/broker-artemis/configurations/broker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/broker-artemis/configurations/broker.xml -------------------------------------------------------------------------------- /assembly/broker-artemis/configurations/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/broker-artemis/configurations/locator.xml -------------------------------------------------------------------------------- /assembly/broker-artemis/configurations/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/broker-artemis/configurations/logback.xml -------------------------------------------------------------------------------- /assembly/broker-artemis/configurations/login.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/broker-artemis/configurations/login.config -------------------------------------------------------------------------------- /assembly/broker-artemis/descriptors/kapua-broker-artemis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/broker-artemis/descriptors/kapua-broker-artemis.xml -------------------------------------------------------------------------------- /assembly/broker-artemis/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/broker-artemis/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/broker-artemis/entrypoint/run-broker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/broker-artemis/entrypoint/run-broker -------------------------------------------------------------------------------- /assembly/broker-artemis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/broker-artemis/pom.xml -------------------------------------------------------------------------------- /assembly/console/descriptors/kapua-console-jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/console/descriptors/kapua-console-jetty.xml -------------------------------------------------------------------------------- /assembly/console/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/console/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/console/entrypoint/run-console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/console/entrypoint/run-console -------------------------------------------------------------------------------- /assembly/console/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/console/pom.xml -------------------------------------------------------------------------------- /assembly/consumer/lifecycle/descriptors/kapua-consumer-lifecycle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/consumer/lifecycle/descriptors/kapua-consumer-lifecycle.xml -------------------------------------------------------------------------------- /assembly/consumer/lifecycle/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/consumer/lifecycle/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/consumer/lifecycle/entrypoint/run-consumer-lifecycle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/consumer/lifecycle/entrypoint/run-consumer-lifecycle -------------------------------------------------------------------------------- /assembly/consumer/lifecycle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/consumer/lifecycle/pom.xml -------------------------------------------------------------------------------- /assembly/consumer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/consumer/pom.xml -------------------------------------------------------------------------------- /assembly/consumer/telemetry/descriptors/kapua-consumer-telemetry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/consumer/telemetry/descriptors/kapua-consumer-telemetry.xml -------------------------------------------------------------------------------- /assembly/consumer/telemetry/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/consumer/telemetry/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/consumer/telemetry/entrypoint/run-consumer-telemetry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/consumer/telemetry/entrypoint/run-consumer-telemetry -------------------------------------------------------------------------------- /assembly/consumer/telemetry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/consumer/telemetry/pom.xml -------------------------------------------------------------------------------- /assembly/events-broker/configurations/broker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/events-broker/configurations/broker.xml -------------------------------------------------------------------------------- /assembly/events-broker/descriptors/kapua-events-broker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/events-broker/descriptors/kapua-events-broker.xml -------------------------------------------------------------------------------- /assembly/events-broker/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/events-broker/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/events-broker/entrypoint/run-event-broker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/events-broker/entrypoint/run-event-broker -------------------------------------------------------------------------------- /assembly/events-broker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/events-broker/pom.xml -------------------------------------------------------------------------------- /assembly/java-base/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/java-base/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/java-base/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/java-base/pom.xml -------------------------------------------------------------------------------- /assembly/jetty-base/descriptors/jetty-base.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/jetty-base/descriptors/jetty-base.xml -------------------------------------------------------------------------------- /assembly/jetty-base/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/jetty-base/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/jetty-base/entrypoint/run-jetty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/jetty-base/entrypoint/run-jetty -------------------------------------------------------------------------------- /assembly/jetty-base/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/jetty-base/pom.xml -------------------------------------------------------------------------------- /assembly/job-engine/descriptors/kapua-job-engine-jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/job-engine/descriptors/kapua-job-engine-jetty.xml -------------------------------------------------------------------------------- /assembly/job-engine/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/job-engine/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/job-engine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/job-engine/pom.xml -------------------------------------------------------------------------------- /assembly/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/pom.xml -------------------------------------------------------------------------------- /assembly/service/authentication/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/service/authentication/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/service/authentication/entrypoint/run-service-authentication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/service/authentication/entrypoint/run-service-authentication -------------------------------------------------------------------------------- /assembly/service/authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/service/authentication/pom.xml -------------------------------------------------------------------------------- /assembly/service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/service/pom.xml -------------------------------------------------------------------------------- /assembly/sql/descriptors/kapua-sql.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/sql/descriptors/kapua-sql.xml -------------------------------------------------------------------------------- /assembly/sql/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/sql/docker/Dockerfile -------------------------------------------------------------------------------- /assembly/sql/entrypoint/run-h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/sql/entrypoint/run-h2 -------------------------------------------------------------------------------- /assembly/sql/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/assembly/sql/pom.xml -------------------------------------------------------------------------------- /broker/artemis/plugin/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/broker/artemis/plugin/about.html -------------------------------------------------------------------------------- /broker/artemis/plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/broker/artemis/plugin/pom.xml -------------------------------------------------------------------------------- /broker/artemis/plugin/src/main/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/broker/artemis/plugin/src/main/resources/locator.xml -------------------------------------------------------------------------------- /broker/artemis/plugin/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/broker/artemis/plugin/src/test/resources/logback.xml -------------------------------------------------------------------------------- /broker/artemis/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/broker/artemis/pom.xml -------------------------------------------------------------------------------- /broker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/broker/pom.xml -------------------------------------------------------------------------------- /ci-output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/ci-output.sh -------------------------------------------------------------------------------- /client/cloud/generate-client-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/cloud/generate-client-java.sh -------------------------------------------------------------------------------- /client/gateway/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/api/about.html -------------------------------------------------------------------------------- /client/gateway/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/api/pom.xml -------------------------------------------------------------------------------- /client/gateway/features/karaf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/features/karaf/pom.xml -------------------------------------------------------------------------------- /client/gateway/features/karaf/src/main/feature/feature.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/features/karaf/src/main/feature/feature.xml -------------------------------------------------------------------------------- /client/gateway/features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/features/pom.xml -------------------------------------------------------------------------------- /client/gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/pom.xml -------------------------------------------------------------------------------- /client/gateway/profile/kura/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/profile/kura/about.html -------------------------------------------------------------------------------- /client/gateway/profile/kura/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/profile/kura/pom.xml -------------------------------------------------------------------------------- /client/gateway/profile/kura/src/main/protobuf/kurapayload.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/profile/kura/src/main/protobuf/kurapayload.proto -------------------------------------------------------------------------------- /client/gateway/provider/fuse/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/provider/fuse/about.html -------------------------------------------------------------------------------- /client/gateway/provider/fuse/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/provider/fuse/pom.xml -------------------------------------------------------------------------------- /client/gateway/provider/mqtt/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/provider/mqtt/about.html -------------------------------------------------------------------------------- /client/gateway/provider/mqtt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/provider/mqtt/pom.xml -------------------------------------------------------------------------------- /client/gateway/provider/paho/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/provider/paho/about.html -------------------------------------------------------------------------------- /client/gateway/provider/paho/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/provider/paho/pom.xml -------------------------------------------------------------------------------- /client/gateway/provider/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/provider/pom.xml -------------------------------------------------------------------------------- /client/gateway/spi/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/spi/about.html -------------------------------------------------------------------------------- /client/gateway/spi/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/gateway/spi/pom.xml -------------------------------------------------------------------------------- /client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/pom.xml -------------------------------------------------------------------------------- /client/security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/client/security/pom.xml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/codecov.yml -------------------------------------------------------------------------------- /commons-rest/errors/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons-rest/errors/about.html -------------------------------------------------------------------------------- /commons-rest/errors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons-rest/errors/pom.xml -------------------------------------------------------------------------------- /commons-rest/filters/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons-rest/filters/about.html -------------------------------------------------------------------------------- /commons-rest/filters/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons-rest/filters/pom.xml -------------------------------------------------------------------------------- /commons-rest/model/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons-rest/model/about.html -------------------------------------------------------------------------------- /commons-rest/model/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons-rest/model/pom.xml -------------------------------------------------------------------------------- /commons-rest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons-rest/pom.xml -------------------------------------------------------------------------------- /commons/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/about.html -------------------------------------------------------------------------------- /commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/pom.xml -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/CommonsModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/CommonsModule.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/about/AboutEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/about/AboutEntry.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/cache/Cache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/cache/Cache.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/cache/LocalCache.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/cache/LocalCache.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/event/ServiceMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/event/ServiceMap.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/jpa/CacheFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/jpa/CacheFactory.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/jpa/DataSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/jpa/DataSource.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/jpa/EventStorer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/jpa/EventStorer.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/jpa/JpaTxContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/jpa/JpaTxContext.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/util/ClassUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/util/ClassUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/util/Payloads.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/util/Payloads.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/util/RandomUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/util/RandomUtils.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/util/StringUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/util/StringUtil.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/util/SystemUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/util/SystemUtils.java -------------------------------------------------------------------------------- /commons/src/main/java/org/eclipse/kapua/commons/util/xml/XmlUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/java/org/eclipse/kapua/commons/util/xml/XmlUtil.java -------------------------------------------------------------------------------- /commons/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /commons/src/main/resources/crypto-error-messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/resources/crypto-error-messages.properties -------------------------------------------------------------------------------- /commons/src/main/resources/crypto-settings.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/resources/crypto-settings.properties -------------------------------------------------------------------------------- /commons/src/main/resources/kapua-environment-setting.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/resources/kapua-environment-setting.properties -------------------------------------------------------------------------------- /commons/src/main/resources/liquibase-client-settings.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/resources/liquibase-client-settings.properties -------------------------------------------------------------------------------- /commons/src/main/resources/liquibase/1.0.0/changelog-event-store.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/resources/liquibase/1.0.0/changelog-event-store.xml -------------------------------------------------------------------------------- /commons/src/main/resources/liquibase/1.0.0/sys-event-store.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/resources/liquibase/1.0.0/sys-event-store.xml -------------------------------------------------------------------------------- /commons/src/main/resources/liquibase/1.0.0/sys-housekeeper-run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/resources/liquibase/1.0.0/sys-housekeeper-run.xml -------------------------------------------------------------------------------- /commons/src/main/resources/liquibase/common-properties.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/main/resources/liquibase/common-properties.xml -------------------------------------------------------------------------------- /commons/src/test/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /commons/src/test/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/test/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /commons/src/test/resources/crypto-settings.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/test/resources/crypto-settings.properties -------------------------------------------------------------------------------- /commons/src/test/resources/kapua-environment-setting.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/test/resources/kapua-environment-setting.properties -------------------------------------------------------------------------------- /commons/src/test/resources/liquibase/liquibase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/test/resources/liquibase/liquibase.sql -------------------------------------------------------------------------------- /commons/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/test/resources/locator.xml -------------------------------------------------------------------------------- /commons/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/test/resources/logback.xml -------------------------------------------------------------------------------- /commons/src/test/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/test/resources/test.properties -------------------------------------------------------------------------------- /commons/src/test/sql/H2/test_collision_entity_test_create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/commons/src/test/sql/H2/test_collision_entity_test_create.sql -------------------------------------------------------------------------------- /console/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/.gitignore -------------------------------------------------------------------------------- /console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/README.md -------------------------------------------------------------------------------- /console/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/about.html -------------------------------------------------------------------------------- /console/core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/core/about.html -------------------------------------------------------------------------------- /console/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/core/pom.xml -------------------------------------------------------------------------------- /console/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/epl-2.0.html -------------------------------------------------------------------------------- /console/module/about/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/about/about.html -------------------------------------------------------------------------------- /console/module/about/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/about/pom.xml -------------------------------------------------------------------------------- /console/module/account/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/account/about.html -------------------------------------------------------------------------------- /console/module/account/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/account/pom.xml -------------------------------------------------------------------------------- /console/module/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/api/about.html -------------------------------------------------------------------------------- /console/module/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/api/pom.xml -------------------------------------------------------------------------------- /console/module/authentication/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/authentication/about.html -------------------------------------------------------------------------------- /console/module/authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/authentication/pom.xml -------------------------------------------------------------------------------- /console/module/authorization/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/authorization/about.html -------------------------------------------------------------------------------- /console/module/authorization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/authorization/pom.xml -------------------------------------------------------------------------------- /console/module/certificate/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/certificate/about.html -------------------------------------------------------------------------------- /console/module/certificate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/certificate/pom.xml -------------------------------------------------------------------------------- /console/module/data/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/data/about.html -------------------------------------------------------------------------------- /console/module/data/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/data/pom.xml -------------------------------------------------------------------------------- /console/module/device/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/device/about.html -------------------------------------------------------------------------------- /console/module/device/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/device/pom.xml -------------------------------------------------------------------------------- /console/module/endpoint/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/endpoint/about.html -------------------------------------------------------------------------------- /console/module/endpoint/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/endpoint/pom.xml -------------------------------------------------------------------------------- /console/module/job/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/job/about.html -------------------------------------------------------------------------------- /console/module/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/job/pom.xml -------------------------------------------------------------------------------- /console/module/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/pom.xml -------------------------------------------------------------------------------- /console/module/tag/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/tag/about.html -------------------------------------------------------------------------------- /console/module/tag/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/tag/pom.xml -------------------------------------------------------------------------------- /console/module/user/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/user/about.html -------------------------------------------------------------------------------- /console/module/user/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/user/pom.xml -------------------------------------------------------------------------------- /console/module/welcome/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/welcome/about.html -------------------------------------------------------------------------------- /console/module/welcome/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/module/welcome/pom.xml -------------------------------------------------------------------------------- /console/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/notice.html -------------------------------------------------------------------------------- /console/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/pom.xml -------------------------------------------------------------------------------- /console/web/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/about.html -------------------------------------------------------------------------------- /console/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/pom.xml -------------------------------------------------------------------------------- /console/web/src/main/resources/console-setting.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/resources/console-setting.properties -------------------------------------------------------------------------------- /console/web/src/main/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/resources/locator.xml -------------------------------------------------------------------------------- /console/web/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/resources/logback.xml -------------------------------------------------------------------------------- /console/web/src/main/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/resources/shiro.ini -------------------------------------------------------------------------------- /console/web/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /console/web/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /console/web/src/main/webapp/console.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/console.jsp -------------------------------------------------------------------------------- /console/web/src/main/webapp/css/console.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/css/console.css -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/css/font-awesome.css -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/animated.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/core.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/fixed-width.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/font-awesome.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/icons.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/larger.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/list.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/mixins.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/path.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/stacked.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/less/variables.less -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_animated.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_core.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_icons.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_larger.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_list.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_mixins.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_path.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_stacked.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/_variables.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/fontAwesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/fontAwesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/button/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/button/arrow_down.png -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/icon-color.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/icon-color.ico -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/icon-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/icon-color.svg -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/login-background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/login-background.jpeg -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/logo-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/logo-color.svg -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/logo-white.svg -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/mfa/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/mfa/android.png -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/mfa/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/mfa/apple.png -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/mfa/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/mfa/blank.png -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/misc/horizontal_splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/misc/horizontal_splitter.png -------------------------------------------------------------------------------- /console/web/src/main/webapp/img/misc/vertical_splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/img/misc/vertical_splitter.png -------------------------------------------------------------------------------- /console/web/src/main/webapp/js/kapuaconsole/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/main/webapp/js/kapuaconsole/console.js -------------------------------------------------------------------------------- /console/web/src/test/java/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /console/web/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/console/web/src/test/resources/logback.xml -------------------------------------------------------------------------------- /consumer/lifecycle-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/lifecycle-app/pom.xml -------------------------------------------------------------------------------- /consumer/lifecycle-app/src/main/resources/camel/camel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/lifecycle-app/src/main/resources/camel/camel.xml -------------------------------------------------------------------------------- /consumer/lifecycle-app/src/main/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/lifecycle-app/src/main/resources/locator.xml -------------------------------------------------------------------------------- /consumer/lifecycle-app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/lifecycle-app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /consumer/lifecycle-app/src/main/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/lifecycle-app/src/main/resources/shiro.ini -------------------------------------------------------------------------------- /consumer/lifecycle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/lifecycle/pom.xml -------------------------------------------------------------------------------- /consumer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/pom.xml -------------------------------------------------------------------------------- /consumer/telemetry-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/telemetry-app/pom.xml -------------------------------------------------------------------------------- /consumer/telemetry-app/src/main/resources/camel/camel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/telemetry-app/src/main/resources/camel/camel.xml -------------------------------------------------------------------------------- /consumer/telemetry-app/src/main/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/telemetry-app/src/main/resources/locator.xml -------------------------------------------------------------------------------- /consumer/telemetry-app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/telemetry-app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /consumer/telemetry-app/src/main/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/telemetry-app/src/main/resources/shiro.ini -------------------------------------------------------------------------------- /consumer/telemetry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/consumer/telemetry/pom.xml -------------------------------------------------------------------------------- /deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/README.md -------------------------------------------------------------------------------- /deployment/commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/commons/pom.xml -------------------------------------------------------------------------------- /deployment/commons/sso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/commons/sso/README.md -------------------------------------------------------------------------------- /deployment/commons/sso/keycloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/commons/sso/keycloak/README.md -------------------------------------------------------------------------------- /deployment/commons/sso/keycloak/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/commons/sso/keycloak/build -------------------------------------------------------------------------------- /deployment/commons/sso/keycloak/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/commons/sso/keycloak/docker/Dockerfile -------------------------------------------------------------------------------- /deployment/commons/sso/keycloak/entrypoint/run-keycloak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/commons/sso/keycloak/entrypoint/run-keycloak -------------------------------------------------------------------------------- /deployment/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/README.md -------------------------------------------------------------------------------- /deployment/docker/compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/docker-compose.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.api-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.api-dev.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.broker-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.broker-debug.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.broker-jmx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.broker-jmx.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.broker-ssl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.broker-ssl.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.console-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.console-debug.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.console-jmx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.console-jmx.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.console-ssl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.console-ssl.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.db-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.db-dev.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.es-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.es-dev.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.es-storage-dir.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.es-storage-dir.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.job-engine-jmx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.job-engine-jmx.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.rest-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.rest-debug.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.rest-jmx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.rest-jmx.yml -------------------------------------------------------------------------------- /deployment/docker/compose/extras/docker-compose.rest-ssl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/extras/docker-compose.rest-ssl.yml -------------------------------------------------------------------------------- /deployment/docker/compose/sso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/sso/README.md -------------------------------------------------------------------------------- /deployment/docker/compose/sso/docker-compose.console-sso.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/sso/docker-compose.console-sso.yml -------------------------------------------------------------------------------- /deployment/docker/compose/sso/docker-compose.keycloak.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/sso/docker-compose.keycloak.yml -------------------------------------------------------------------------------- /deployment/docker/compose/sso/docker-compose.rest-api-sso.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/compose/sso/docker-compose.rest-api-sso.yml -------------------------------------------------------------------------------- /deployment/docker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/pom.xml -------------------------------------------------------------------------------- /deployment/docker/unix/configure-certificates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/unix/configure-certificates.sh -------------------------------------------------------------------------------- /deployment/docker/unix/docker-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/unix/docker-common.sh -------------------------------------------------------------------------------- /deployment/docker/unix/docker-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/unix/docker-deploy.sh -------------------------------------------------------------------------------- /deployment/docker/unix/docker-logs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/unix/docker-logs.sh -------------------------------------------------------------------------------- /deployment/docker/unix/docker-undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/unix/docker-undeploy.sh -------------------------------------------------------------------------------- /deployment/docker/unix/sso/console/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/unix/sso/console/Dockerfile -------------------------------------------------------------------------------- /deployment/docker/unix/sso/docker-common-sso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/unix/sso/docker-common-sso.sh -------------------------------------------------------------------------------- /deployment/docker/unix/sso/docker-sso-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/unix/sso/docker-sso-config.sh -------------------------------------------------------------------------------- /deployment/docker/unix/sso/rest-api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/unix/sso/rest-api/Dockerfile -------------------------------------------------------------------------------- /deployment/docker/win/docker-common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/win/docker-common.ps1 -------------------------------------------------------------------------------- /deployment/docker/win/docker-deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/win/docker-deploy.ps1 -------------------------------------------------------------------------------- /deployment/docker/win/docker-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/win/docker-logs.ps1 -------------------------------------------------------------------------------- /deployment/docker/win/docker-undeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/docker/win/docker-undeploy.ps1 -------------------------------------------------------------------------------- /deployment/minishift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/README.md -------------------------------------------------------------------------------- /deployment/minishift/minishift-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/minishift-deploy.sh -------------------------------------------------------------------------------- /deployment/minishift/minishift-destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/minishift-destroy.sh -------------------------------------------------------------------------------- /deployment/minishift/minishift-importer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/minishift-importer.sh -------------------------------------------------------------------------------- /deployment/minishift/minishift-initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/minishift-initialize.sh -------------------------------------------------------------------------------- /deployment/minishift/minishift-pull-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/minishift-pull-images.sh -------------------------------------------------------------------------------- /deployment/minishift/minishift-undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/minishift-undeploy.sh -------------------------------------------------------------------------------- /deployment/minishift/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/pom.xml -------------------------------------------------------------------------------- /deployment/minishift/sso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/sso/README.md -------------------------------------------------------------------------------- /deployment/minishift/sso/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/sso/activate -------------------------------------------------------------------------------- /deployment/minishift/sso/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/sso/deploy -------------------------------------------------------------------------------- /deployment/minishift/sso/keycloak-importer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/sso/keycloak-importer -------------------------------------------------------------------------------- /deployment/minishift/sso/undeploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/minishift/sso/undeploy -------------------------------------------------------------------------------- /deployment/openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/README.md -------------------------------------------------------------------------------- /deployment/openshift/openshift-common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/openshift-common.sh -------------------------------------------------------------------------------- /deployment/openshift/openshift-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/openshift-deploy.sh -------------------------------------------------------------------------------- /deployment/openshift/openshift-destroy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/openshift-destroy.sh -------------------------------------------------------------------------------- /deployment/openshift/openshift-initialize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/openshift-initialize.sh -------------------------------------------------------------------------------- /deployment/openshift/openshift-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/openshift-start.sh -------------------------------------------------------------------------------- /deployment/openshift/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/pom.xml -------------------------------------------------------------------------------- /deployment/openshift/sso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/sso/README.md -------------------------------------------------------------------------------- /deployment/openshift/sso/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/sso/activate -------------------------------------------------------------------------------- /deployment/openshift/sso/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/sso/deploy -------------------------------------------------------------------------------- /deployment/openshift/sso/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/sso/destroy -------------------------------------------------------------------------------- /deployment/openshift/sso/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/sso/env -------------------------------------------------------------------------------- /deployment/openshift/sso/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/sso/functions -------------------------------------------------------------------------------- /deployment/openshift/sso/keycloak-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/sso/keycloak-template.yml -------------------------------------------------------------------------------- /deployment/openshift/templates/kapua-template-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/templates/kapua-template-api.yml -------------------------------------------------------------------------------- /deployment/openshift/templates/kapua-template-broker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/templates/kapua-template-broker.yml -------------------------------------------------------------------------------- /deployment/openshift/templates/kapua-template-console.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/templates/kapua-template-console.yml -------------------------------------------------------------------------------- /deployment/openshift/templates/kapua-template-core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/openshift/templates/kapua-template-core.yml -------------------------------------------------------------------------------- /deployment/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/deployment/pom.xml -------------------------------------------------------------------------------- /dev-tools/cucumber-reports/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/dev-tools/cucumber-reports/pom.xml -------------------------------------------------------------------------------- /dev-tools/header/update_year_header.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/dev-tools/header/update_year_header.sh -------------------------------------------------------------------------------- /dev-tools/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/dev-tools/pom.xml -------------------------------------------------------------------------------- /dev-tools/src/main/eclipse/codeStyle/KapuaCleanup_v_1.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/dev-tools/src/main/eclipse/codeStyle/KapuaCleanup_v_1.0.xml -------------------------------------------------------------------------------- /dev-tools/src/main/eclipse/codeStyle/KapuaFormatter_v_2.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/dev-tools/src/main/eclipse/codeStyle/KapuaFormatter_v_2.1.xml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/developer-guide/en/.gitignore: -------------------------------------------------------------------------------- 1 | /_book/ 2 | /node_modules/ 3 | -------------------------------------------------------------------------------- /docs/developer-guide/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/README.md -------------------------------------------------------------------------------- /docs/developer-guide/en/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/book.json -------------------------------------------------------------------------------- /docs/developer-guide/en/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/building.md -------------------------------------------------------------------------------- /docs/developer-guide/en/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/client.md -------------------------------------------------------------------------------- /docs/developer-guide/en/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/database.md -------------------------------------------------------------------------------- /docs/developer-guide/en/ide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/ide.md -------------------------------------------------------------------------------- /docs/developer-guide/en/images/ide/eclipse_ide_001_installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/ide/eclipse_ide_001_installer.png -------------------------------------------------------------------------------- /docs/developer-guide/en/images/ide/eclipse_ide_002_marketplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/ide/eclipse_ide_002_marketplace.png -------------------------------------------------------------------------------- /docs/developer-guide/en/images/ide/eclipse_ide_003_clone_git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/ide/eclipse_ide_003_clone_git.png -------------------------------------------------------------------------------- /docs/developer-guide/en/images/ide/eclipse_ide_004_import_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/ide/eclipse_ide_004_import_1.png -------------------------------------------------------------------------------- /docs/developer-guide/en/images/ide/eclipse_ide_005_import_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/ide/eclipse_ide_005_import_2.png -------------------------------------------------------------------------------- /docs/developer-guide/en/images/ide/eclipse_ide_006_m2e_install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/ide/eclipse_ide_006_m2e_install.png -------------------------------------------------------------------------------- /docs/developer-guide/en/images/ide/eclipse_ide_007_mvn_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/ide/eclipse_ide_007_mvn_run.png -------------------------------------------------------------------------------- /docs/developer-guide/en/images/ide/eclipse_ide_008_add_gensrc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/ide/eclipse_ide_008_add_gensrc.png -------------------------------------------------------------------------------- /docs/developer-guide/en/images/kapua-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/kapua-logo.png -------------------------------------------------------------------------------- /docs/developer-guide/en/images/kapua-reports-main-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/kapua-reports-main-page.png -------------------------------------------------------------------------------- /docs/developer-guide/en/images/kapua-sample-test-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/images/kapua-sample-test-report.png -------------------------------------------------------------------------------- /docs/developer-guide/en/qa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/qa.md -------------------------------------------------------------------------------- /docs/developer-guide/en/running.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/running.md -------------------------------------------------------------------------------- /docs/developer-guide/en/sso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/sso.md -------------------------------------------------------------------------------- /docs/developer-guide/en/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/developer-guide/en/summary.md -------------------------------------------------------------------------------- /docs/kuraKapuaDocs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/kuraKapuaDocs.md -------------------------------------------------------------------------------- /docs/user-manual/en/.gitignore: -------------------------------------------------------------------------------- 1 | /_book/ 2 | -------------------------------------------------------------------------------- /docs/user-manual/en/Permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/Permissions.md -------------------------------------------------------------------------------- /docs/user-manual/en/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/README.md -------------------------------------------------------------------------------- /docs/user-manual/en/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/book.json -------------------------------------------------------------------------------- /docs/user-manual/en/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/community.md -------------------------------------------------------------------------------- /docs/user-manual/en/credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/credentials.md -------------------------------------------------------------------------------- /docs/user-manual/en/images/credential_service_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/images/credential_service_settings.png -------------------------------------------------------------------------------- /docs/user-manual/en/images/kapua-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/images/kapua-logo.png -------------------------------------------------------------------------------- /docs/user-manual/en/images/mfa_enable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/images/mfa_enable.png -------------------------------------------------------------------------------- /docs/user-manual/en/images/mfa_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/images/mfa_login.png -------------------------------------------------------------------------------- /docs/user-manual/en/images/mfa_qr_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/images/mfa_qr_code.png -------------------------------------------------------------------------------- /docs/user-manual/en/images/mfa_user_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/images/mfa_user_view.png -------------------------------------------------------------------------------- /docs/user-manual/en/images/rest-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/images/rest-api.png -------------------------------------------------------------------------------- /docs/user-manual/en/jwt_security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/jwt_security.md -------------------------------------------------------------------------------- /docs/user-manual/en/mfa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/mfa.md -------------------------------------------------------------------------------- /docs/user-manual/en/rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/rest.md -------------------------------------------------------------------------------- /docs/user-manual/en/simulator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/simulator.md -------------------------------------------------------------------------------- /docs/user-manual/en/summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/docs/user-manual/en/summary.md -------------------------------------------------------------------------------- /extras/encryption-migrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/encryption-migrator/README.md -------------------------------------------------------------------------------- /extras/encryption-migrator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/encryption-migrator/pom.xml -------------------------------------------------------------------------------- /extras/encryption-migrator/src/main/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/encryption-migrator/src/main/resources/locator.xml -------------------------------------------------------------------------------- /extras/encryption-migrator/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/encryption-migrator/src/main/resources/logback.xml -------------------------------------------------------------------------------- /extras/es-migrator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/es-migrator/README.md -------------------------------------------------------------------------------- /extras/es-migrator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/es-migrator/pom.xml -------------------------------------------------------------------------------- /extras/es-migrator/src/main/resources/mappings/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/es-migrator/src/main/resources/mappings/channel.json -------------------------------------------------------------------------------- /extras/es-migrator/src/main/resources/mappings/client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/es-migrator/src/main/resources/mappings/client.json -------------------------------------------------------------------------------- /extras/es-migrator/src/main/resources/mappings/metric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/es-migrator/src/main/resources/mappings/metric.json -------------------------------------------------------------------------------- /extras/foreignkeys/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/foreignkeys/about.html -------------------------------------------------------------------------------- /extras/foreignkeys/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/foreignkeys/pom.xml -------------------------------------------------------------------------------- /extras/liquibase-tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/liquibase-tool/README.md -------------------------------------------------------------------------------- /extras/liquibase-tool/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/liquibase-tool/pom.xml -------------------------------------------------------------------------------- /extras/liquibase-tool/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/liquibase-tool/src/main/resources/logback.xml -------------------------------------------------------------------------------- /extras/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/extras/pom.xml -------------------------------------------------------------------------------- /job-engine/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/api/about.html -------------------------------------------------------------------------------- /job-engine/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/api/pom.xml -------------------------------------------------------------------------------- /job-engine/app/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/app/core/pom.xml -------------------------------------------------------------------------------- /job-engine/app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/app/pom.xml -------------------------------------------------------------------------------- /job-engine/app/resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/app/resources/pom.xml -------------------------------------------------------------------------------- /job-engine/app/resources/src/main/resources/openapi/jobEngine.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/app/resources/src/main/resources/openapi/jobEngine.yaml -------------------------------------------------------------------------------- /job-engine/app/resources/src/main/resources/openapi/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/app/resources/src/main/resources/openapi/openapi.yaml -------------------------------------------------------------------------------- /job-engine/app/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/app/web/pom.xml -------------------------------------------------------------------------------- /job-engine/app/web/src/main/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/app/web/src/main/resources/locator.xml -------------------------------------------------------------------------------- /job-engine/app/web/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/app/web/src/main/resources/logback.xml -------------------------------------------------------------------------------- /job-engine/app/web/src/main/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/app/web/src/main/resources/shiro.ini -------------------------------------------------------------------------------- /job-engine/app/web/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/app/web/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /job-engine/client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/client/pom.xml -------------------------------------------------------------------------------- /job-engine/commons/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/commons/about.html -------------------------------------------------------------------------------- /job-engine/commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/commons/pom.xml -------------------------------------------------------------------------------- /job-engine/jbatch/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/jbatch/about.html -------------------------------------------------------------------------------- /job-engine/jbatch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/jbatch/pom.xml -------------------------------------------------------------------------------- /job-engine/jbatch/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/jbatch/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /job-engine/jbatch/src/main/resources/job-engine-setting.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/jbatch/src/main/resources/job-engine-setting.properties -------------------------------------------------------------------------------- /job-engine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/job-engine/pom.xml -------------------------------------------------------------------------------- /locator/guice/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/locator/guice/about.html -------------------------------------------------------------------------------- /locator/guice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/locator/guice/pom.xml -------------------------------------------------------------------------------- /locator/guice/src/main/resources/locator.services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/locator/guice/src/main/resources/locator.services -------------------------------------------------------------------------------- /locator/guice/src/test/resources/locator-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/locator/guice/src/test/resources/locator-1.xml -------------------------------------------------------------------------------- /locator/guice/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/locator/guice/src/test/resources/locator.xml -------------------------------------------------------------------------------- /locator/guice/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/locator/guice/src/test/resources/logback.xml -------------------------------------------------------------------------------- /locator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/locator/pom.xml -------------------------------------------------------------------------------- /message/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/api/about.html -------------------------------------------------------------------------------- /message/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/api/pom.xml -------------------------------------------------------------------------------- /message/api/src/main/java/org/eclipse/kapua/message/Channel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/api/src/main/java/org/eclipse/kapua/message/Channel.java -------------------------------------------------------------------------------- /message/api/src/main/java/org/eclipse/kapua/message/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/api/src/main/java/org/eclipse/kapua/message/Message.java -------------------------------------------------------------------------------- /message/api/src/main/java/org/eclipse/kapua/message/Payload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/api/src/main/java/org/eclipse/kapua/message/Payload.java -------------------------------------------------------------------------------- /message/api/src/main/java/org/eclipse/kapua/message/Position.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/api/src/main/java/org/eclipse/kapua/message/Position.java -------------------------------------------------------------------------------- /message/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/internal/about.html -------------------------------------------------------------------------------- /message/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/internal/pom.xml -------------------------------------------------------------------------------- /message/internal/src/test/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /message/internal/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/internal/src/test/resources/locator.xml -------------------------------------------------------------------------------- /message/internal/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/internal/src/test/resources/logback.xml -------------------------------------------------------------------------------- /message/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/message/pom.xml -------------------------------------------------------------------------------- /plug-ins/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/pom.xml -------------------------------------------------------------------------------- /plug-ins/sso/openid-connect/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/sso/openid-connect/api/about.html -------------------------------------------------------------------------------- /plug-ins/sso/openid-connect/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/sso/openid-connect/api/pom.xml -------------------------------------------------------------------------------- /plug-ins/sso/openid-connect/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/sso/openid-connect/pom.xml -------------------------------------------------------------------------------- /plug-ins/sso/openid-connect/provider-generic/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/sso/openid-connect/provider-generic/about.html -------------------------------------------------------------------------------- /plug-ins/sso/openid-connect/provider-generic/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/sso/openid-connect/provider-generic/pom.xml -------------------------------------------------------------------------------- /plug-ins/sso/openid-connect/provider-keycloak/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/sso/openid-connect/provider-keycloak/about.html -------------------------------------------------------------------------------- /plug-ins/sso/openid-connect/provider-keycloak/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/sso/openid-connect/provider-keycloak/pom.xml -------------------------------------------------------------------------------- /plug-ins/sso/openid-connect/provider/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/sso/openid-connect/provider/about.html -------------------------------------------------------------------------------- /plug-ins/sso/openid-connect/provider/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/sso/openid-connect/provider/pom.xml -------------------------------------------------------------------------------- /plug-ins/sso/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/plug-ins/sso/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/pom.xml -------------------------------------------------------------------------------- /qa/.gitignore: -------------------------------------------------------------------------------- 1 | kahadb/ -------------------------------------------------------------------------------- /qa/RunKapuaTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/RunKapuaTests.sh -------------------------------------------------------------------------------- /qa/RunKapuaTests_asGitAction.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/RunKapuaTests_asGitAction.sh -------------------------------------------------------------------------------- /qa/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/about.html -------------------------------------------------------------------------------- /qa/common/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/about.html -------------------------------------------------------------------------------- /qa/common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/pom.xml -------------------------------------------------------------------------------- /qa/common/src/main/java/org/eclipse/kapua/qa/common/DBHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/src/main/java/org/eclipse/kapua/qa/common/DBHelper.java -------------------------------------------------------------------------------- /qa/common/src/main/java/org/eclipse/kapua/qa/common/Ports.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/src/main/java/org/eclipse/kapua/qa/common/Ports.java -------------------------------------------------------------------------------- /qa/common/src/main/java/org/eclipse/kapua/qa/common/Session.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/src/main/java/org/eclipse/kapua/qa/common/Session.java -------------------------------------------------------------------------------- /qa/common/src/main/java/org/eclipse/kapua/qa/common/Starting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/src/main/java/org/eclipse/kapua/qa/common/Starting.java -------------------------------------------------------------------------------- /qa/common/src/main/java/org/eclipse/kapua/qa/common/StepData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/src/main/java/org/eclipse/kapua/qa/common/StepData.java -------------------------------------------------------------------------------- /qa/common/src/main/java/org/eclipse/kapua/qa/common/TestBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/src/main/java/org/eclipse/kapua/qa/common/TestBase.java -------------------------------------------------------------------------------- /qa/common/src/main/java/org/eclipse/kapua/qa/common/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/src/main/java/org/eclipse/kapua/qa/common/Util.java -------------------------------------------------------------------------------- /qa/common/src/main/java/org/eclipse/kapua/qa/common/Wait.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/src/main/java/org/eclipse/kapua/qa/common/Wait.java -------------------------------------------------------------------------------- /qa/common/src/main/java/org/eclipse/kapua/qa/common/With.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/src/main/java/org/eclipse/kapua/qa/common/With.java -------------------------------------------------------------------------------- /qa/common/src/main/resources/sql/all_delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/common/src/main/resources/sql/all_delete.sql -------------------------------------------------------------------------------- /qa/integration-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration-steps/about.html -------------------------------------------------------------------------------- /qa/integration-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration-steps/pom.xml -------------------------------------------------------------------------------- /qa/integration/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/about.html -------------------------------------------------------------------------------- /qa/integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/pom.xml -------------------------------------------------------------------------------- /qa/integration/src/test/protobuf/kurapayload.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/protobuf/kurapayload.proto -------------------------------------------------------------------------------- /qa/integration/src/test/resources/activemq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/activemq.xml -------------------------------------------------------------------------------- /qa/integration/src/test/resources/camel-experimental.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/camel-experimental.xml -------------------------------------------------------------------------------- /qa/integration/src/test/resources/certificates/certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/certificates/certificate.pem -------------------------------------------------------------------------------- /qa/integration/src/test/resources/certificates/jwt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/certificates/jwt/README.md -------------------------------------------------------------------------------- /qa/integration/src/test/resources/certificates/jwt/test.cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/certificates/jwt/test.cert -------------------------------------------------------------------------------- /qa/integration/src/test/resources/certificates/jwt/test.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/certificates/jwt/test.key -------------------------------------------------------------------------------- /qa/integration/src/test/resources/certificates/key.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/certificates/key.pk8 -------------------------------------------------------------------------------- /qa/integration/src/test/resources/credentials.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/credentials.properties -------------------------------------------------------------------------------- /qa/integration/src/test/resources/features/tag/TagI9n.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/features/tag/TagI9n.feature -------------------------------------------------------------------------------- /qa/integration/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/locator.xml -------------------------------------------------------------------------------- /qa/integration/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/logback.xml -------------------------------------------------------------------------------- /qa/integration/src/test/resources/mqtt/rpione3_MQTT_BIRTH.mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/mqtt/rpione3_MQTT_BIRTH.mqtt -------------------------------------------------------------------------------- /qa/integration/src/test/resources/mqtt/rpione3_MQTT_DC.mqtt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/mqtt/rpione3_MQTT_DC.mqtt -------------------------------------------------------------------------------- /qa/integration/src/test/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/integration/src/test/resources/shiro.ini -------------------------------------------------------------------------------- /qa/markers/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/markers/about.html -------------------------------------------------------------------------------- /qa/markers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/markers/pom.xml -------------------------------------------------------------------------------- /qa/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/qa/pom.xml -------------------------------------------------------------------------------- /rest-api/core/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/core/about.html -------------------------------------------------------------------------------- /rest-api/core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/core/pom.xml -------------------------------------------------------------------------------- /rest-api/core/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/core/src/test/resources/locator.xml -------------------------------------------------------------------------------- /rest-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/pom.xml -------------------------------------------------------------------------------- /rest-api/resources/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/about.html -------------------------------------------------------------------------------- /rest-api/resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/pom.xml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/account/account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/account/account.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/device/device.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/device/device.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/domain/domain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/domain/domain.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/group/group.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/group/group.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/job/job-scopeId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/job/job-scopeId.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/job/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/job/job.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/jobStep/jobStep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/jobStep/jobStep.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/openapi.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/role/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/role/role.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/tag/tag-scopeId.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/tag/tag-scopeId.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/tag/tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/tag/tag.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/user/user.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/user/user.yaml -------------------------------------------------------------------------------- /rest-api/resources/src/main/resources/openapi/userMfa/userMfa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/resources/src/main/resources/openapi/userMfa/userMfa.yaml -------------------------------------------------------------------------------- /rest-api/web/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/web/about.html -------------------------------------------------------------------------------- /rest-api/web/epl-2.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/web/epl-2.0.html -------------------------------------------------------------------------------- /rest-api/web/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/web/notice.html -------------------------------------------------------------------------------- /rest-api/web/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/web/pom.xml -------------------------------------------------------------------------------- /rest-api/web/src/main/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/web/src/main/resources/locator.xml -------------------------------------------------------------------------------- /rest-api/web/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/web/src/main/resources/logback.xml -------------------------------------------------------------------------------- /rest-api/web/src/main/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/web/src/main/resources/shiro.ini -------------------------------------------------------------------------------- /rest-api/web/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/web/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /rest-api/web/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/rest-api/web/src/main/webapp/index.html -------------------------------------------------------------------------------- /service/account/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/api/about.html -------------------------------------------------------------------------------- /service/account/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/api/pom.xml -------------------------------------------------------------------------------- /service/account/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/internal/about.html -------------------------------------------------------------------------------- /service/account/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/internal/pom.xml -------------------------------------------------------------------------------- /service/account/internal/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/internal/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/account/internal/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/internal/src/test/resources/logback.xml -------------------------------------------------------------------------------- /service/account/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/pom.xml -------------------------------------------------------------------------------- /service/account/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/test-steps/about.html -------------------------------------------------------------------------------- /service/account/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/test-steps/pom.xml -------------------------------------------------------------------------------- /service/account/test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/test/about.html -------------------------------------------------------------------------------- /service/account/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/test/pom.xml -------------------------------------------------------------------------------- /service/account/test/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/test/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/account/test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /service/account/test/src/test/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/account/test/src/test/resources/shiro.ini -------------------------------------------------------------------------------- /service/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/about.html -------------------------------------------------------------------------------- /service/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/pom.xml -------------------------------------------------------------------------------- /service/api/src/main/java/org/eclipse/kapua/KapuaErrorCode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/src/main/java/org/eclipse/kapua/KapuaErrorCode.java -------------------------------------------------------------------------------- /service/api/src/main/java/org/eclipse/kapua/KapuaErrorCodes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/src/main/java/org/eclipse/kapua/KapuaErrorCodes.java -------------------------------------------------------------------------------- /service/api/src/main/java/org/eclipse/kapua/KapuaException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/src/main/java/org/eclipse/kapua/KapuaException.java -------------------------------------------------------------------------------- /service/api/src/main/java/org/eclipse/kapua/KapuaSerializable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/src/main/java/org/eclipse/kapua/KapuaSerializable.java -------------------------------------------------------------------------------- /service/api/src/main/java/org/eclipse/kapua/model/KapuaEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/src/main/java/org/eclipse/kapua/model/KapuaEntity.java -------------------------------------------------------------------------------- /service/api/src/main/java/org/eclipse/kapua/model/id/KapuaId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/src/main/java/org/eclipse/kapua/model/id/KapuaId.java -------------------------------------------------------------------------------- /service/api/src/main/java/org/eclipse/kapua/storage/TxContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/src/main/java/org/eclipse/kapua/storage/TxContext.java -------------------------------------------------------------------------------- /service/api/src/main/java/org/eclipse/kapua/storage/TxManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/src/main/java/org/eclipse/kapua/storage/TxManager.java -------------------------------------------------------------------------------- /service/api/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/api/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /service/api/src/test/java/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /service/authentication-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/authentication-app/pom.xml -------------------------------------------------------------------------------- /service/authentication-app/src/main/resources/camel/camel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/authentication-app/src/main/resources/camel/camel.xml -------------------------------------------------------------------------------- /service/authentication-app/src/main/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/authentication-app/src/main/resources/locator.xml -------------------------------------------------------------------------------- /service/authentication-app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/authentication-app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /service/authentication-app/src/main/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/authentication-app/src/main/resources/shiro.ini -------------------------------------------------------------------------------- /service/authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/authentication/pom.xml -------------------------------------------------------------------------------- /service/camel/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/camel/pom.xml -------------------------------------------------------------------------------- /service/client/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/client/about.html -------------------------------------------------------------------------------- /service/client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/client/pom.xml -------------------------------------------------------------------------------- /service/client/src/main/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/client/src/main/readme.txt -------------------------------------------------------------------------------- /service/client/src/test/resources/protocol.descriptor/1.properties: -------------------------------------------------------------------------------- 1 | mqtt.transport_protocol=MQTT -------------------------------------------------------------------------------- /service/client/src/test/resources/protocol.descriptor/2.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/client/src/test/resources/protocol.descriptor/2.properties -------------------------------------------------------------------------------- /service/client/src/test/resources/protocol.descriptor/3.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/client/src/test/resources/protocol.descriptor/3.properties -------------------------------------------------------------------------------- /service/commons/elasticsearch/client-api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/elasticsearch/client-api/about.html -------------------------------------------------------------------------------- /service/commons/elasticsearch/client-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/elasticsearch/client-api/pom.xml -------------------------------------------------------------------------------- /service/commons/elasticsearch/client-rest/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/elasticsearch/client-rest/about.html -------------------------------------------------------------------------------- /service/commons/elasticsearch/client-rest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/elasticsearch/client-rest/pom.xml -------------------------------------------------------------------------------- /service/commons/elasticsearch/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/elasticsearch/pom.xml -------------------------------------------------------------------------------- /service/commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/pom.xml -------------------------------------------------------------------------------- /service/commons/storable/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/storable/api/pom.xml -------------------------------------------------------------------------------- /service/commons/storable/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/storable/internal/pom.xml -------------------------------------------------------------------------------- /service/commons/storable/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/storable/pom.xml -------------------------------------------------------------------------------- /service/commons/utils/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/utils/api/pom.xml -------------------------------------------------------------------------------- /service/commons/utils/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/utils/internal/pom.xml -------------------------------------------------------------------------------- /service/commons/utils/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/commons/utils/pom.xml -------------------------------------------------------------------------------- /service/datastore/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/api/about.html -------------------------------------------------------------------------------- /service/datastore/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/api/pom.xml -------------------------------------------------------------------------------- /service/datastore/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/internal/about.html -------------------------------------------------------------------------------- /service/datastore/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/internal/pom.xml -------------------------------------------------------------------------------- /service/datastore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/pom.xml -------------------------------------------------------------------------------- /service/datastore/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/test-steps/about.html -------------------------------------------------------------------------------- /service/datastore/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/test-steps/pom.xml -------------------------------------------------------------------------------- /service/datastore/test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/test/about.html -------------------------------------------------------------------------------- /service/datastore/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/test/pom.xml -------------------------------------------------------------------------------- /service/datastore/test/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/test/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/datastore/test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/datastore/test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /service/device/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/api/about.html -------------------------------------------------------------------------------- /service/device/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/api/pom.xml -------------------------------------------------------------------------------- /service/device/authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/authentication/pom.xml -------------------------------------------------------------------------------- /service/device/call/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/call/api/about.html -------------------------------------------------------------------------------- /service/device/call/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/call/api/pom.xml -------------------------------------------------------------------------------- /service/device/call/kura/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/call/kura/about.html -------------------------------------------------------------------------------- /service/device/call/kura/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/call/kura/pom.xml -------------------------------------------------------------------------------- /service/device/call/kura/src/main/protobuf/kurapayload.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/call/kura/src/main/protobuf/kurapayload.proto -------------------------------------------------------------------------------- /service/device/call/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/call/pom.xml -------------------------------------------------------------------------------- /service/device/commons/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/commons/about.html -------------------------------------------------------------------------------- /service/device/commons/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/commons/pom.xml -------------------------------------------------------------------------------- /service/device/management/all/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/all/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/all/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/all/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/all/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/all/job/pom.xml -------------------------------------------------------------------------------- /service/device/management/all/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/all/pom.xml -------------------------------------------------------------------------------- /service/device/management/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/api/about.html -------------------------------------------------------------------------------- /service/device/management/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/asset-store/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/asset-store/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/asset-store/dummy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/asset-store/dummy/pom.xml -------------------------------------------------------------------------------- /service/device/management/asset-store/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/asset-store/pom.xml -------------------------------------------------------------------------------- /service/device/management/asset/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/asset/api/about.html -------------------------------------------------------------------------------- /service/device/management/asset/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/asset/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/asset/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/asset/internal/about.html -------------------------------------------------------------------------------- /service/device/management/asset/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/asset/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/asset/job/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/asset/job/about.html -------------------------------------------------------------------------------- /service/device/management/asset/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/asset/job/pom.xml -------------------------------------------------------------------------------- /service/device/management/asset/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/asset/pom.xml -------------------------------------------------------------------------------- /service/device/management/bundle/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/bundle/api/about.html -------------------------------------------------------------------------------- /service/device/management/bundle/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/bundle/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/bundle/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/bundle/internal/about.html -------------------------------------------------------------------------------- /service/device/management/bundle/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/bundle/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/bundle/job/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/bundle/job/about.html -------------------------------------------------------------------------------- /service/device/management/bundle/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/bundle/job/pom.xml -------------------------------------------------------------------------------- /service/device/management/bundle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/bundle/pom.xml -------------------------------------------------------------------------------- /service/device/management/command/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/command/api/about.html -------------------------------------------------------------------------------- /service/device/management/command/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/command/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/command/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/command/internal/about.html -------------------------------------------------------------------------------- /service/device/management/command/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/command/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/command/job/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/command/job/about.html -------------------------------------------------------------------------------- /service/device/management/command/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/command/job/pom.xml -------------------------------------------------------------------------------- /service/device/management/command/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/command/pom.xml -------------------------------------------------------------------------------- /service/device/management/configuration-store/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration-store/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/configuration-store/dummy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration-store/dummy/pom.xml -------------------------------------------------------------------------------- /service/device/management/configuration-store/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration-store/pom.xml -------------------------------------------------------------------------------- /service/device/management/configuration/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration/api/about.html -------------------------------------------------------------------------------- /service/device/management/configuration/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/configuration/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration/internal/about.html -------------------------------------------------------------------------------- /service/device/management/configuration/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/configuration/job/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration/job/about.html -------------------------------------------------------------------------------- /service/device/management/configuration/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration/job/pom.xml -------------------------------------------------------------------------------- /service/device/management/configuration/message-api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration/message-api/about.html -------------------------------------------------------------------------------- /service/device/management/configuration/message-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration/message-api/pom.xml -------------------------------------------------------------------------------- /service/device/management/configuration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/configuration/pom.xml -------------------------------------------------------------------------------- /service/device/management/inventory/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/inventory/api/about.html -------------------------------------------------------------------------------- /service/device/management/inventory/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/inventory/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/inventory/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/inventory/internal/about.html -------------------------------------------------------------------------------- /service/device/management/inventory/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/inventory/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/inventory/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/inventory/job/pom.xml -------------------------------------------------------------------------------- /service/device/management/inventory/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/inventory/pom.xml -------------------------------------------------------------------------------- /service/device/management/job/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/job/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/job/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/job/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/job/pom.xml -------------------------------------------------------------------------------- /service/device/management/keystore/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/keystore/api/about.html -------------------------------------------------------------------------------- /service/device/management/keystore/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/keystore/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/keystore/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/keystore/internal/about.html -------------------------------------------------------------------------------- /service/device/management/keystore/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/keystore/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/keystore/job/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/keystore/job/about.html -------------------------------------------------------------------------------- /service/device/management/keystore/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/keystore/job/pom.xml -------------------------------------------------------------------------------- /service/device/management/keystore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/keystore/pom.xml -------------------------------------------------------------------------------- /service/device/management/packages/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/packages/api/about.html -------------------------------------------------------------------------------- /service/device/management/packages/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/packages/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/packages/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/packages/internal/about.html -------------------------------------------------------------------------------- /service/device/management/packages/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/packages/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/packages/job/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/packages/job/about.html -------------------------------------------------------------------------------- /service/device/management/packages/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/packages/job/pom.xml -------------------------------------------------------------------------------- /service/device/management/packages/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/packages/pom.xml -------------------------------------------------------------------------------- /service/device/management/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/pom.xml -------------------------------------------------------------------------------- /service/device/management/registry/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/registry/api/about.html -------------------------------------------------------------------------------- /service/device/management/registry/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/registry/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/registry/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/registry/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/registry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/registry/pom.xml -------------------------------------------------------------------------------- /service/device/management/request/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/request/api/about.html -------------------------------------------------------------------------------- /service/device/management/request/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/request/api/pom.xml -------------------------------------------------------------------------------- /service/device/management/request/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/request/internal/about.html -------------------------------------------------------------------------------- /service/device/management/request/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/request/internal/pom.xml -------------------------------------------------------------------------------- /service/device/management/request/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/management/request/pom.xml -------------------------------------------------------------------------------- /service/device/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/pom.xml -------------------------------------------------------------------------------- /service/device/registry/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/api/about.html -------------------------------------------------------------------------------- /service/device/registry/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/api/pom.xml -------------------------------------------------------------------------------- /service/device/registry/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/internal/about.html -------------------------------------------------------------------------------- /service/device/registry/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/internal/pom.xml -------------------------------------------------------------------------------- /service/device/registry/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/pom.xml -------------------------------------------------------------------------------- /service/device/registry/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/test-steps/about.html -------------------------------------------------------------------------------- /service/device/registry/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/test-steps/pom.xml -------------------------------------------------------------------------------- /service/device/registry/test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/test/about.html -------------------------------------------------------------------------------- /service/device/registry/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/test/pom.xml -------------------------------------------------------------------------------- /service/device/registry/test/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/test/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/device/registry/test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /service/device/registry/test/src/test/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/device/registry/test/src/test/resources/shiro.ini -------------------------------------------------------------------------------- /service/endpoint/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/endpoint/api/pom.xml -------------------------------------------------------------------------------- /service/endpoint/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/endpoint/internal/pom.xml -------------------------------------------------------------------------------- /service/endpoint/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/endpoint/pom.xml -------------------------------------------------------------------------------- /service/endpoint/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/endpoint/test-steps/about.html -------------------------------------------------------------------------------- /service/endpoint/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/endpoint/test-steps/pom.xml -------------------------------------------------------------------------------- /service/job/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/api/about.html -------------------------------------------------------------------------------- /service/job/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/api/pom.xml -------------------------------------------------------------------------------- /service/job/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/internal/about.html -------------------------------------------------------------------------------- /service/job/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/internal/pom.xml -------------------------------------------------------------------------------- /service/job/internal/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/internal/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /service/job/internal/src/main/resources/liquibase/0.3.0/job.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/internal/src/main/resources/liquibase/0.3.0/job.xml -------------------------------------------------------------------------------- /service/job/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/pom.xml -------------------------------------------------------------------------------- /service/job/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/test-steps/about.html -------------------------------------------------------------------------------- /service/job/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/test-steps/pom.xml -------------------------------------------------------------------------------- /service/job/test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/test/about.html -------------------------------------------------------------------------------- /service/job/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/test/pom.xml -------------------------------------------------------------------------------- /service/job/test/src/test/resources/features/JobService.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/test/src/test/resources/features/JobService.feature -------------------------------------------------------------------------------- /service/job/test/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/test/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/job/test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /service/job/test/src/test/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/job/test/src/test/resources/shiro.ini -------------------------------------------------------------------------------- /service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/pom.xml -------------------------------------------------------------------------------- /service/scheduler/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/api/about.html -------------------------------------------------------------------------------- /service/scheduler/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/api/pom.xml -------------------------------------------------------------------------------- /service/scheduler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/pom.xml -------------------------------------------------------------------------------- /service/scheduler/quartz/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/quartz/about.html -------------------------------------------------------------------------------- /service/scheduler/quartz/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/quartz/pom.xml -------------------------------------------------------------------------------- /service/scheduler/quartz/src/main/resources/quartz.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/quartz/src/main/resources/quartz.properties -------------------------------------------------------------------------------- /service/scheduler/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/test-steps/about.html -------------------------------------------------------------------------------- /service/scheduler/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/test-steps/pom.xml -------------------------------------------------------------------------------- /service/scheduler/test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/test/about.html -------------------------------------------------------------------------------- /service/scheduler/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/test/pom.xml -------------------------------------------------------------------------------- /service/scheduler/test/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/test/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/scheduler/test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /service/scheduler/test/src/test/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/scheduler/test/src/test/resources/shiro.ini -------------------------------------------------------------------------------- /service/security/authentication/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/authentication/api/about.html -------------------------------------------------------------------------------- /service/security/authentication/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/authentication/api/pom.xml -------------------------------------------------------------------------------- /service/security/authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/authentication/pom.xml -------------------------------------------------------------------------------- /service/security/authorization/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/authorization/api/about.html -------------------------------------------------------------------------------- /service/security/authorization/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/authorization/api/pom.xml -------------------------------------------------------------------------------- /service/security/authorization/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/authorization/pom.xml -------------------------------------------------------------------------------- /service/security/certificate/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/certificate/api/pom.xml -------------------------------------------------------------------------------- /service/security/certificate/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/certificate/internal/pom.xml -------------------------------------------------------------------------------- /service/security/certificate/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/certificate/pom.xml -------------------------------------------------------------------------------- /service/security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/pom.xml -------------------------------------------------------------------------------- /service/security/registration/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/registration/about.html -------------------------------------------------------------------------------- /service/security/registration/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/registration/api/about.html -------------------------------------------------------------------------------- /service/security/registration/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/registration/api/pom.xml -------------------------------------------------------------------------------- /service/security/registration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/registration/pom.xml -------------------------------------------------------------------------------- /service/security/registration/simple/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/registration/simple/about.html -------------------------------------------------------------------------------- /service/security/registration/simple/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/registration/simple/pom.xml -------------------------------------------------------------------------------- /service/security/shiro/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/shiro/about.html -------------------------------------------------------------------------------- /service/security/shiro/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/shiro/pom.xml -------------------------------------------------------------------------------- /service/security/shiro/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/shiro/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /service/security/shiro/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/shiro/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/security/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/test-steps/about.html -------------------------------------------------------------------------------- /service/security/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/test-steps/pom.xml -------------------------------------------------------------------------------- /service/security/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/test/pom.xml -------------------------------------------------------------------------------- /service/security/test/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/test/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/security/test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/security/test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /service/stream/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/stream/api/pom.xml -------------------------------------------------------------------------------- /service/stream/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/stream/internal/pom.xml -------------------------------------------------------------------------------- /service/stream/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/stream/pom.xml -------------------------------------------------------------------------------- /service/system/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/api/about.html -------------------------------------------------------------------------------- /service/system/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/api/pom.xml -------------------------------------------------------------------------------- /service/system/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/internal/about.html -------------------------------------------------------------------------------- /service/system/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/internal/pom.xml -------------------------------------------------------------------------------- /service/system/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/pom.xml -------------------------------------------------------------------------------- /service/system/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/test-steps/about.html -------------------------------------------------------------------------------- /service/system/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/test-steps/pom.xml -------------------------------------------------------------------------------- /service/system/test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/test/about.html -------------------------------------------------------------------------------- /service/system/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/test/pom.xml -------------------------------------------------------------------------------- /service/system/test/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/test/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/system/test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /service/system/test/src/test/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/system/test/src/test/resources/shiro.ini -------------------------------------------------------------------------------- /service/tag/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/api/about.html -------------------------------------------------------------------------------- /service/tag/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/api/pom.xml -------------------------------------------------------------------------------- /service/tag/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/internal/about.html -------------------------------------------------------------------------------- /service/tag/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/internal/pom.xml -------------------------------------------------------------------------------- /service/tag/internal/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/internal/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /service/tag/internal/src/main/resources/liquibase/0.3.0/tag.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/internal/src/main/resources/liquibase/0.3.0/tag.xml -------------------------------------------------------------------------------- /service/tag/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/pom.xml -------------------------------------------------------------------------------- /service/tag/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/test-steps/about.html -------------------------------------------------------------------------------- /service/tag/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/test-steps/pom.xml -------------------------------------------------------------------------------- /service/tag/test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/test/about.html -------------------------------------------------------------------------------- /service/tag/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/test/pom.xml -------------------------------------------------------------------------------- /service/tag/test/src/test/resources/features/TagService.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/test/src/test/resources/features/TagService.feature -------------------------------------------------------------------------------- /service/tag/test/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/test/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/tag/test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /service/tag/test/src/test/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/tag/test/src/test/resources/shiro.ini -------------------------------------------------------------------------------- /service/user/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/api/about.html -------------------------------------------------------------------------------- /service/user/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/api/pom.xml -------------------------------------------------------------------------------- /service/user/internal/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/internal/about.html -------------------------------------------------------------------------------- /service/user/internal/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/internal/pom.xml -------------------------------------------------------------------------------- /service/user/internal/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/internal/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /service/user/internal/src/main/resources/liquibase/0.2.0/user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/internal/src/main/resources/liquibase/0.2.0/user.xml -------------------------------------------------------------------------------- /service/user/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/pom.xml -------------------------------------------------------------------------------- /service/user/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/test-steps/about.html -------------------------------------------------------------------------------- /service/user/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/test-steps/pom.xml -------------------------------------------------------------------------------- /service/user/test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/test/about.html -------------------------------------------------------------------------------- /service/user/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/test/pom.xml -------------------------------------------------------------------------------- /service/user/test/src/test/resources/features/UserService.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/test/src/test/resources/features/UserService.feature -------------------------------------------------------------------------------- /service/user/test/src/test/resources/locator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/test/src/test/resources/locator.xml -------------------------------------------------------------------------------- /service/user/test/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/test/src/test/resources/logback.xml -------------------------------------------------------------------------------- /service/user/test/src/test/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/service/user/test/src/test/resources/shiro.ini -------------------------------------------------------------------------------- /simulator-kura/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/README.md -------------------------------------------------------------------------------- /simulator-kura/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/about.html -------------------------------------------------------------------------------- /simulator-kura/openshift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/openshift/README.md -------------------------------------------------------------------------------- /simulator-kura/openshift/external-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/openshift/external-template.yml -------------------------------------------------------------------------------- /simulator-kura/openshift/setup-external.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/openshift/setup-external.sh -------------------------------------------------------------------------------- /simulator-kura/openshift/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/openshift/setup.sh -------------------------------------------------------------------------------- /simulator-kura/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/pom.xml -------------------------------------------------------------------------------- /simulator-kura/src/main/docker/kura-simulator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/src/main/docker/kura-simulator.xml -------------------------------------------------------------------------------- /simulator-kura/src/main/docker/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/src/main/docker/logback.xml -------------------------------------------------------------------------------- /simulator-kura/src/main/protobuf/kurapayload.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/src/main/protobuf/kurapayload.proto -------------------------------------------------------------------------------- /simulator-kura/src/test/resources/example1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/src/test/resources/example1.json -------------------------------------------------------------------------------- /simulator-kura/src/test/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/simulator-kura/src/test/resources/logback.xml -------------------------------------------------------------------------------- /simulator-kura/src/test/resources/org/eclipse/kapua/kura/simulator/main/simulation/test1.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /translator/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/api/about.html -------------------------------------------------------------------------------- /translator/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/api/pom.xml -------------------------------------------------------------------------------- /translator/kapua/kura/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/kapua/kura/about.html -------------------------------------------------------------------------------- /translator/kapua/kura/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/kapua/kura/pom.xml -------------------------------------------------------------------------------- /translator/kapua/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/kapua/pom.xml -------------------------------------------------------------------------------- /translator/kura/jms/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/kura/jms/about.html -------------------------------------------------------------------------------- /translator/kura/jms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/kura/jms/pom.xml -------------------------------------------------------------------------------- /translator/kura/mqtt/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/kura/mqtt/about.html -------------------------------------------------------------------------------- /translator/kura/mqtt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/kura/mqtt/pom.xml -------------------------------------------------------------------------------- /translator/kura/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/kura/pom.xml -------------------------------------------------------------------------------- /translator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/pom.xml -------------------------------------------------------------------------------- /translator/test-steps/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/test-steps/about.html -------------------------------------------------------------------------------- /translator/test-steps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/test-steps/pom.xml -------------------------------------------------------------------------------- /translator/test/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/test/about.html -------------------------------------------------------------------------------- /translator/test/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/test/pom.xml -------------------------------------------------------------------------------- /translator/test/src/test/resources/shiro.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/translator/test/src/test/resources/shiro.ini -------------------------------------------------------------------------------- /transport/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/api/README.md -------------------------------------------------------------------------------- /transport/api/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/api/about.html -------------------------------------------------------------------------------- /transport/api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/api/pom.xml -------------------------------------------------------------------------------- /transport/jms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/jms/README.md -------------------------------------------------------------------------------- /transport/jms/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/jms/about.html -------------------------------------------------------------------------------- /transport/jms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/jms/pom.xml -------------------------------------------------------------------------------- /transport/jms/src/main/resources/jms-client-setting.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/jms/src/main/resources/jms-client-setting.properties -------------------------------------------------------------------------------- /transport/mqtt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/mqtt/README.md -------------------------------------------------------------------------------- /transport/mqtt/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/mqtt/about.html -------------------------------------------------------------------------------- /transport/mqtt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/mqtt/pom.xml -------------------------------------------------------------------------------- /transport/mqtt/src/main/resources/mqtt-client-setting.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/mqtt/src/main/resources/mqtt-client-setting.properties -------------------------------------------------------------------------------- /transport/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-kapua/kapua/HEAD/transport/pom.xml --------------------------------------------------------------------------------