Update appc-common to Karaf 4 43/55543/7
authorRyan Young <ry303t@att.com>
Thu, 28 Jun 2018 21:22:47 +0000 (17:22 -0400)
committerTakamune Cho <tc012c@att.com>
Thu, 9 Aug 2018 21:10:37 +0000 (21:10 +0000)
commite35c3a0387e68bbeb3df8c5d614e0b99f5c4f743
tree912679b50bc48e7ff3e4c4e1246ad897b51ce194
parent344a44f3bb0762e5bc32a4ef760fb3b42ef4688d
Update appc-common to Karaf 4

update appc-common to karaf 4 feature

Change-Id: Ib0ce37032e63ffc61bef94345701f3ab58785153
Signed-off-by: Ryan Young <ry303t@att.com>
Issue-ID: APPC-1022
147 files changed:
appc-common/pom.xml
appc-core/appc-common-bundle/java/org/onap/appc/CmdLine.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/Constants.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/cache/CacheStrategies.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/cache/CacheStrategy.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/cache/MetadataCache.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/cache/impl/LRUCache.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/cache/impl/MetadataCacheFactory.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/cache/impl/MetadataCacheImpl.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/concurrent/Signal.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/configuration/Configuration.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/configuration/ConfigurationFactory.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/configuration/DefaultConfiguration.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/configuration/package.html [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/encryption/EncryptionException.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/encryption/EncryptionTool.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/encryption/HexHelper.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/exceptions/APPCException.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/exceptions/InvalidInputException.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/exceptions/InvalidStateException.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/exceptions/UnknownProviderException.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/i18n/Msg.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/logging/LoggingConstants.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/logging/LoggingUtils.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/metadata/MetadataService.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/metadata/impl/MetadataServiceImpl.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/metadata/objects/DependencyModelIdentifier.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/pool/Allocator.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/pool/CacheManagement.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/pool/CachedElement.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/pool/Destructor.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/pool/Pool.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/pool/PoolDrainedException.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/pool/PoolException.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/pool/PoolExtensionException.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/pool/PoolSpecificationException.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/rest/client/RestClientInvoker.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/util/JsonUtil.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/util/MessageFormatter.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/util/ObjectMapper.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/util/PathContext.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/util/StreamHelper.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/util/StringHelper.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/util/StructuredPropertyHelper.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/util/Time.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/util/UnmodifiableProperties.java [new file with mode: 0644]
appc-core/appc-common-bundle/java/org/onap/appc/util/httpClient.java [new file with mode: 0644]
appc-core/appc-common-bundle/pom.xml [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/CmdLine.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/Constants.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/cache/CacheStrategies.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/cache/CacheStrategy.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/cache/MetadataCache.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/cache/impl/LRUCache.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/cache/impl/MetadataCacheFactory.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/cache/impl/MetadataCacheImpl.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/concurrent/Signal.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/configuration/Configuration.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/configuration/ConfigurationFactory.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/configuration/DefaultConfiguration.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/configuration/package.html [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/encryption/EncryptionException.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/encryption/EncryptionTool.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/encryption/HexHelper.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/exceptions/APPCException.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/exceptions/InvalidInputException.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/exceptions/InvalidStateException.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/exceptions/UnknownProviderException.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/i18n/Msg.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/logging/LoggingConstants.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/logging/LoggingUtils.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/metadata/MetadataService.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/metadata/impl/MetadataServiceImpl.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/metadata/objects/DependencyModelIdentifier.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/Allocator.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/CacheManagement.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/CachedElement.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/Destructor.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/Pool.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/PoolDrainedException.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/PoolException.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/PoolExtensionException.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/pool/PoolSpecificationException.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/rest/client/RestClientInvoker.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/util/JsonUtil.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/util/MessageFormatter.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/util/ObjectMapper.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/util/PathContext.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/util/StreamHelper.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/util/StringHelper.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/util/StructuredPropertyHelper.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/util/Time.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/util/UnmodifiableProperties.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/java/org/onap/appc/util/httpClient.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/resources/org/onap/appc/i18n/MessageResources.properties [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/resources/org/onap/appc/i18n/auth.properties [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/resources/org/onap/appc/org.ops4j.pax.logging.cfg [new file with mode: 0644]
appc-core/appc-common-bundle/src/main/resources/org/opendaylight/blueprint/blueprint.xml [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/CmdLineTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/ConstantsTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/cache/CacheStrategiesTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/cache/impl/LRUCacheTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/cache/impl/MetadataCacheFactoryTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/cache/impl/MetadataCacheImplTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/concurrent/TestSignal.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/configuration/ConfigurationFactoryTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/configuration/DefaultConfigurationTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/encryption/EncryptionToolTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/encryption/HexHelperTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/exceptions/APPCExceptionTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/exceptions/InvalidInputExceptionTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/exceptions/InvalidStateExceptionTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/exceptions/UnknownProviderExceptionTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/i18n/MsgTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/logging/LoggingConstantsTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/logging/LoggingUtilsTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/metadata/impl/MetadataServiceImplTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/metadata/objects/DependencyModelIdentifierTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/pool/CachedElementTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/pool/Element.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/pool/PoolDrainedExceptionTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/pool/PoolExceptionTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/pool/PoolExtensionExceptionTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/pool/PoolTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/pool/Testable.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/JsonUtilTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/MessageFormatterTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/PathContextTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/StreamHelperTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/StringHelperTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/TestStructuredPropertyHelper.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/TimeTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/java/org/onap/appc/util/UnmodifiablePropertiesTest.java [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/resources/invalid.json [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/resources/org/onap/appc/i18n/TestAdditionalResources.properties [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/resources/org/onap/appc/i18n/TestResources_de.properties [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/resources/org/onap/appc/i18n/TestResources_en_US.properties [new file with mode: 0644]
appc-core/appc-common-bundle/src/test/resources/valid.json [new file with mode: 0644]
appc-core/appc-core-features/onap-appc-common/pom.xml [new file with mode: 0644]
appc-core/appc-core-features/onap-appc-core/pom.xml [new file with mode: 0644]
appc-core/appc-core-features/pom.xml [new file with mode: 0644]
appc-core/appc-core-installer/pom.xml [new file with mode: 0644]
appc-core/appc-core-installer/src/assembly/assemble_installer_zip.xml [new file with mode: 0644]
appc-core/appc-core-installer/src/assembly/assemble_mvnrepo_zip.xml [new file with mode: 0644]
appc-core/appc-core-installer/src/main/resources/scripts/install-feature.sh [new file with mode: 0644]
appc-core/pom.xml [new file with mode: 0644]
pom.xml