├── .codeclimate.yml
├── .codeclimate
├── checkstyle.xml
├── header.txt
└── pmd-ruleset.xml
├── .codecov.yml
├── .csslintrc
├── .eslintignore
├── .eslintrc.yml
├── .gitattributes
├── .github
├── ISSUE_TEMPLATE.md
├── config.yml
├── stale.yml
└── workflows
│ └── maven.yml
├── .gitignore
├── CHANGELOG.md
├── CONTRIBUTING.md
├── COPYRIGHT
├── LICENSE
├── README.md
├── RELEASING.md
├── all
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── content
│ └── META-INF
│ │ └── vault
│ │ └── filter.xml
│ └── resources
│ ├── META-INF
│ ├── COPYRIGHT
│ ├── LICENSE
│ └── NOTICE
│ └── thumbnail.png
├── bundle-cloud
├── pom.xml
└── src
│ └── main
│ └── java
│ └── com
│ └── adobe
│ └── acs
│ └── commons
│ ├── email
│ └── impl
│ │ └── MailTemplateManagerImpl.java
│ └── replication
│ └── dispatcher
│ └── impl
│ ├── CloudDispatcherFlushRulesExecutor.java
│ └── CloudDispatcherFlusher.java
├── bundle-onprem
├── .gitignore
├── pom.xml
└── src
│ ├── main
│ ├── java
│ │ └── com
│ │ │ └── adobe
│ │ │ └── acs
│ │ │ └── commons
│ │ │ ├── email
│ │ │ └── impl
│ │ │ │ └── MailTemplateManagerImpl.java
│ │ │ └── logging
│ │ │ └── impl
│ │ │ └── SyslogAppender.java
│ └── resources
│ │ └── META-INF
│ │ ├── COPYRIGHT
│ │ └── LICENSE
│ └── test
│ └── java
│ └── com
│ └── adobe
│ └── acs
│ └── commons
│ └── logging
│ └── impl
│ └── SyslogAppenderTest.java
├── bundle
├── .gitignore
├── bnd.bnd
├── pom.xml
└── src
│ ├── main
│ ├── java
│ │ └── com
│ │ │ └── adobe
│ │ │ └── acs
│ │ │ └── commons
│ │ │ ├── adobeio
│ │ │ └── service
│ │ │ │ ├── EndpointService.java
│ │ │ │ ├── IntegrationService.java
│ │ │ │ ├── impl
│ │ │ │ ├── AdobeioConstants.java
│ │ │ │ ├── AdobeioHealthcheck.java
│ │ │ │ ├── AdobeioHelper.java
│ │ │ │ ├── AdobeioHelperImpl.java
│ │ │ │ ├── EndpointConfiguration.java
│ │ │ │ ├── EndpointServiceImpl.java
│ │ │ │ ├── IntegrationConfiguration.java
│ │ │ │ └── IntegrationServiceImpl.java
│ │ │ │ └── package-info.java
│ │ │ ├── aep
│ │ │ └── impl
│ │ │ │ └── FpidCookieServlet.java
│ │ │ ├── analysis
│ │ │ └── jcrchecksum
│ │ │ │ ├── ChecksumGenerator.java
│ │ │ │ ├── ChecksumGeneratorOptions.java
│ │ │ │ ├── impl
│ │ │ │ ├── ChecksumGeneratorImpl.java
│ │ │ │ ├── JSONGenerator.java
│ │ │ │ ├── options
│ │ │ │ │ ├── AbstractChecksumGeneratorOptions.java
│ │ │ │ │ ├── ChecksumGeneratorOptionsFactory.java
│ │ │ │ │ ├── CustomChecksumGeneratorOptions.java
│ │ │ │ │ ├── DefaultChecksumGeneratorOptions.java
│ │ │ │ │ └── RequestChecksumGeneratorOptions.java
│ │ │ │ └── servlets
│ │ │ │ │ ├── BaseChecksumServlet.java
│ │ │ │ │ ├── ChecksumGeneratorServlet.java
│ │ │ │ │ ├── JSONDumpServlet.java
│ │ │ │ │ └── ServletConstants.java
│ │ │ │ └── package-info.java
│ │ │ ├── assets
│ │ │ ├── FileExtensionMimeTypeConstants.java
│ │ │ └── package-info.java
│ │ │ ├── audit_log_search
│ │ │ ├── AuditLogSearchRequest.java
│ │ │ ├── impl
│ │ │ │ └── AuditLogSearchServlet.java
│ │ │ └── package-info.java
│ │ │ ├── auth
│ │ │ └── saml
│ │ │ │ └── impl
│ │ │ │ └── OktaLogoutHandler.java
│ │ │ ├── ccvar
│ │ │ ├── ContentVariableProvider.java
│ │ │ ├── PropertyAggregatorService.java
│ │ │ ├── PropertyConfigService.java
│ │ │ ├── TransformAction.java
│ │ │ ├── filter
│ │ │ │ ├── CapturingResponseWrapper.java
│ │ │ │ ├── ContentVariableJsonFilter.java
│ │ │ │ └── package-info.java
│ │ │ ├── impl
│ │ │ │ ├── AllPagePropertiesContentVariableProvider.java
│ │ │ │ ├── PropertyAggregatorServiceImpl.java
│ │ │ │ ├── PropertyConfigServiceImpl.java
│ │ │ │ └── UrlEncodeAction.java
│ │ │ ├── package-info.java
│ │ │ └── util
│ │ │ │ ├── ContentVariableReplacementUtil.java
│ │ │ │ ├── PropertyAggregatorUtil.java
│ │ │ │ └── package-info.java
│ │ │ ├── cloudconfig
│ │ │ ├── CloudConfiguration.java
│ │ │ ├── CloudConfigurationList.java
│ │ │ ├── impl
│ │ │ │ ├── CloudConfigurationImpl.java
│ │ │ │ ├── CloudConfigurationListImpl.java
│ │ │ │ └── CreateCloudConfigServlet.java
│ │ │ └── package-info.java
│ │ │ ├── contentsync
│ │ │ ├── CatalogItem.java
│ │ │ ├── ConfigurationUtils.java
│ │ │ ├── ContentCatalog.java
│ │ │ ├── ContentCatalogJobConsumer.java
│ │ │ ├── ContentReader.java
│ │ │ ├── ContentSync.java
│ │ │ ├── RemoteInstance.java
│ │ │ ├── SyncHostConfiguration.java
│ │ │ ├── UpdateStrategy.java
│ │ │ ├── impl
│ │ │ │ ├── AssetChecksumStrategy.java
│ │ │ │ ├── EncryptPasswordPostProcessor.java
│ │ │ │ └── LastModifiedStrategy.java
│ │ │ ├── package-info.java
│ │ │ └── servlet
│ │ │ │ └── ContentCatalogServlet.java
│ │ │ ├── cqsearch
│ │ │ ├── QueryUtil.java
│ │ │ ├── impl
│ │ │ │ └── NodeExistsPredicateEvaluator.java
│ │ │ └── package-info.java
│ │ │ ├── dam
│ │ │ ├── AbstractRenditionModifyingProcess.java
│ │ │ ├── ColorConversion.java
│ │ │ ├── DAMFunctions.java
│ │ │ ├── RenditionPatternPicker.java
│ │ │ ├── audio
│ │ │ │ ├── AudioFunctions.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── AudioException.java
│ │ │ │ │ ├── AudioHelper.java
│ │ │ │ │ ├── AudioHelperImpl.java
│ │ │ │ │ ├── FFMpegAudioEncodeProcess.java
│ │ │ │ │ └── FFMpegAudioUtils.java
│ │ │ │ ├── package-info.java
│ │ │ │ └── watson
│ │ │ │ │ └── impl
│ │ │ │ │ ├── TranscriptionProcess.java
│ │ │ │ │ ├── TranscriptionService.java
│ │ │ │ │ └── TranscriptionServiceImpl.java
│ │ │ ├── impl
│ │ │ │ ├── AddWatermarkToRenditionProcess.java
│ │ │ │ ├── ColorConversionImpl.java
│ │ │ │ ├── CopyAssetPublishUrlFeature.java
│ │ │ │ ├── CustomComponentActivatorListServlet.java
│ │ │ │ ├── MatteRenditionProcess.java
│ │ │ │ └── ReviewTaskAssetMoverHandler.java
│ │ │ └── package-info.java
│ │ │ ├── data
│ │ │ ├── CompositeVariant.java
│ │ │ ├── Spreadsheet.java
│ │ │ ├── Variant.java
│ │ │ └── package-info.java
│ │ │ ├── dispatcher
│ │ │ └── impl
│ │ │ │ └── PermissionSensitiveCacheServlet.java
│ │ │ ├── email
│ │ │ ├── EmailService.java
│ │ │ ├── EmailServiceConstants.java
│ │ │ ├── impl
│ │ │ │ ├── EmailServiceImpl.java
│ │ │ │ └── MailTemplateManager.java
│ │ │ ├── package-info.java
│ │ │ └── process
│ │ │ │ └── impl
│ │ │ │ ├── SendTemplatedEmailConstants.java
│ │ │ │ ├── SendTemplatedEmailProcess.java
│ │ │ │ └── SendTemplatedEmailUtils.java
│ │ │ ├── errorpagehandler
│ │ │ ├── ErrorPageHandlerService.java
│ │ │ ├── cache
│ │ │ │ └── impl
│ │ │ │ │ ├── CacheEntry.java
│ │ │ │ │ ├── ErrorPageCache.java
│ │ │ │ │ ├── ErrorPageCacheImpl.java
│ │ │ │ │ └── ErrorPageCacheMBean.java
│ │ │ ├── impl
│ │ │ │ ├── ErrorPageHandlerImpl.java
│ │ │ │ └── StringLengthComparator.java
│ │ │ └── package-info.java
│ │ │ ├── etag
│ │ │ └── impl
│ │ │ │ └── EtagMessageDigestServletFilter.java
│ │ │ ├── exporters
│ │ │ └── impl
│ │ │ │ ├── tags
│ │ │ │ ├── Parameters.java
│ │ │ │ ├── TagsExportService.java
│ │ │ │ └── TagsExportServlet.java
│ │ │ │ └── users
│ │ │ │ ├── Constants.java
│ │ │ │ ├── Parameters.java
│ │ │ │ ├── UsersExportServlet.java
│ │ │ │ ├── UsersInitServlet.java
│ │ │ │ └── UsersSaveServlet.java
│ │ │ ├── fam
│ │ │ ├── ActionManager.java
│ │ │ ├── ActionManagerConstants.java
│ │ │ ├── ActionManagerFactory.java
│ │ │ ├── CancelHandler.java
│ │ │ ├── Failure.java
│ │ │ ├── ThrottledTaskRunner.java
│ │ │ ├── actions
│ │ │ │ ├── ActionBatch.java
│ │ │ │ ├── Actions.java
│ │ │ │ ├── AssetActions.java
│ │ │ │ ├── Filters.java
│ │ │ │ ├── ReplicationActions.java
│ │ │ │ └── package-info.java
│ │ │ ├── impl
│ │ │ │ ├── ActionManagerFactoryImpl.java
│ │ │ │ ├── ActionManagerImpl.java
│ │ │ │ ├── PriorityThreadPoolExecutor.java
│ │ │ │ ├── ReusableResolver.java
│ │ │ │ ├── RunningStatistic.java
│ │ │ │ ├── ThrottledTaskRunnerImpl.java
│ │ │ │ ├── ThrottledTaskRunnerStats.java
│ │ │ │ ├── TimedRunnable.java
│ │ │ │ └── TimedRunnableFuture.java
│ │ │ ├── mbean
│ │ │ │ ├── ActionManagerMBean.java
│ │ │ │ ├── ThrottledTaskRunnerMBean.java
│ │ │ │ └── package-info.java
│ │ │ └── package-info.java
│ │ │ ├── filefetch
│ │ │ ├── FileFetchConfiguration.java
│ │ │ ├── FileFetchMBean.java
│ │ │ ├── FileFetcher.java
│ │ │ ├── impl
│ │ │ │ ├── FileFetchMBeanImpl.java
│ │ │ │ └── FileFetcherImpl.java
│ │ │ └── package-info.java
│ │ │ ├── functions
│ │ │ ├── CheckedBiConsumer.java
│ │ │ ├── CheckedBiFunction.java
│ │ │ ├── CheckedConsumer.java
│ │ │ ├── CheckedFunction.java
│ │ │ ├── CheckedSupplier.java
│ │ │ ├── RoundRobin.java
│ │ │ └── package-info.java
│ │ │ ├── genericlists
│ │ │ ├── GenericList.java
│ │ │ ├── impl
│ │ │ │ ├── GenericListAdapterFactory.java
│ │ │ │ ├── GenericListImpl.java
│ │ │ │ └── GenericListJsonResourceProvider.java
│ │ │ └── package-info.java
│ │ │ ├── granite
│ │ │ └── ui
│ │ │ │ └── components
│ │ │ │ ├── CustomELVariableInjector.java
│ │ │ │ ├── ELVariableProvider.java
│ │ │ │ ├── NamespacedTransformedResourceProvider.java
│ │ │ │ ├── impl
│ │ │ │ ├── ContextualPageRootELVariableProvider.java
│ │ │ │ ├── CustomELVariableInjectorImpl.java
│ │ │ │ └── include
│ │ │ │ │ ├── IncludeDecoratorFilterImpl.java
│ │ │ │ │ ├── NamespaceDecoratedValueMapBuilder.java
│ │ │ │ │ ├── NamespaceResourceWrapper.java
│ │ │ │ │ └── NamespacedTransformedResourceProviderImpl.java
│ │ │ │ └── package-info.java
│ │ │ ├── hc
│ │ │ └── impl
│ │ │ │ ├── HealthCheckStatusEmailer.java
│ │ │ │ └── SMTPMailServiceHealthCheck.java
│ │ │ ├── http
│ │ │ ├── HttpClientFactory.java
│ │ │ ├── JsonObjectResponseHandler.java
│ │ │ ├── headers
│ │ │ │ └── impl
│ │ │ │ │ ├── AbstractDispatcherCacheHeaderFilter.java
│ │ │ │ │ ├── AbstractExpiresHeaderFilter.java
│ │ │ │ │ ├── DailyExpiresHeaderFilter.java
│ │ │ │ │ ├── DispatcherMaxAgeHeaderFilter.java
│ │ │ │ │ ├── MonthlyExpiresHeaderFilter.java
│ │ │ │ │ ├── PropertyBasedDispatcherMaxAgeHeaderFilter.java
│ │ │ │ │ ├── ResourceBasedDispatcherMaxAgeHeaderFilter.java
│ │ │ │ │ ├── ResourceTypeBasedDispatcherMaxAgeHeaderFilter.java
│ │ │ │ │ └── WeeklyExpiresHeaderFilter.java
│ │ │ ├── impl
│ │ │ │ └── HttpClientFactoryImpl.java
│ │ │ ├── injectors
│ │ │ │ ├── AbstractHtmlRequestInjector.java
│ │ │ │ └── package-info.java
│ │ │ └── package-info.java
│ │ │ ├── httpcache
│ │ │ ├── config
│ │ │ │ ├── AuthenticationStatusConfigConstants.java
│ │ │ │ ├── HttpCacheConfig.java
│ │ │ │ ├── HttpCacheConfigExtension.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── AbstractKeyValueExtension.java
│ │ │ │ │ ├── CombinedCacheConfigExtension.java
│ │ │ │ │ ├── CombinedCacheKeyFactory.java
│ │ │ │ │ ├── GroupHttpCacheConfigExtension.java
│ │ │ │ │ ├── HttpCacheConfigComparator.java
│ │ │ │ │ ├── HttpCacheConfigImpl.java
│ │ │ │ │ ├── RequestCookieHttpCacheConfigExtension.java
│ │ │ │ │ ├── RequestHeaderHttpCacheConfigExtension.java
│ │ │ │ │ ├── RequestParameterHttpCacheConfigExtension.java
│ │ │ │ │ ├── RequestPathHttpCacheConfigExtension.java
│ │ │ │ │ ├── ResourcePropertiesHttpCacheConfigExtension.java
│ │ │ │ │ ├── ResourceTypeHttpCacheConfigExtension.java
│ │ │ │ │ └── keys
│ │ │ │ │ │ ├── CombinedCacheKey.java
│ │ │ │ │ │ ├── GroupCacheKey.java
│ │ │ │ │ │ ├── KeyValueCacheKey.java
│ │ │ │ │ │ ├── RequestPathCacheKey.java
│ │ │ │ │ │ └── ResourcePathCacheKey.java
│ │ │ │ └── package-info.java
│ │ │ ├── engine
│ │ │ │ ├── CacheContent.java
│ │ │ │ ├── HttpCacheEngine.java
│ │ │ │ ├── HttpCacheServletResponseWrapper.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── HttpCacheEngineImpl.java
│ │ │ │ │ ├── HttpCacheEngineMBean.java
│ │ │ │ │ ├── TeePrintWriter.java
│ │ │ │ │ ├── TeeServletOutputStream.java
│ │ │ │ │ └── delegate
│ │ │ │ │ │ ├── HttpCacheEngineBindingsDelegate.java
│ │ │ │ │ │ └── HttpCacheEngineMBeanDelegate.java
│ │ │ │ └── package-info.java
│ │ │ ├── exception
│ │ │ │ ├── HttpCacheConfigConflictException.java
│ │ │ │ ├── HttpCacheDataStreamException.java
│ │ │ │ ├── HttpCacheException.java
│ │ │ │ ├── HttpCacheKeyCreationException.java
│ │ │ │ ├── HttpCachePersistenceException.java
│ │ │ │ ├── HttpCacheRepositoryAccessException.java
│ │ │ │ └── package-info.java
│ │ │ ├── filter
│ │ │ │ └── impl
│ │ │ │ │ ├── AbstractHttpCacheFilter.java
│ │ │ │ │ ├── HttpCacheIncludeFilter.java
│ │ │ │ │ └── HttpCacheRequestFilter.java
│ │ │ ├── invalidator
│ │ │ │ ├── CacheInvalidationJobConstants.java
│ │ │ │ ├── HttpCacheInvalidationJobConsumer.java
│ │ │ │ ├── event
│ │ │ │ │ ├── JCRNodeChangeEventHandler.java
│ │ │ │ │ └── package-info.java
│ │ │ │ └── package-info.java
│ │ │ ├── keys
│ │ │ │ ├── AbstractCacheKey.java
│ │ │ │ ├── CacheKey.java
│ │ │ │ ├── CacheKeyFactory.java
│ │ │ │ └── package-info.java
│ │ │ ├── package-info.java
│ │ │ ├── rule
│ │ │ │ ├── AbstractHttpCacheHandlingRule.java
│ │ │ │ ├── HttpCacheHandlingRule.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── CacheOnlyGetRequest.java
│ │ │ │ │ ├── CacheOnlyResponse200.java
│ │ │ │ │ ├── DoNotCacheRequestWithQueryString.java
│ │ │ │ │ ├── DoNotCacheZeroSizeResponse.java
│ │ │ │ │ ├── HonorCacheControlHeaders.java
│ │ │ │ │ └── MarkResponseAsCacheDelivered.java
│ │ │ │ └── package-info.java
│ │ │ ├── store
│ │ │ │ ├── HttpCacheStore.java
│ │ │ │ ├── TempSink.java
│ │ │ │ ├── caffeine
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── AbstractCaffeineCacheMBean.java
│ │ │ │ │ │ ├── CacheExpiryPolicy.java
│ │ │ │ │ │ ├── CaffeineCacheMBean.java
│ │ │ │ │ │ └── CaffeineMemHttpCacheStoreImpl.java
│ │ │ │ ├── disk
│ │ │ │ │ └── impl
│ │ │ │ │ │ └── DiskHttpCacheStoreImpl.java
│ │ │ │ ├── jcr
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── JCRHttpCacheStoreConstants.java
│ │ │ │ │ │ ├── JCRHttpCacheStoreImpl.java
│ │ │ │ │ │ ├── exceptions
│ │ │ │ │ │ └── BucketNodeFactoryException.java
│ │ │ │ │ │ ├── handler
│ │ │ │ │ │ ├── BucketNodeHandler.java
│ │ │ │ │ │ ├── EntryNodeToCacheContentHandler.java
│ │ │ │ │ │ └── EntryNodeToCacheKeyHandler.java
│ │ │ │ │ │ ├── visitor
│ │ │ │ │ │ ├── AbstractNodeVisitor.java
│ │ │ │ │ │ ├── AllEntryNodesCountVisitor.java
│ │ │ │ │ │ ├── EntryNodeByStringKeyVisitor.java
│ │ │ │ │ │ ├── EntryNodeMapVisitor.java
│ │ │ │ │ │ ├── ExpiredNodesVisitor.java
│ │ │ │ │ │ ├── InvalidateAllNodesVisitor.java
│ │ │ │ │ │ ├── InvalidateByCacheConfigVisitor.java
│ │ │ │ │ │ └── TotalCacheSizeVisitor.java
│ │ │ │ │ │ └── writer
│ │ │ │ │ │ ├── BucketNodeFactory.java
│ │ │ │ │ │ └── EntryNodeWriter.java
│ │ │ │ ├── mem
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── MemCacheMBean.java
│ │ │ │ │ │ ├── MemCachePersistenceObject.java
│ │ │ │ │ │ ├── MemHttpCacheStoreImpl.java
│ │ │ │ │ │ └── MemTempSinkImpl.java
│ │ │ │ └── package-info.java
│ │ │ └── util
│ │ │ │ ├── CacheUtils.java
│ │ │ │ ├── UserUtils.java
│ │ │ │ └── package-info.java
│ │ │ ├── i18n
│ │ │ ├── I18nProvider.java
│ │ │ ├── impl
│ │ │ │ ├── Config.java
│ │ │ │ └── I18nProviderImpl.java
│ │ │ └── package-info.java
│ │ │ ├── images
│ │ │ ├── ImageTransformer.java
│ │ │ ├── NamedImageTransformer.java
│ │ │ ├── impl
│ │ │ │ ├── NamedImageTransformerImpl.java
│ │ │ │ ├── NamedTransformImageServlet.java
│ │ │ │ ├── ProgressiveJpeg.java
│ │ │ │ ├── SocialImageImpl.java
│ │ │ │ └── SocialRemoteImageImpl.java
│ │ │ ├── package-info.java
│ │ │ └── transformers
│ │ │ │ └── impl
│ │ │ │ ├── AdjustImageTransformerImpl.java
│ │ │ │ ├── BoundedResizeTransformerImpl.java
│ │ │ │ ├── CropImageTransformerImpl.java
│ │ │ │ ├── GreyscaleImageTransformerImpl.java
│ │ │ │ ├── LetterPillarBoxImageTransformerImpl.java
│ │ │ │ ├── MultiplyBlendImageTransformerImpl.java
│ │ │ │ ├── RGBShiftImageTransformerImpl.java
│ │ │ │ ├── ResizeImageTransformerImpl.java
│ │ │ │ ├── RotateImageTransformerImpl.java
│ │ │ │ ├── ScaleImageTransformerImpl.java
│ │ │ │ ├── SharpenImageTransformerImpl.java
│ │ │ │ └── composites
│ │ │ │ ├── MultiplyBlendComposite.java
│ │ │ │ └── contexts
│ │ │ │ ├── ColorMask.java
│ │ │ │ └── MultiplyCompositeContext.java
│ │ │ ├── indesign
│ │ │ └── dynamicdeckdynamo
│ │ │ │ ├── constants
│ │ │ │ ├── DynamicDeckDynamoConstants.java
│ │ │ │ ├── DynamicDeckDynamoIDSConstants.java
│ │ │ │ └── package-info.java
│ │ │ │ ├── exception
│ │ │ │ ├── DynamicDeckDynamoException.java
│ │ │ │ └── package-info.java
│ │ │ │ ├── models
│ │ │ │ ├── CollectionSelectComponent.java
│ │ │ │ ├── DynamicDeckInitiatorPageModel.java
│ │ │ │ ├── GenericListSelectComponent.java
│ │ │ │ └── package-info.java
│ │ │ │ ├── services
│ │ │ │ ├── DynamicDeckConfigurationService.java
│ │ │ │ ├── DynamicDeckService.java
│ │ │ │ ├── XMLGeneratorService.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── DynamicDeckConfiguration.java
│ │ │ │ │ ├── DynamicDeckConfigurationServiceImpl.java
│ │ │ │ │ ├── DynamicDeckServiceImpl.java
│ │ │ │ │ └── XMLGeneratorServiceImpl.java
│ │ │ │ └── package-info.java
│ │ │ │ ├── servlets
│ │ │ │ └── impl
│ │ │ │ │ └── TriggerDeckDynamoServlet.java
│ │ │ │ ├── utils
│ │ │ │ ├── DynamicDeckUtils.java
│ │ │ │ ├── XMLResourceIterator.java
│ │ │ │ └── package-info.java
│ │ │ │ └── workflow
│ │ │ │ └── processes
│ │ │ │ └── impl
│ │ │ │ └── DynamicDeckBackTrackProcess.java
│ │ │ ├── json
│ │ │ ├── AbstractJSONObjectVisitor.java
│ │ │ ├── JcrJsonAdapter.java
│ │ │ ├── JsonObjectUtil.java
│ │ │ └── package-info.java
│ │ │ ├── logging
│ │ │ └── impl
│ │ │ │ └── JsonEventLogger.java
│ │ │ ├── marketo
│ │ │ ├── FormValue.java
│ │ │ ├── MarketoClientConfiguration.java
│ │ │ ├── MarketoClientConfigurationManager.java
│ │ │ ├── MarketoForm.java
│ │ │ ├── client
│ │ │ │ ├── MarketoApiException.java
│ │ │ │ ├── MarketoClient.java
│ │ │ │ ├── MarketoError.java
│ │ │ │ ├── MarketoField.java
│ │ │ │ ├── MarketoForm.java
│ │ │ │ ├── MarketoResponse.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── MarketoClientImpl.java
│ │ │ │ │ ├── MarketoFieldResponse.java
│ │ │ │ │ └── MarketoFormResponse.java
│ │ │ │ └── package-info.java
│ │ │ ├── impl
│ │ │ │ ├── FormValueImpl.java
│ │ │ │ ├── MarketoClientConfigurationImpl.java
│ │ │ │ ├── MarketoClientConfigurationManagerImpl.java
│ │ │ │ ├── MarketoFieldDataSource.java
│ │ │ │ ├── MarketoFormDataSource.java
│ │ │ │ ├── MarketoFormImpl.java
│ │ │ │ └── TestMarketoConnectionServlet.java
│ │ │ └── package-info.java
│ │ │ ├── mcp
│ │ │ ├── AdministratorsOnlyProcessDefinitionFactory.java
│ │ │ ├── AuthorizedGroupProcessDefinitionFactory.java
│ │ │ ├── ControlledProcessManager.java
│ │ │ ├── DynamicScriptResolverService.java
│ │ │ ├── McpLocalizationService.java
│ │ │ ├── ProcessDefinition.java
│ │ │ ├── ProcessDefinitionFactory.java
│ │ │ ├── ProcessInstance.java
│ │ │ ├── form
│ │ │ │ ├── AbstractContainerComponent.java
│ │ │ │ ├── AbstractGroupingContainerComponent.java
│ │ │ │ ├── AbstractResourceImpl.java
│ │ │ │ ├── AutocompleteComponent.java
│ │ │ │ ├── ButtonComponent.java
│ │ │ │ ├── CheckboxComponent.java
│ │ │ │ ├── ContainerComponent.java
│ │ │ │ ├── DatePickerComponent.java
│ │ │ │ ├── Description.java
│ │ │ │ ├── DialogProvider.java
│ │ │ │ ├── DialogProviderAnnotationProcessor.java
│ │ │ │ ├── DialogResourceProvider.java
│ │ │ │ ├── FieldComponent.java
│ │ │ │ ├── FieldsetComponent.java
│ │ │ │ ├── FileUploadComponent.java
│ │ │ │ ├── FormComponent.java
│ │ │ │ ├── FormField.java
│ │ │ │ ├── FormProcessor.java
│ │ │ │ ├── GeneratedDialog.java
│ │ │ │ ├── GeneratedDialogWrapper.java
│ │ │ │ ├── MultifieldComponent.java
│ │ │ │ ├── NumberfieldComponent.java
│ │ │ │ ├── PasswordComponent.java
│ │ │ │ ├── PathfieldComponent.java
│ │ │ │ ├── RadioComponent.java
│ │ │ │ ├── ReadonlyTextfieldComponent.java
│ │ │ │ ├── RichTextEditorComponent.java
│ │ │ │ ├── SelectComponent.java
│ │ │ │ ├── TagPickerComponent.java
│ │ │ │ ├── TextareaComponent.java
│ │ │ │ ├── TextfieldComponent.java
│ │ │ │ ├── package-info.java
│ │ │ │ └── workflow
│ │ │ │ │ ├── WorkflowModelSelector.java
│ │ │ │ │ ├── WorkflowStatusSelector.java
│ │ │ │ │ └── package-info.java
│ │ │ ├── impl
│ │ │ │ ├── ControlledProcessManagerImpl.java
│ │ │ │ ├── ControlledProcessManagerServlet.java
│ │ │ │ ├── DialogResourceProviderImpl.java
│ │ │ │ ├── GenericReportExcelServlet.java
│ │ │ │ ├── McpLocalizationConfiguration.java
│ │ │ │ ├── McpLocalizationServiceImpl.java
│ │ │ │ ├── ProcessErrorReportExcelServlet.java
│ │ │ │ ├── ProcessInstanceImpl.java
│ │ │ │ └── processes
│ │ │ │ │ ├── AssetFolderCreator.java
│ │ │ │ │ ├── AssetFolderCreatorFactory.java
│ │ │ │ │ ├── AssetReport.java
│ │ │ │ │ ├── AssetReportFactory.java
│ │ │ │ │ ├── BrokenLinksReport.java
│ │ │ │ │ ├── BrokenLinksReportFactory.java
│ │ │ │ │ ├── BulkPageTagger.java
│ │ │ │ │ ├── BulkPageTaggerFactory.java
│ │ │ │ │ ├── BulkWorkflow.java
│ │ │ │ │ ├── BulkWorkflowFactory.java
│ │ │ │ │ ├── DataImporter.java
│ │ │ │ │ ├── DataImporterFactory.java
│ │ │ │ │ ├── DeepPrune.java
│ │ │ │ │ ├── DeepPruneFactory.java
│ │ │ │ │ ├── ProcessCleanup.java
│ │ │ │ │ ├── ProcessCleanupFactory.java
│ │ │ │ │ ├── ReferenceFinder.java
│ │ │ │ │ ├── RefreshFolderThumbnailsFactory.java
│ │ │ │ │ ├── RefreshFolderTumbnails.java
│ │ │ │ │ ├── TagCreator.java
│ │ │ │ │ ├── TagCreatorFactory.java
│ │ │ │ │ ├── TagReportFactory.java
│ │ │ │ │ ├── TagReporter.java
│ │ │ │ │ ├── TreeReplication.java
│ │ │ │ │ ├── TreeReplicationFactory.java
│ │ │ │ │ ├── WorkflowRemover.java
│ │ │ │ │ ├── WorkflowRemoverFactory.java
│ │ │ │ │ ├── asset
│ │ │ │ │ ├── AssetIngestor.java
│ │ │ │ │ ├── AssetIngestorException.java
│ │ │ │ │ ├── ClientProvider.java
│ │ │ │ │ ├── FileAssetIngestor.java
│ │ │ │ │ ├── FileAssetIngestorFactory.java
│ │ │ │ │ ├── FileOrRendition.java
│ │ │ │ │ ├── Folder.java
│ │ │ │ │ ├── HierarchicalElement.java
│ │ │ │ │ ├── NameUtil.java
│ │ │ │ │ ├── NamesFilter.java
│ │ │ │ │ ├── S3AssetIngestor.java
│ │ │ │ │ ├── S3AssetIngestorFactory.java
│ │ │ │ │ ├── Source.java
│ │ │ │ │ ├── UrlAssetImport.java
│ │ │ │ │ └── UrlAssetImportFactory.java
│ │ │ │ │ ├── cfi
│ │ │ │ │ ├── ContentFragmentImport.java
│ │ │ │ │ └── ContentFragmentImportFactory.java
│ │ │ │ │ └── renovator
│ │ │ │ │ ├── MovingAsset.java
│ │ │ │ │ ├── MovingException.java
│ │ │ │ │ ├── MovingFolder.java
│ │ │ │ │ ├── MovingNode.java
│ │ │ │ │ ├── MovingPage.java
│ │ │ │ │ ├── MovingResource.java
│ │ │ │ │ ├── Renovator.java
│ │ │ │ │ ├── RenovatorFactory.java
│ │ │ │ │ ├── ReplicatorQueue.java
│ │ │ │ │ └── Util.java
│ │ │ ├── mbean
│ │ │ │ ├── CPMBean.java
│ │ │ │ └── package-info.java
│ │ │ ├── model
│ │ │ │ ├── AbstractReport.java
│ │ │ │ ├── ArchivedProcessFailure.java
│ │ │ │ ├── AvailableProcessDefinitions.java
│ │ │ │ ├── FieldFormat.java
│ │ │ │ ├── GenericBlobReport.java
│ │ │ │ ├── GenericReport.java
│ │ │ │ ├── ManagedProcess.java
│ │ │ │ ├── Result.java
│ │ │ │ ├── ValueFormat.java
│ │ │ │ ├── impl
│ │ │ │ │ └── ArchivedProcessInstance.java
│ │ │ │ └── package-info.java
│ │ │ ├── package-info.java
│ │ │ └── util
│ │ │ │ ├── AccessibleObjectUtil.java
│ │ │ │ ├── AnnotatedFieldDeserializer.java
│ │ │ │ ├── DeserializeException.java
│ │ │ │ ├── FrozenAsset.java
│ │ │ │ ├── FrozenRendition.java
│ │ │ │ ├── IntrospectionUtil.java
│ │ │ │ ├── StringUtil.java
│ │ │ │ ├── SyntheticResourceBuilder.java
│ │ │ │ ├── ValueMapSerializer.java
│ │ │ │ └── package-info.java
│ │ │ ├── models
│ │ │ ├── injectors
│ │ │ │ ├── annotation
│ │ │ │ │ ├── AemObject.java
│ │ │ │ │ ├── ChildResourceFromRequest.java
│ │ │ │ │ ├── ContentPolicyValue.java
│ │ │ │ │ ├── HierarchicalPageProperty.java
│ │ │ │ │ ├── I18N.java
│ │ │ │ │ ├── JsonValueMapValue.java
│ │ │ │ │ ├── PageProperty.java
│ │ │ │ │ ├── ParentResourceValueMapValue.java
│ │ │ │ │ ├── SharedValueMapValue.java
│ │ │ │ │ ├── TagProperty.java
│ │ │ │ │ ├── impl
│ │ │ │ │ │ ├── AemObjectAnnotationProcessorFactory.java
│ │ │ │ │ │ ├── ChildResourceFromRequestAnnotationProcessorFactory.java
│ │ │ │ │ │ ├── ContentPolicyValueAnnotationProcessorFactory.java
│ │ │ │ │ │ ├── HierarchicalPagePropertyAnnotationProcessorFactory.java
│ │ │ │ │ │ ├── I18NAnnotationProcessorFactory.java
│ │ │ │ │ │ ├── JsonValueMapValueAnnotationProcessorFactory.java
│ │ │ │ │ │ ├── PagePropertyAnnotationProcessorFactory.java
│ │ │ │ │ │ ├── ParentResourceValueMapValueAnnotationProcessorFactory.java
│ │ │ │ │ │ ├── SharedValueMapValueAnnotationProcessorFactory.java
│ │ │ │ │ │ └── TagPropertyAnnotationProcessorFactory.java
│ │ │ │ │ └── package-info.java
│ │ │ │ └── impl
│ │ │ │ │ ├── AemObjectInjector.java
│ │ │ │ │ ├── ChildResourceFromRequestInjector.java
│ │ │ │ │ ├── ContentPolicyValueInjector.java
│ │ │ │ │ ├── HierarchicalPagePropertyInjector.java
│ │ │ │ │ ├── I18nInjector.java
│ │ │ │ │ ├── InjectorUtils.java
│ │ │ │ │ ├── JsonValueMapValueInjector.java
│ │ │ │ │ ├── ParentResourceValueMapValueInjector.java
│ │ │ │ │ ├── SharedValueMapValueInjector.java
│ │ │ │ │ └── TagPropertyInjector.java
│ │ │ └── via
│ │ │ │ ├── annotations
│ │ │ │ ├── ContentPolicyViaType.java
│ │ │ │ ├── PageContentResourceViaType.java
│ │ │ │ └── package-info.java
│ │ │ │ └── impl
│ │ │ │ ├── ContentPolicyPropertiesViaProvider.java
│ │ │ │ └── PageContentResourceViaProvider.java
│ │ │ ├── notifications
│ │ │ ├── InboxNotification.java
│ │ │ ├── InboxNotificationSender.java
│ │ │ ├── impl
│ │ │ │ ├── InboxNotificationImpl.java
│ │ │ │ └── InboxNotificationSenderImpl.java
│ │ │ └── package-info.java
│ │ │ ├── oak
│ │ │ ├── EnsureOakIndexManager.java
│ │ │ ├── impl
│ │ │ │ ├── AppliableEnsureOakIndex.java
│ │ │ │ ├── EnsureOakIndex.java
│ │ │ │ ├── EnsureOakIndexJobHandler.java
│ │ │ │ ├── EnsureOakIndexManagerImpl.java
│ │ │ │ ├── EnsureOakIndexManagerMBean.java
│ │ │ │ └── EnsureOakIndexServlet.java
│ │ │ ├── package-info.java
│ │ │ └── sql2scorer
│ │ │ │ └── impl
│ │ │ │ └── servlets
│ │ │ │ └── ExplainScoreServlet.java
│ │ │ ├── ondeploy
│ │ │ ├── OnDeployExecutor.java
│ │ │ ├── OnDeployScriptProvider.java
│ │ │ ├── impl
│ │ │ │ ├── OnDeployEarlyTerminationException.java
│ │ │ │ ├── OnDeployExecutorImpl.java
│ │ │ │ └── OnDeployExecutorMBean.java
│ │ │ ├── package-info.java
│ │ │ └── scripts
│ │ │ │ ├── OnDeployScript.java
│ │ │ │ ├── OnDeployScriptBase.java
│ │ │ │ ├── OnDeployScriptException.java
│ │ │ │ └── package-info.java
│ │ │ ├── packagegarbagecollector
│ │ │ ├── PackageGarbageCollectionConfig.java
│ │ │ ├── PackageGarbageCollectionJob.java
│ │ │ ├── PackageGarbageCollectionScheduler.java
│ │ │ └── package-info.java
│ │ │ ├── packaging
│ │ │ ├── PackageHelper.java
│ │ │ ├── impl
│ │ │ │ ├── ACLPackagerServletImpl.java
│ │ │ │ ├── AbstractPackagerServlet.java
│ │ │ │ ├── AssetPackagerServletImpl.java
│ │ │ │ ├── AuthorizablePackagerServletImpl.java
│ │ │ │ ├── InstantPackageImpl.java
│ │ │ │ ├── JcrPackageCoverageProgressListener.java
│ │ │ │ ├── PackageHelperImpl.java
│ │ │ │ └── QueryPackagerServletImpl.java
│ │ │ ├── package-info.java
│ │ │ └── util
│ │ │ │ ├── AssetPackageUtil.java
│ │ │ │ └── package-info.java
│ │ │ ├── redirectmaps
│ │ │ ├── impl
│ │ │ │ ├── AddEntryServlet.java
│ │ │ │ ├── FakeHttpServletRequest.java
│ │ │ │ ├── RedirectEntriesServlet.java
│ │ │ │ ├── RedirectEntriesUtils.java
│ │ │ │ ├── RedirectMapServlet.java
│ │ │ │ ├── RemoveEntryServlet.java
│ │ │ │ └── UpdateEntryServlet.java
│ │ │ ├── models
│ │ │ │ ├── MapEntry.java
│ │ │ │ ├── RedirectConfigModel.java
│ │ │ │ ├── RedirectMapModel.java
│ │ │ │ └── package-info.java
│ │ │ └── package-info.java
│ │ │ ├── redirects
│ │ │ ├── LocationHeaderAdjuster.java
│ │ │ ├── filter
│ │ │ │ ├── RedirectFilter.java
│ │ │ │ ├── RedirectFilterMBean.java
│ │ │ │ └── package-info.java
│ │ │ ├── models
│ │ │ │ ├── Configurations.java
│ │ │ │ ├── ExportColumn.java
│ │ │ │ ├── HandleQueryString.java
│ │ │ │ ├── ImportLog.java
│ │ │ │ ├── RedirectConfiguration.java
│ │ │ │ ├── RedirectMatch.java
│ │ │ │ ├── RedirectRule.java
│ │ │ │ ├── RedirectState.java
│ │ │ │ ├── Redirects.java
│ │ │ │ ├── SubstitutionElement.java
│ │ │ │ ├── UpgradeLegacyRedirects.java
│ │ │ │ └── package-info.java
│ │ │ ├── package-info.java
│ │ │ └── servlets
│ │ │ │ ├── CreateRedirectConfigurationServlet.java
│ │ │ │ ├── ExportRedirectMapServlet.java
│ │ │ │ ├── ImportRedirectMapServlet.java
│ │ │ │ ├── RewriteMapServlet.java
│ │ │ │ └── package-info.java
│ │ │ ├── remoteassets
│ │ │ ├── RemoteAssetsBinarySync.java
│ │ │ ├── RemoteAssetsNodeSync.java
│ │ │ ├── RemoteAssetsNodeSyncTriggerMBean.java
│ │ │ ├── impl
│ │ │ │ ├── RemoteAssetDecorator.java
│ │ │ │ ├── RemoteAssets.java
│ │ │ │ ├── RemoteAssetsBinarySyncImpl.java
│ │ │ │ ├── RemoteAssetsConfigImpl.java
│ │ │ │ ├── RemoteAssetsNodeSyncImpl.java
│ │ │ │ ├── RemoteAssetsNodeSyncScheduler.java
│ │ │ │ ├── RemoteAssetsNodeSyncTrigger.java
│ │ │ │ └── RemoteAssetsServiceException.java
│ │ │ └── package-info.java
│ │ │ ├── replication
│ │ │ ├── AemPublishAgentFilter.java
│ │ │ ├── AgentHosts.java
│ │ │ ├── AgentIdsAgentFilter.java
│ │ │ ├── BrandPortalAgentFilter.java
│ │ │ ├── ReplicateVersion.java
│ │ │ ├── ReplicationResult.java
│ │ │ ├── dispatcher
│ │ │ │ ├── DispatcherFlushFilter.java
│ │ │ │ ├── DispatcherFlushRules.java
│ │ │ │ ├── DispatcherFlusher.java
│ │ │ │ ├── DispatcherFlusherModel.java
│ │ │ │ ├── FlushAggregateHandler.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── DispatcherFlushModelImpl.java
│ │ │ │ │ ├── DispatcherFlushRulesImpl.java
│ │ │ │ │ ├── DispatcherFlusherImpl.java
│ │ │ │ │ ├── DispatcherFlusherServlet.java
│ │ │ │ │ ├── RefetchFlushContentBuilderImpl.java
│ │ │ │ │ └── ReplicationResultListener.java
│ │ │ │ └── package-info.java
│ │ │ ├── impl
│ │ │ │ ├── AgentHostsImpl.java
│ │ │ │ ├── ReplicateVersionImpl.java
│ │ │ │ └── ReplicateVersionServlet.java
│ │ │ ├── package-info.java
│ │ │ ├── packages
│ │ │ │ └── automatic
│ │ │ │ │ ├── AutomaticPackageReplicatorMBean.java
│ │ │ │ │ ├── impl
│ │ │ │ │ ├── AutomaticPackageReplicatorJob.java
│ │ │ │ │ ├── ConfigurationUpdateListener.java
│ │ │ │ │ └── ReplicatePackageProcess.java
│ │ │ │ │ ├── model
│ │ │ │ │ ├── AutomaticPackageReplicatorModel.java
│ │ │ │ │ └── package-info.java
│ │ │ │ │ └── package-info.java
│ │ │ └── status
│ │ │ │ ├── ReplicationStatusManager.java
│ │ │ │ ├── impl
│ │ │ │ ├── JcrPackageReplicationStatusEventHandler.java
│ │ │ │ ├── ReplicatedByWorkflowProcess.java
│ │ │ │ ├── ReplicationStatusManagerImpl.java
│ │ │ │ └── SetReplicationStatusProcess.java
│ │ │ │ └── package-info.java
│ │ │ ├── reports
│ │ │ ├── api
│ │ │ │ ├── ReportCellCSVExporter.java
│ │ │ │ ├── ReportException.java
│ │ │ │ ├── ReportExecutor.java
│ │ │ │ ├── ResultsPage.java
│ │ │ │ └── package-info.java
│ │ │ ├── internal
│ │ │ │ ├── DelimiterConfiguration.java
│ │ │ │ ├── ExporterUtil.java
│ │ │ │ ├── PredictedTagsUtil.java
│ │ │ │ ├── ReportCSVExportServlet.java
│ │ │ │ ├── ReportExecutorProvider.java
│ │ │ │ ├── ReportsRenderCondition.java
│ │ │ │ ├── datasources
│ │ │ │ │ └── DynamicSelectDataSource.java
│ │ │ │ └── package-info.java
│ │ │ └── models
│ │ │ │ ├── ContainingPageReportCellCSVExporter.java
│ │ │ │ ├── DateReportCellCSVExporter.java
│ │ │ │ ├── PageReplicationStatusModel.java
│ │ │ │ ├── PathListReportConfig.java
│ │ │ │ ├── PathListReportExecutor.java
│ │ │ │ ├── PathReportCellCSVExporter.java
│ │ │ │ ├── PredictedTag.java
│ │ │ │ ├── PredictedTagReportCellCSVExporter.java
│ │ │ │ ├── PredictedTagsCellValue.java
│ │ │ │ ├── QueryReportConfig.java
│ │ │ │ ├── QueryReportExecutor.java
│ │ │ │ ├── ReferencesModel.java
│ │ │ │ ├── ReportCellValue.java
│ │ │ │ ├── ReportRunner.java
│ │ │ │ ├── StringReportCellCSVExporter.java
│ │ │ │ ├── TagReportCellCSVExporter.java
│ │ │ │ ├── TagsCellValue.java
│ │ │ │ └── package-info.java
│ │ │ ├── rewriter
│ │ │ ├── ContentHandlerBasedTransformer.java
│ │ │ ├── DelegatingTransformer.java
│ │ │ ├── impl
│ │ │ │ ├── ContentHandlerAdapter.java
│ │ │ │ ├── ContentVariableTransformer.java
│ │ │ │ ├── ContentVariableTransformerFactory.java
│ │ │ │ ├── PlainXMLSerializer.java
│ │ │ │ ├── PlainXMLSerializerFactory.java
│ │ │ │ ├── ResourceResolverMapTransformerFactory.java
│ │ │ │ ├── SaxElementUtils.java
│ │ │ │ ├── StaticReferenceRewriteTransformerFactory.java
│ │ │ │ ├── StylesheetInlinerTransformerFactory.java
│ │ │ │ ├── VersionedClientLibraryMd5CacheKey.java
│ │ │ │ ├── VersionedClientlibsTransformerFactory.java
│ │ │ │ ├── XMLParserGenerator.java
│ │ │ │ └── XMLParserGeneratorFactory.java
│ │ │ └── package-info.java
│ │ │ ├── scripting
│ │ │ └── impl
│ │ │ │ └── QueryBuilderBindingsValuesProvider.java
│ │ │ ├── social
│ │ │ └── linkedin
│ │ │ │ ├── LinkedInApi20.java
│ │ │ │ └── package-info.java
│ │ │ ├── sorter
│ │ │ ├── NodeSorter.java
│ │ │ ├── SortNodesOperation.java
│ │ │ ├── Sorters.java
│ │ │ ├── SortersPojo.java
│ │ │ ├── impl
│ │ │ │ ├── HierarchyNodeComparator.java
│ │ │ │ ├── NodeNameSorter.java
│ │ │ │ ├── NodeTitleSorter.java
│ │ │ │ └── SortersImpl.java
│ │ │ └── package-info.java
│ │ │ ├── synth
│ │ │ ├── Synthesizer.java
│ │ │ ├── WrappedRequestPathInfo.java
│ │ │ ├── children
│ │ │ │ ├── ChildrenAsPropertyResource.java
│ │ │ │ ├── InvalidDataFormatException.java
│ │ │ │ ├── SyntheticChildAsPropertyResource.java
│ │ │ │ ├── impl
│ │ │ │ │ └── JSONModifiableValueMapDecorator.java
│ │ │ │ └── package-info.java
│ │ │ ├── impl
│ │ │ │ ├── SynthesizedResource.java
│ │ │ │ └── SynthesizedSlingHttpServletRequest.java
│ │ │ └── package-info.java
│ │ │ ├── throttling
│ │ │ ├── CpuLoadEstimator.java
│ │ │ ├── LoadEstimator.java
│ │ │ ├── RequestThrottler.java
│ │ │ ├── ThrottlingConfiguration.java
│ │ │ ├── ThrottlingDecision.java
│ │ │ ├── ThrottlingState.java
│ │ │ └── package-info.java
│ │ │ ├── twitter
│ │ │ ├── TwitterClient.java
│ │ │ ├── impl
│ │ │ │ ├── TwitterAdapterFactory.java
│ │ │ │ ├── TwitterAdapterFactoryRegisterer.java
│ │ │ │ ├── TwitterClientImpl.java
│ │ │ │ ├── TwitterFeedScheduler.java
│ │ │ │ ├── TwitterFeedUpdater.java
│ │ │ │ └── TwitterFeedUpdaterImpl.java
│ │ │ └── package-info.java
│ │ │ ├── users
│ │ │ └── impl
│ │ │ │ ├── AbstractAuthorizable.java
│ │ │ │ ├── Ace.java
│ │ │ │ ├── EnsureAce.java
│ │ │ │ ├── EnsureAuthorizable.java
│ │ │ │ ├── EnsureAuthorizableException.java
│ │ │ │ ├── EnsureAuthorizableManager.java
│ │ │ │ ├── EnsureAuthorizableManagerImpl.java
│ │ │ │ ├── EnsureGroup.java
│ │ │ │ ├── EnsureServiceUser.java
│ │ │ │ ├── Group.java
│ │ │ │ ├── Operation.java
│ │ │ │ ├── ProtectedAuthorizables.java
│ │ │ │ └── ServiceUser.java
│ │ │ ├── util
│ │ │ ├── BufferedHttpServletResponse.java
│ │ │ ├── BufferedServletOutput.java
│ │ │ ├── BufferedServletResponse.java
│ │ │ ├── BufferedSlingHttpServletResponse.java
│ │ │ ├── ClusterLeader.java
│ │ │ ├── CookieUtil.java
│ │ │ ├── DynamicObjectInputStream.java
│ │ │ ├── InfoWriter.java
│ │ │ ├── ModeUtil.java
│ │ │ ├── OverridePathSlingRequestWrapper.java
│ │ │ ├── ParameterUtil.java
│ │ │ ├── PathInfoUtil.java
│ │ │ ├── QueryHelper.java
│ │ │ ├── RequireAem.java
│ │ │ ├── RequireAemModel.java
│ │ │ ├── ResourceDataUtil.java
│ │ │ ├── ResourceServiceManager.java
│ │ │ ├── ResourceUtil.java
│ │ │ ├── ServletOutputStreamWrapper.java
│ │ │ ├── TemplateUtil.java
│ │ │ ├── TextUtil.java
│ │ │ ├── ThreadContextClassLoaderTaskExecutor.java
│ │ │ ├── TypeUtil.java
│ │ │ ├── WorkflowHelper.java
│ │ │ ├── datadefinitions
│ │ │ │ ├── ResourceDefinition.java
│ │ │ │ ├── ResourceDefinitionBuilder.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── BasicResourceDefinition.java
│ │ │ │ │ ├── JcrValidNameDefinitionBuilderImpl.java
│ │ │ │ │ ├── LocalizedTitleDefinitionBuilderImpl.java
│ │ │ │ │ ├── LowercaseWithDashesDefinitionBuilderImpl.java
│ │ │ │ │ └── TitleAndNodeNameDefinitionBuilderImpl.java
│ │ │ │ └── package-info.java
│ │ │ ├── impl
│ │ │ │ ├── AbstractCacheMBean.java
│ │ │ │ ├── AbstractGuavaCacheMBean.java
│ │ │ │ ├── AbstractJCRCacheMBean.java
│ │ │ │ ├── Activator.java
│ │ │ │ ├── BundleDisabler.java
│ │ │ │ ├── CacheMBean.java
│ │ │ │ ├── ComponentDisabler.java
│ │ │ │ ├── DelegatingServletFactoryImpl.java
│ │ │ │ ├── DiscoveryServiceHelper.java
│ │ │ │ ├── JcrCacheMBean.java
│ │ │ │ ├── MultifieldPanelDialogRewriteRule.java
│ │ │ │ ├── QueryHelperImpl.java
│ │ │ │ ├── ReflectionUtil.java
│ │ │ │ ├── RequireAemImpl.java
│ │ │ │ ├── SecureRandomStringUtils.java
│ │ │ │ ├── UrlFilter.java
│ │ │ │ ├── ValueMapTypeConverter.java
│ │ │ │ ├── WorkflowHelperImpl.java
│ │ │ │ ├── XPathPasshtroughEvaluator.java
│ │ │ │ └── exception
│ │ │ │ │ └── CacheMBeanException.java
│ │ │ ├── mbeans
│ │ │ │ ├── ResourceServiceManagerMBean.java
│ │ │ │ └── package-info.java
│ │ │ ├── package-info.java
│ │ │ └── visitors
│ │ │ │ ├── ContentVisitor.java
│ │ │ │ ├── ResourceRunnable.java
│ │ │ │ ├── SimpleFilteringResourceVisitor.java
│ │ │ │ ├── TraversalException.java
│ │ │ │ ├── TreeFilteringResourceVisitor.java
│ │ │ │ └── package-info.java
│ │ │ ├── version
│ │ │ ├── Evolution.java
│ │ │ ├── EvolutionAnalyser.java
│ │ │ ├── EvolutionContext.java
│ │ │ ├── EvolutionEntry.java
│ │ │ ├── impl
│ │ │ │ ├── CurrentEvolutionEntryImpl.java
│ │ │ │ ├── CurrentEvolutionImpl.java
│ │ │ │ ├── EvolutionAnalyserImpl.java
│ │ │ │ ├── EvolutionConfig.java
│ │ │ │ ├── EvolutionContextImpl.java
│ │ │ │ ├── EvolutionEntryImpl.java
│ │ │ │ ├── EvolutionImpl.java
│ │ │ │ └── EvolutionPathUtil.java
│ │ │ ├── model
│ │ │ │ ├── EvolutionModel.java
│ │ │ │ └── package-info.java
│ │ │ └── package-info.java
│ │ │ ├── wcm
│ │ │ ├── AuthorUIHelper.java
│ │ │ ├── ComponentEditType.java
│ │ │ ├── ComponentErrorHandler.java
│ │ │ ├── PageRootProvider.java
│ │ │ ├── comparisons
│ │ │ │ ├── PageCompareData.java
│ │ │ │ ├── PageCompareDataLine.java
│ │ │ │ ├── PageCompareDataLines.java
│ │ │ │ ├── PageCompareDataLoader.java
│ │ │ │ ├── VersionSelection.java
│ │ │ │ ├── VersionService.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── PageCompareDataImpl.java
│ │ │ │ │ ├── PageCompareDataLineImpl.java
│ │ │ │ │ ├── PageCompareDataLinesImpl.java
│ │ │ │ │ ├── PageCompareDataLoaderImpl.java
│ │ │ │ │ ├── Properties.java
│ │ │ │ │ ├── VersionSelectionImpl.java
│ │ │ │ │ ├── VersionServiceImpl.java
│ │ │ │ │ └── lines
│ │ │ │ │ │ ├── LineImpl.java
│ │ │ │ │ │ ├── LinesGenerator.java
│ │ │ │ │ │ └── Stepper.java
│ │ │ │ ├── lines
│ │ │ │ │ ├── Line.java
│ │ │ │ │ ├── Lines.java
│ │ │ │ │ └── package-info.java
│ │ │ │ ├── model
│ │ │ │ │ ├── PageCompareModel.java
│ │ │ │ │ └── package-info.java
│ │ │ │ └── package-info.java
│ │ │ ├── components
│ │ │ │ ├── NamedTransformImageModel.java
│ │ │ │ ├── TwitterFeedModel.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── NamedTransformImageModelImpl.java
│ │ │ │ │ └── TwitterFeedModelImpl.java
│ │ │ │ └── package-info.java
│ │ │ ├── datasources
│ │ │ │ ├── DataSourceBuilder.java
│ │ │ │ ├── DataSourceOption.java
│ │ │ │ ├── impl
│ │ │ │ │ └── DataSourceBuilderImpl.java
│ │ │ │ └── package-info.java
│ │ │ ├── impl
│ │ │ │ ├── AbstractDynamicClientLibraryServlet.java
│ │ │ │ ├── AbstractWidgetConfigurationServlet.java
│ │ │ │ ├── AcsCommonsConsoleAuthoringUIModeFilter.java
│ │ │ │ ├── AcsCommonsConsoleEditorFilter.java
│ │ │ │ ├── AemEnvironmentIndicatorFilter.java
│ │ │ │ ├── AuthorUIHelperImpl.java
│ │ │ │ ├── ComponentErrorHandlerImpl.java
│ │ │ │ ├── CopySitesPublishUrlFeature.java
│ │ │ │ ├── DesignReferenceProvider.java
│ │ │ │ ├── FileImporter.java
│ │ │ │ ├── PageRootProviderConfig.java
│ │ │ │ ├── PageRootProviderMultiImpl.java
│ │ │ │ ├── PagesReferenceProvider.java
│ │ │ │ ├── PropertyMergePostProcessor.java
│ │ │ │ ├── PublishUrlServlet.java
│ │ │ │ ├── QrCodeServlet.java
│ │ │ │ ├── RobotsServlet.java
│ │ │ │ ├── SiteMapServlet.java
│ │ │ │ ├── TagWidgetConfigurationServlet.java
│ │ │ │ └── WorkflowModelFilterPageInfoProvider.java
│ │ │ ├── notifications
│ │ │ │ ├── SystemNotifications.java
│ │ │ │ ├── impl
│ │ │ │ │ └── SystemNotificationsImpl.java
│ │ │ │ └── package-info.java
│ │ │ ├── package-info.java
│ │ │ ├── properties
│ │ │ │ └── shared
│ │ │ │ │ ├── SharedComponentProperties.java
│ │ │ │ │ ├── SharedValueMapResourceAdapter.java
│ │ │ │ │ ├── impl
│ │ │ │ │ ├── SharedComponentPropertiesBindingsValuesProvider.java
│ │ │ │ │ ├── SharedComponentPropertiesImpl.java
│ │ │ │ │ ├── SharedComponentPropertiesPageInfoProvider.java
│ │ │ │ │ ├── SharedPropertiesRequestCache.java
│ │ │ │ │ └── SharedValueMapResourceAdapterImpl.java
│ │ │ │ │ └── package-info.java
│ │ │ ├── tags
│ │ │ │ ├── DefineObjects.java
│ │ │ │ ├── package-info.java
│ │ │ │ └── wcmmode
│ │ │ │ │ ├── AbstractMode.java
│ │ │ │ │ ├── DesignMode.java
│ │ │ │ │ ├── DisabledMode.java
│ │ │ │ │ ├── EditMode.java
│ │ │ │ │ ├── PreviewMode.java
│ │ │ │ │ ├── SetWCMMode.java
│ │ │ │ │ ├── WCMModeFunctions.java
│ │ │ │ │ └── package-info.java
│ │ │ └── vanity
│ │ │ │ ├── VanityURLService.java
│ │ │ │ ├── VanityUrlAdjuster.java
│ │ │ │ ├── WrappedRequestPathInfoWrapper.java
│ │ │ │ ├── impl
│ │ │ │ ├── ExtensionlessRequestWrapper.java
│ │ │ │ ├── RequestPathInfoWrapper.java
│ │ │ │ └── VanityURLServiceImpl.java
│ │ │ │ └── package-info.java
│ │ │ └── workflow
│ │ │ ├── WorkflowPackageManager.java
│ │ │ ├── bulk
│ │ │ ├── execution
│ │ │ │ ├── BulkWorkflowEngine.java
│ │ │ │ ├── BulkWorkflowRunner.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── BulkWorkflowEngineImpl.java
│ │ │ │ │ ├── ConfigResourceVisitor.java
│ │ │ │ │ ├── TransientWorkflowUtil.java
│ │ │ │ │ ├── runners
│ │ │ │ │ │ ├── AEMTransientWorkflowRunnerImpl.java
│ │ │ │ │ │ ├── AEMWorkflowRunnerImpl.java
│ │ │ │ │ │ ├── AbstractAEMWorkflowRunner.java
│ │ │ │ │ │ ├── AbstractWorkflowRunner.java
│ │ │ │ │ │ ├── FastActionManagerRunnerImpl.java
│ │ │ │ │ │ └── SyntheticWorkflowRunnerImpl.java
│ │ │ │ │ └── servlets
│ │ │ │ │ │ ├── InitFormServlet.java
│ │ │ │ │ │ ├── JSONErrorUtil.java
│ │ │ │ │ │ ├── ResumeServlet.java
│ │ │ │ │ │ ├── StartServlet.java
│ │ │ │ │ │ ├── StatusServlet.java
│ │ │ │ │ │ └── StopServlet.java
│ │ │ │ ├── model
│ │ │ │ │ ├── Config.java
│ │ │ │ │ ├── Failure.java
│ │ │ │ │ ├── Payload.java
│ │ │ │ │ ├── PayloadGroup.java
│ │ │ │ │ ├── Status.java
│ │ │ │ │ ├── SubStatus.java
│ │ │ │ │ ├── Workspace.java
│ │ │ │ │ └── package-info.java
│ │ │ │ └── package-info.java
│ │ │ ├── package-info.java
│ │ │ └── removal
│ │ │ │ ├── WorkflowInstanceRemover.java
│ │ │ │ ├── WorkflowRemovalConfig.java
│ │ │ │ ├── WorkflowRemovalException.java
│ │ │ │ ├── WorkflowRemovalForceQuitException.java
│ │ │ │ ├── WorkflowRemovalMaxDurationExceededException.java
│ │ │ │ ├── WorkflowRemovalStatus.java
│ │ │ │ ├── impl
│ │ │ │ ├── WorkflowInstanceFolderComparator.java
│ │ │ │ ├── WorkflowInstanceRemoverImpl.java
│ │ │ │ └── WorkflowInstanceRemoverScheduler.java
│ │ │ │ └── package-info.java
│ │ │ ├── impl
│ │ │ └── WorkflowPackageManagerImpl.java
│ │ │ ├── package-info.java
│ │ │ ├── process
│ │ │ ├── impl
│ │ │ │ ├── BrandPortalSyncProcess.java
│ │ │ │ ├── CopyPropertiesProcess.java
│ │ │ │ ├── DamMetadataPropertyResetProcess.java
│ │ │ │ ├── ParameterizedActivatePageProcess.java
│ │ │ │ ├── ParameterizedDeactivatePageProcess.java
│ │ │ │ ├── ReplicateWithOptionsWorkflowProcess.java
│ │ │ │ ├── SetImageOrientationProcess.java
│ │ │ │ ├── SyncSmartTagsToXmpMetadataNodeProcess.java
│ │ │ │ ├── SyntheticWrapperWorkflowProcess.java
│ │ │ │ └── WorkflowDelegationStep.java
│ │ │ └── package-info.java
│ │ │ └── synthetic
│ │ │ ├── SyntheticWorkflowModel.java
│ │ │ ├── SyntheticWorkflowRunner.java
│ │ │ ├── SyntheticWorkflowStep.java
│ │ │ ├── cq
│ │ │ ├── WrappedSyntheticWorkItem.java
│ │ │ └── package-info.java
│ │ │ ├── granite
│ │ │ ├── WrappedSyntheticWorkItem.java
│ │ │ ├── WrappedSyntheticWorkflowSession.java
│ │ │ └── package-info.java
│ │ │ ├── impl
│ │ │ ├── SyntheticMetaDataMap.java
│ │ │ ├── SyntheticWorkflowData.java
│ │ │ ├── SyntheticWorkflowModelImpl.java
│ │ │ ├── SyntheticWorkflowProcess.java
│ │ │ ├── SyntheticWorkflowRunnerAccessor.java
│ │ │ ├── SyntheticWorkflowRunnerImpl.java
│ │ │ ├── SyntheticWorkflowStepImpl.java
│ │ │ ├── cq
│ │ │ │ ├── SyntheticRoute.java
│ │ │ │ ├── SyntheticWorkItem.java
│ │ │ │ ├── SyntheticWorkflow.java
│ │ │ │ ├── SyntheticWorkflowSession.java
│ │ │ │ └── exceptions
│ │ │ │ │ ├── SyntheticCompleteWorkflowException.java
│ │ │ │ │ ├── SyntheticRestartWorkflowException.java
│ │ │ │ │ ├── SyntheticTerminateWorkflowException.java
│ │ │ │ │ └── SyntheticWorkflowModelException.java
│ │ │ └── granite
│ │ │ │ ├── SyntheticRoute.java
│ │ │ │ ├── SyntheticWorkItem.java
│ │ │ │ ├── SyntheticWorkflow.java
│ │ │ │ ├── SyntheticWorkflowModelImpl.java
│ │ │ │ ├── SyntheticWorkflowSession.java
│ │ │ │ └── exceptions
│ │ │ │ ├── SyntheticCompleteWorkflowException.java
│ │ │ │ ├── SyntheticRestartWorkflowException.java
│ │ │ │ ├── SyntheticTerminateWorkflowException.java
│ │ │ │ └── SyntheticWorkflowModelException.java
│ │ │ └── package-info.java
│ └── resources
│ │ ├── META-INF
│ │ ├── COPYRIGHT
│ │ ├── LICENSE
│ │ ├── audio.tld
│ │ ├── dam.tld
│ │ ├── wcm.tld
│ │ └── wcmmode.tld
│ │ ├── com
│ │ └── adobe
│ │ │ └── acs
│ │ │ └── commons
│ │ │ └── oak
│ │ │ └── impl
│ │ │ └── EnsureOakIndexServlet_doGet.html
│ │ ├── icc
│ │ ├── cmyk
│ │ │ ├── CoatedFOGRA27.icc
│ │ │ ├── CoatedFOGRA39.icc
│ │ │ ├── JapanColor2001Coated.icc
│ │ │ ├── JapanColor2001Uncoated.icc
│ │ │ ├── JapanColor2002Newspaper.icc
│ │ │ ├── JapanWebCoated.icc
│ │ │ ├── USSheetfedCoated.icc
│ │ │ ├── USSheetfedUncoated.icc
│ │ │ ├── USWebCoatedSWOP.icc
│ │ │ ├── USWebUncoated.icc
│ │ │ ├── UncoatedFOGRA29.icc
│ │ │ └── WebCoatedFOGRA28.icc
│ │ └── rgb
│ │ │ ├── AdobeRGB1998.icc
│ │ │ ├── AppleRGB.icc
│ │ │ └── ColorMatchRGB.icc
│ │ └── remoteassets
│ │ ├── remote_asset.3g2
│ │ ├── remote_asset.3gp
│ │ ├── remote_asset.aac
│ │ ├── remote_asset.ai
│ │ ├── remote_asset.aiff
│ │ ├── remote_asset.avi
│ │ ├── remote_asset.bmp
│ │ ├── remote_asset.css
│ │ ├── remote_asset.doc
│ │ ├── remote_asset.docx
│ │ ├── remote_asset.eps
│ │ ├── remote_asset.epub
│ │ ├── remote_asset.f4v
│ │ ├── remote_asset.flv
│ │ ├── remote_asset.gif
│ │ ├── remote_asset.html
│ │ ├── remote_asset.indd
│ │ ├── remote_asset.jar
│ │ ├── remote_asset.jpeg
│ │ ├── remote_asset.jpg
│ │ ├── remote_asset.m2v
│ │ ├── remote_asset.m4v
│ │ ├── remote_asset.midi
│ │ ├── remote_asset.mov
│ │ ├── remote_asset.mp3
│ │ ├── remote_asset.mp4
│ │ ├── remote_asset.mpeg
│ │ ├── remote_asset.mpg
│ │ ├── remote_asset.ogg
│ │ ├── remote_asset.ogv
│ │ ├── remote_asset.pdf
│ │ ├── remote_asset.png
│ │ ├── remote_asset.ppt
│ │ ├── remote_asset.pptx
│ │ ├── remote_asset.ps
│ │ ├── remote_asset.psd
│ │ ├── remote_asset.rar
│ │ ├── remote_asset.rtf
│ │ ├── remote_asset.svg
│ │ ├── remote_asset.swf
│ │ ├── remote_asset.tar
│ │ ├── remote_asset.tgz
│ │ ├── remote_asset.tif
│ │ ├── remote_asset.tiff
│ │ ├── remote_asset.txt
│ │ ├── remote_asset.wav
│ │ ├── remote_asset.webm
│ │ ├── remote_asset.wma
│ │ ├── remote_asset.wmv
│ │ ├── remote_asset.xls
│ │ ├── remote_asset.xlsx
│ │ ├── remote_asset.xml
│ │ └── remote_asset.zip
│ └── test
│ ├── java
│ ├── ch
│ │ └── randelshofer
│ │ │ └── media
│ │ │ ├── io
│ │ │ ├── ByteArrayImageInputStream.java
│ │ │ ├── ImageInputStreamAdapter.java
│ │ │ └── ImageInputStreamImpl2.java
│ │ │ └── jpeg
│ │ │ ├── CMYKJPEGImageReader.java
│ │ │ ├── CMYKJPEGImageReaderSpi.java
│ │ │ └── JFIFInputStream.java
│ ├── com
│ │ ├── adobe
│ │ │ └── acs
│ │ │ │ └── commons
│ │ │ │ ├── adobeio
│ │ │ │ └── service
│ │ │ │ │ └── impl
│ │ │ │ │ ├── EndpointServiceImplTest.java
│ │ │ │ │ └── IntegrationServiceImplTest.java
│ │ │ │ ├── analysis
│ │ │ │ └── jcrchecksum
│ │ │ │ │ └── impl
│ │ │ │ │ ├── ChecksumGeneratorImplTest.java
│ │ │ │ │ └── servlets
│ │ │ │ │ ├── ChecksumGeneratorServletTest.java
│ │ │ │ │ └── JSONDumpServletTest.java
│ │ │ │ ├── audit_log_search
│ │ │ │ └── impl
│ │ │ │ │ └── AuditLogSearchServletTest.java
│ │ │ │ ├── auth
│ │ │ │ └── saml
│ │ │ │ │ └── impl
│ │ │ │ │ └── OktaLogoutHandlerTest.java
│ │ │ │ ├── ccvar
│ │ │ │ ├── ContextualContentVariableTestUtil.java
│ │ │ │ ├── filter
│ │ │ │ │ └── ContentVariableJsonFilterTest.java
│ │ │ │ └── impl
│ │ │ │ │ ├── PropertyAggregatorServiceImplTest.java
│ │ │ │ │ └── UrlEncodeActionTest.java
│ │ │ │ ├── cloudconfig
│ │ │ │ └── impl
│ │ │ │ │ ├── CloudConfigurationListImplTest.java
│ │ │ │ │ └── CreateCloudConfigServletTest.java
│ │ │ │ ├── contentsync
│ │ │ │ ├── MockCryptoSupport.java
│ │ │ │ ├── TestContentCatalog.java
│ │ │ │ ├── TestContentCatalogJobConsumer.java
│ │ │ │ ├── TestContentReader.java
│ │ │ │ ├── TestContentSync.java
│ │ │ │ ├── TestSyncHostConfiguration.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── TestEncryptPasswordPostProcessor.java
│ │ │ │ │ └── TestLastModifiedStrategy.java
│ │ │ │ └── servlet
│ │ │ │ │ └── TestContentCatalogServlet.java
│ │ │ │ ├── cqsearch
│ │ │ │ ├── QueryUtilTest.java
│ │ │ │ └── impl
│ │ │ │ │ └── NodeExistsPredicateEvaluatorTest.java
│ │ │ │ ├── dam
│ │ │ │ ├── DAMFunctionsTest.java
│ │ │ │ ├── RenditionModifyingProcessTest.java
│ │ │ │ ├── RenditionPatternPickerTest.java
│ │ │ │ ├── TestHarness.java
│ │ │ │ ├── TestRenditionModifyingProcess.java
│ │ │ │ └── impl
│ │ │ │ │ ├── ColorConversionImplTest.java
│ │ │ │ │ ├── CopyAssetPublishUrlFeatureTest.java
│ │ │ │ │ ├── CustomComponentActivatorListServletTest.java
│ │ │ │ │ └── ReviewTaskAssetMoverHandlerTest.java
│ │ │ │ ├── data
│ │ │ │ ├── SpreadsheetTest.java
│ │ │ │ └── VariantTest.java
│ │ │ │ ├── dispatcher
│ │ │ │ └── impl
│ │ │ │ │ └── PermissionSensitiveCacheServletTest.java
│ │ │ │ ├── email
│ │ │ │ ├── impl
│ │ │ │ │ └── EmailServiceImplTest.java
│ │ │ │ └── process
│ │ │ │ │ └── impl
│ │ │ │ │ ├── SendTemplatedEmailProcessTest.java
│ │ │ │ │ ├── SendTemplatedEmailUtilsTest.java
│ │ │ │ │ ├── TestHarness.java
│ │ │ │ │ └── TestSendTemplatedEmailProcess.java
│ │ │ │ ├── errorpagehandler
│ │ │ │ ├── cache
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── CacheEntryTest.java
│ │ │ │ │ │ └── ErrorPageCacheImplTest.java
│ │ │ │ └── impl
│ │ │ │ │ └── ErrorPageHandlerImplTest.java
│ │ │ │ ├── etag
│ │ │ │ └── impl
│ │ │ │ │ └── EtagMessageDigestServletFilterTest.java
│ │ │ │ ├── exporters
│ │ │ │ └── impl
│ │ │ │ │ ├── tags
│ │ │ │ │ ├── TagsExportServiceTest.java
│ │ │ │ │ └── TagsExportServletTest.java
│ │ │ │ │ └── users
│ │ │ │ │ ├── UserExportServletTest.java
│ │ │ │ │ ├── UsersInitServletTest.java
│ │ │ │ │ └── UsersSaveServletTest.java
│ │ │ │ ├── fam
│ │ │ │ ├── ActionsTest.java
│ │ │ │ └── impl
│ │ │ │ │ ├── ActionManagerTest.java
│ │ │ │ │ └── ThrottledTaskRunnerTest.java
│ │ │ │ ├── filefetch
│ │ │ │ └── impl
│ │ │ │ │ ├── FileFetchImplTest.java
│ │ │ │ │ └── FileFetchMBeanTest.java
│ │ │ │ ├── functions
│ │ │ │ └── RoundRobinTest.java
│ │ │ │ ├── genericlists
│ │ │ │ └── impl
│ │ │ │ │ ├── GenericListAdapterFactoryTest.java
│ │ │ │ │ └── GenericListJsonResourceProviderTest.java
│ │ │ │ ├── granite
│ │ │ │ └── ui
│ │ │ │ │ └── components
│ │ │ │ │ └── impl
│ │ │ │ │ └── include
│ │ │ │ │ ├── IncludeDecoratorFilterImplTest.java
│ │ │ │ │ └── NamespaceResourceWrapperTest.java
│ │ │ │ ├── hc
│ │ │ │ └── impl
│ │ │ │ │ ├── HealthCheckStatusEmailerTest.java
│ │ │ │ │ └── SMTPMailServiceHealthCheckTest.java
│ │ │ │ ├── http
│ │ │ │ ├── headers
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── AbstractDispatcherCacheHeaderFilterTest.java
│ │ │ │ │ │ ├── AbstractExpiresHeaderFilterTest.java
│ │ │ │ │ │ ├── DailyExpiresHeaderFilterTest.java
│ │ │ │ │ │ ├── DispatcherMaxAgeHeaderFilterTest.java
│ │ │ │ │ │ ├── MonthlyExpiresHeaderFilterTest.java
│ │ │ │ │ │ └── WeeklyExpiresHeaderFilterTest.java
│ │ │ │ └── impl
│ │ │ │ │ └── HttpClientFactoryImplTest.java
│ │ │ │ ├── httpcache
│ │ │ │ ├── config
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── CombinedCacheConfigExtensionTest.java
│ │ │ │ │ │ ├── CombinedCacheKeyFactoryTest.java
│ │ │ │ │ │ ├── HttpCacheConfigImplTest.java
│ │ │ │ │ │ ├── RequestCookieCacheExtensionTest.java
│ │ │ │ │ │ ├── RequestHeaderHttpCacheConfigExtensionTest.java
│ │ │ │ │ │ ├── RequestParameterHttpCacheConfigExtensionTest.java
│ │ │ │ │ │ ├── RequestPathHttpCacheConfigExtensionTest.java
│ │ │ │ │ │ ├── ResourcePropertiesHttpCacheConfigExtensionTest.java
│ │ │ │ │ │ ├── ResourceTypeHttpCacheConfigExtensionTest.java
│ │ │ │ │ │ └── keys
│ │ │ │ │ │ └── KeyValueCacheKeyTest.java
│ │ │ │ ├── engine
│ │ │ │ │ ├── HttpCacheServletResponseWrapperTest.java
│ │ │ │ │ └── impl
│ │ │ │ │ │ └── HttpCacheEngineImplTest.java
│ │ │ │ ├── invalidator
│ │ │ │ │ └── event
│ │ │ │ │ │ └── JCRNodeChangeEventHandlerTest.java
│ │ │ │ └── store
│ │ │ │ │ ├── caffeine
│ │ │ │ │ └── impl
│ │ │ │ │ │ └── CaffeineMemHttpCacheStoreImplTest.java
│ │ │ │ │ ├── jcr
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── CacheKeyMock.java
│ │ │ │ │ │ ├── JCRHttpCacheStoreImplTest.java
│ │ │ │ │ │ ├── visitor
│ │ │ │ │ │ └── mock
│ │ │ │ │ │ │ └── RootNodeMockFactory.java
│ │ │ │ │ │ └── writer
│ │ │ │ │ │ ├── BucketNodeFactoryTest.java
│ │ │ │ │ │ ├── EntryNodeWriterMocks.java
│ │ │ │ │ │ └── EntryNodeWriterTest.java
│ │ │ │ │ └── mem
│ │ │ │ │ └── impl
│ │ │ │ │ └── MemHttpCacheStoreImplTest.java
│ │ │ │ ├── i18n
│ │ │ │ └── impl
│ │ │ │ │ └── I18nProviderImplTest.java
│ │ │ │ ├── images
│ │ │ │ ├── imagetransformers
│ │ │ │ │ └── impl
│ │ │ │ │ │ └── BoundedResizeTransformerImplTest.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── EmptyImageTransformer.java
│ │ │ │ │ ├── EmptyNamedImageTransformer.java
│ │ │ │ │ ├── FeaturedNamedImageTransformer.java
│ │ │ │ │ ├── NamedTransformImageServletTest.java
│ │ │ │ │ ├── ProgressiveJpegTest.java
│ │ │ │ │ └── SmallNamedImageTransformer.java
│ │ │ │ └── transformers
│ │ │ │ │ └── impl
│ │ │ │ │ ├── AdjustImageTransformerImplTest.java
│ │ │ │ │ ├── CropImageTransformerImplTest.java
│ │ │ │ │ ├── GreyscaleImageTransformerImplTest.java
│ │ │ │ │ ├── LetterPillarBoxImageTransformerImplTest.java
│ │ │ │ │ ├── ResizeImageTransformerImplTest.java
│ │ │ │ │ ├── RotateImageTransformerImplTest.java
│ │ │ │ │ ├── ScaleImageTransformerImplTest.java
│ │ │ │ │ ├── SharpenImageTransformerImplTest.java
│ │ │ │ │ └── composites
│ │ │ │ │ └── MultiplyBlendCompositeTest.java
│ │ │ │ ├── indesign
│ │ │ │ └── dynamicdeckdynamo
│ │ │ │ │ ├── services
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── DynamicDeckConfigurationServiceImplTest.java
│ │ │ │ │ │ └── DynamicDeckServiceImplTest.java
│ │ │ │ │ └── servlets
│ │ │ │ │ └── impl
│ │ │ │ │ └── TriggerDeckDynamoServletTest.java
│ │ │ │ ├── it
│ │ │ │ └── build
│ │ │ │ │ ├── BundleContainsTldsIT.java
│ │ │ │ │ └── ScrMetadataIT.java
│ │ │ │ ├── json
│ │ │ │ ├── JcrJsonAdapterTest.java
│ │ │ │ └── JsonObjectUtilTest.java
│ │ │ │ ├── logging
│ │ │ │ └── impl
│ │ │ │ │ └── JsonEventLoggerTest.java
│ │ │ │ ├── marketo
│ │ │ │ ├── MarketoClientConfigurationImplTest.java
│ │ │ │ ├── client
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── StaticResponseMarketoClient.java
│ │ │ │ │ │ └── TestMarketoClient.java
│ │ │ │ └── impl
│ │ │ │ │ ├── MarketoAPIExceptionTest.java
│ │ │ │ │ ├── TestFormValueImpl.java
│ │ │ │ │ ├── TestMarketoClientConfiguration.java
│ │ │ │ │ ├── TestMarketoConnectionServletTest.java
│ │ │ │ │ ├── TestMarketoFieldDataSource.java
│ │ │ │ │ ├── TestMarketoFormDataSource.java
│ │ │ │ │ ├── TestMarketoFormImpl.java
│ │ │ │ │ └── TestMarketoInterfaces.java
│ │ │ │ ├── mcp
│ │ │ │ ├── AuthorizedGroupProcessDefinitionFactoryTest.java
│ │ │ │ ├── form
│ │ │ │ │ ├── AbstractResourceImplTest.java
│ │ │ │ │ ├── DatePickerComponentTest.java
│ │ │ │ │ ├── DialogProviderAnnotationProcessorTest.java
│ │ │ │ │ ├── FieldComponentTest.java
│ │ │ │ │ ├── FieldsetTest.java
│ │ │ │ │ ├── RadioComponentTest.java
│ │ │ │ │ ├── SelectComponentTest.java
│ │ │ │ │ ├── SyntheticDialogTest.java
│ │ │ │ │ └── SyntheticFormResourceTest.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── ControlledProcessManagerServletTest.java
│ │ │ │ │ ├── DynamicScriptServiceProviderTest.java
│ │ │ │ │ ├── FactoryInjectionTest.java
│ │ │ │ │ ├── McpLocalizationServiceTest.java
│ │ │ │ │ ├── ProcessErrorReportExcelServletTest.java
│ │ │ │ │ ├── TestGenericReportExcelServlet.java
│ │ │ │ │ └── processes
│ │ │ │ │ │ ├── AssetFolderCreatorTest.java
│ │ │ │ │ │ ├── AssetFolderDefinitionTest.java
│ │ │ │ │ │ ├── BrokenLinksTest.java
│ │ │ │ │ │ ├── BulkPageTaggerTest.java
│ │ │ │ │ │ ├── BulkWorkflowTest.java
│ │ │ │ │ │ ├── DataImporterTest.java
│ │ │ │ │ │ ├── ReferenceFinderTest.java
│ │ │ │ │ │ ├── RefreshFolderTumbnailsTest.java
│ │ │ │ │ │ ├── TagCreatorTest.java
│ │ │ │ │ │ ├── TagReportTest.java
│ │ │ │ │ │ ├── TreeReplicationTest.java
│ │ │ │ │ │ ├── WorkflowRemoverTest.java
│ │ │ │ │ │ ├── asset
│ │ │ │ │ │ ├── AssetIngestorUtil.java
│ │ │ │ │ │ ├── FileAssetIngestorTest.java
│ │ │ │ │ │ ├── FileAssetIngestorUtilitiesTest.java
│ │ │ │ │ │ ├── FileOrRenditionTest.java
│ │ │ │ │ │ ├── MockDirectoryBuilder.java
│ │ │ │ │ │ ├── NamesFilterTest.java
│ │ │ │ │ │ ├── S3AssetIngestorTest.java
│ │ │ │ │ │ ├── S3AssetIngestorUtilitiesTest.java
│ │ │ │ │ │ └── UrlAssetImportTest.java
│ │ │ │ │ │ ├── cfi
│ │ │ │ │ │ ├── ContentFragmentImportTest.java
│ │ │ │ │ │ ├── MockContentElement.java
│ │ │ │ │ │ ├── MockContentFragment.java
│ │ │ │ │ │ ├── MockDataType.java
│ │ │ │ │ │ └── MockFragmentData.java
│ │ │ │ │ │ └── renovator
│ │ │ │ │ │ └── RenovatorTest.java
│ │ │ │ ├── model
│ │ │ │ │ ├── GenericBlobReportTest.java
│ │ │ │ │ ├── SimpleModelFour.java
│ │ │ │ │ ├── SimpleModelOne.java
│ │ │ │ │ ├── SimpleModelThree.java
│ │ │ │ │ ├── SimpleModelTwo.java
│ │ │ │ │ └── ValueFormatTest.java
│ │ │ │ └── util
│ │ │ │ │ ├── AnnotatedFieldDeserializerTest.java
│ │ │ │ │ ├── IntrospectionTest.java
│ │ │ │ │ └── ValueMapSerializerTest.java
│ │ │ │ ├── models
│ │ │ │ ├── injectors
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── AemObjectInjectorTest.java
│ │ │ │ │ │ ├── ChildResourceFromRequestInjectorTest.java
│ │ │ │ │ │ ├── ContentPolicyValueInjectorTest.java
│ │ │ │ │ │ ├── HierarchicalPagePropertyInjectorTest.java
│ │ │ │ │ │ ├── I18NInjectorTest.java
│ │ │ │ │ │ ├── InjectorAEMContext.java
│ │ │ │ │ │ ├── JsonValueMapValueInjectorTest.java
│ │ │ │ │ │ ├── ParentResourceValueMapValueInjectorTest.java
│ │ │ │ │ │ ├── SharedValueMapValueInjectorTest.java
│ │ │ │ │ │ ├── TagPropertyInjectorTest.java
│ │ │ │ │ │ └── model
│ │ │ │ │ │ ├── TestHierarchicalPagePropertiesModel.java
│ │ │ │ │ │ ├── TestJsonObjectInjection.java
│ │ │ │ │ │ ├── TestModelChildResourceFromRequest.java
│ │ │ │ │ │ ├── TestModelChildResourceFromRequestChild.java
│ │ │ │ │ │ ├── TestModelI18nValue.java
│ │ │ │ │ │ ├── TestPagePropertiesModel.java
│ │ │ │ │ │ ├── TestParentResourceValueMapValueModel.java
│ │ │ │ │ │ ├── TestResourceModel.java
│ │ │ │ │ │ ├── TestSharedValueMapValueModel.java
│ │ │ │ │ │ ├── TestTagPropertyInjectModel.java
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ ├── TestHierarchicalPagePropertiesModelModelImpl.java
│ │ │ │ │ │ ├── TestJsonObject.java
│ │ │ │ │ │ ├── TestJsonObjectInjectionImpl.java
│ │ │ │ │ │ ├── TestModelChildResourceFromRequestChildImpl.java
│ │ │ │ │ │ ├── TestModelChildResourceFromRequestImpl.java
│ │ │ │ │ │ ├── TestModelI18nValueImpl.java
│ │ │ │ │ │ ├── TestPagePropertiesModelModelImpl.java
│ │ │ │ │ │ ├── TestParentResourceValueMapValueModelImpl.java
│ │ │ │ │ │ ├── TestResourceModelImpl.java
│ │ │ │ │ │ ├── TestSharedValueMapValueModelImpl.java
│ │ │ │ │ │ └── TestTagPropertyInjectModelImpl.java
│ │ │ │ └── via
│ │ │ │ │ └── impl
│ │ │ │ │ └── PageContentResourceViaProviderTest.java
│ │ │ │ ├── oak
│ │ │ │ ├── impl
│ │ │ │ │ ├── EnsureOakIndexJobHandlerTest.java
│ │ │ │ │ ├── EnsureOakIndexManagerImplTest.java
│ │ │ │ │ ├── EnsureOakIndexServletTest.java
│ │ │ │ │ └── EnsureOakIndexTest.java
│ │ │ │ └── sql2scorer
│ │ │ │ │ └── impl
│ │ │ │ │ └── servlets
│ │ │ │ │ └── ExplainScoreServletTest.java
│ │ │ │ ├── ondeploy
│ │ │ │ ├── impl
│ │ │ │ │ └── OnDeployExecutorImplTest.java
│ │ │ │ └── scripts
│ │ │ │ │ ├── OnDeployScriptBaseTest.java
│ │ │ │ │ ├── OnDeployScriptTestExampleFailExecute.java
│ │ │ │ │ ├── OnDeployScriptTestExampleFlipFlop.java
│ │ │ │ │ ├── OnDeployScriptTestExampleMakeChangesThenFail.java
│ │ │ │ │ ├── OnDeployScriptTestExampleSuccess1.java
│ │ │ │ │ ├── OnDeployScriptTestExampleSuccess2.java
│ │ │ │ │ └── OnDeployScriptTestExampleSuccessWithPause.java
│ │ │ │ ├── packagegarbagecollector
│ │ │ │ ├── PackageGarbageCollectionJobTest.java
│ │ │ │ └── PackageGarbageCollectionSchedulerTest.java
│ │ │ │ ├── packaging
│ │ │ │ └── impl
│ │ │ │ │ ├── AssetPackagerServletImplTest.java
│ │ │ │ │ └── PackageHelperImplTest.java
│ │ │ │ ├── redirectmaps
│ │ │ │ ├── impl
│ │ │ │ │ ├── FakeHttpServletRequestTest.java
│ │ │ │ │ └── TestServlets.java
│ │ │ │ └── models
│ │ │ │ │ ├── MapEntryTest.java
│ │ │ │ │ └── RedirectMapModelTest.java
│ │ │ │ ├── redirects
│ │ │ │ ├── Asserts.java
│ │ │ │ ├── RedirectResourceBuilder.java
│ │ │ │ ├── filter
│ │ │ │ │ └── RedirectFilterTest.java
│ │ │ │ ├── models
│ │ │ │ │ ├── RedirectConfigurationTest.java
│ │ │ │ │ ├── RedirectRuleTest.java
│ │ │ │ │ ├── SubstitutionElementTest.java
│ │ │ │ │ └── UpgradeLegacyRedirectsTest.java
│ │ │ │ └── servlets
│ │ │ │ │ ├── CreateRedirectConfigurationServletTest.java
│ │ │ │ │ ├── ExportRedirectMapServletTest.java
│ │ │ │ │ ├── ImportRedirectMapServletTest.java
│ │ │ │ │ └── RewriteMapServletTest.java
│ │ │ │ ├── remoteassets
│ │ │ │ └── impl
│ │ │ │ │ ├── RemoteAssetDecoratorTest.java
│ │ │ │ │ ├── RemoteAssetsBinarySyncImplTest.java
│ │ │ │ │ ├── RemoteAssetsConfigImplTest.java
│ │ │ │ │ ├── RemoteAssetsNodeSyncImplTest.java
│ │ │ │ │ └── RemoteAssetsTestUtil.java
│ │ │ │ ├── replication
│ │ │ │ ├── AgentIdsAgentFilterTest.java
│ │ │ │ ├── BrandPortalAgentFilterTest.java
│ │ │ │ ├── dispatcher
│ │ │ │ │ ├── DispatcherFlushFilterTest.java
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── DispatcherFlushRulesImplTest.java
│ │ │ │ │ │ ├── DispatcherFlusherImplTest.java
│ │ │ │ │ │ └── RefetchFlushContentBuilderImplTest.java
│ │ │ │ ├── impl
│ │ │ │ │ └── ReplicateVersionImplTest.java
│ │ │ │ └── status
│ │ │ │ │ └── impl
│ │ │ │ │ ├── JcrPackageReplicationStatusEventHandlerTest.java
│ │ │ │ │ ├── ReplicationStatusManagerImplTest.java
│ │ │ │ │ └── SetReplicationStatusProcessTest.java
│ │ │ │ ├── reports
│ │ │ │ ├── api
│ │ │ │ │ ├── ReportExceptionTest.java
│ │ │ │ │ └── ResultsPageTest.java
│ │ │ │ ├── internal
│ │ │ │ │ ├── DelimiterConfigurationTest.java
│ │ │ │ │ ├── ExporterUtilTest.java
│ │ │ │ │ └── datasources
│ │ │ │ │ │ └── DynamicSelectDataSourceTest.java
│ │ │ │ └── models
│ │ │ │ │ ├── ContainingPageReportCellCSVExporterTest.java
│ │ │ │ │ ├── DateReportCellCSVExporterTest.java
│ │ │ │ │ ├── MockReportExecutor.java
│ │ │ │ │ ├── PathListReportExecutorTest.java
│ │ │ │ │ ├── PathReportCellCSVExporterTest.java
│ │ │ │ │ ├── PredictedTagReportCellCSVExporterTest.java
│ │ │ │ │ ├── PredictedTagsCellValueTest.java
│ │ │ │ │ ├── QueryReportExecutorTest.java
│ │ │ │ │ ├── ReferencesModelTest.java
│ │ │ │ │ ├── ReportCellValueTest.java
│ │ │ │ │ ├── ReportRunnerTest.java
│ │ │ │ │ ├── StringReportCellCSVExporterTest.java
│ │ │ │ │ ├── TagReportCellCSVExporterTest.java
│ │ │ │ │ ├── TagsCellValueTest.java
│ │ │ │ │ └── references
│ │ │ │ │ ├── MockReferenceList.java
│ │ │ │ │ └── MockReferencesAggregator.java
│ │ │ │ ├── rewriter
│ │ │ │ ├── DelegatingTransformerTest.java
│ │ │ │ └── impl
│ │ │ │ │ ├── ContentHandlerAdapterTest.java
│ │ │ │ │ ├── ContentVariableTransformerFactoryTest.java
│ │ │ │ │ ├── ResourceResolverMapTransformerFactoryTest.java
│ │ │ │ │ ├── SaxElementUtilsTest.java
│ │ │ │ │ ├── StaticReferenceRewriteTransformerFactoryTest.java
│ │ │ │ │ ├── StylesheetInlinerTransformerFactoryTest.java
│ │ │ │ │ ├── VersionedClientlibsTransformerFactoryTest.java
│ │ │ │ │ └── XMLParserGeneratorTest.java
│ │ │ │ ├── scripting
│ │ │ │ └── impl
│ │ │ │ │ └── QueryBuilderBindingsValuesProviderTest.java
│ │ │ │ ├── social
│ │ │ │ └── linkedin
│ │ │ │ │ └── LinkedInApi20Test.java
│ │ │ │ ├── sorter
│ │ │ │ └── SortNodesOperationTest.java
│ │ │ │ ├── synth
│ │ │ │ ├── children
│ │ │ │ │ └── ChildrenAsPropertyResourceTest.java
│ │ │ │ └── impl
│ │ │ │ │ └── SynthesizedSlingHttpServletRequestTest.java
│ │ │ │ ├── testutil
│ │ │ │ └── LogTester.java
│ │ │ │ ├── throttling
│ │ │ │ ├── CpuLoadEstimatorTest.java
│ │ │ │ ├── RequestThrottlerTest.java
│ │ │ │ └── ThrottlingStateTest.java
│ │ │ │ ├── twitter
│ │ │ │ └── impl
│ │ │ │ │ ├── TwitterAdapterFactoryTest.java
│ │ │ │ │ └── TwitterFeedSchedulerTest.java
│ │ │ │ ├── users
│ │ │ │ └── impl
│ │ │ │ │ ├── AbstractAuthorizableTest.java
│ │ │ │ │ ├── EnsureAceTest.java
│ │ │ │ │ └── GroupTest.java
│ │ │ │ ├── util
│ │ │ │ ├── BufferedServletOutputTest.java
│ │ │ │ ├── CookieUtilTest.java
│ │ │ │ ├── InfoWriterTest.java
│ │ │ │ ├── ModeUtilTest.java
│ │ │ │ ├── OverridePathSlingRequestWrapperTest.java
│ │ │ │ ├── ParameterUtilTest.java
│ │ │ │ ├── PathInfoUtilTest.java
│ │ │ │ ├── ResourceUtilTest.java
│ │ │ │ ├── TemplateUtilTest.java
│ │ │ │ ├── TextUtilTest.java
│ │ │ │ ├── ThreadContextClassLoaderTaskExecutorTest.java
│ │ │ │ ├── TypeUtilTest.java
│ │ │ │ ├── datadefinitions
│ │ │ │ │ └── impl
│ │ │ │ │ │ ├── JcrValidNameDefinitionBuilderImplTest.java
│ │ │ │ │ │ ├── LocalizedTitleDefinitionBuilderImplTest.java
│ │ │ │ │ │ ├── LowercaseWithDashesDefinitionBuilderImplTest.java
│ │ │ │ │ │ └── TitleAndNodeNameDefinitionBuilderImplTest.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── ActivatorHelper.java
│ │ │ │ │ ├── BundleDisablerTest.java
│ │ │ │ │ ├── DiscoveryServiceHelperTest.java
│ │ │ │ │ ├── QueryHelperImplTest.java
│ │ │ │ │ ├── ReflectionUtilTest.java
│ │ │ │ │ ├── RequireAemImplTest.java
│ │ │ │ │ ├── UrlFilterTest.java
│ │ │ │ │ └── WorkflowHelperImplTest.java
│ │ │ │ └── visitors
│ │ │ │ │ ├── ContentVisitorTest.java
│ │ │ │ │ ├── SimpleFilteringResourceVisitorTest.java
│ │ │ │ │ └── TreeFilteringResourceVisitorTest.java
│ │ │ │ ├── version
│ │ │ │ └── impl
│ │ │ │ │ ├── EvolutionConfigTest.java
│ │ │ │ │ └── EvolutionContextImplTest.java
│ │ │ │ ├── wcm
│ │ │ │ ├── comparisons
│ │ │ │ │ ├── impl
│ │ │ │ │ │ ├── PageCompareDataImplTest.java
│ │ │ │ │ │ ├── PageCompareDataLineImplTest.java
│ │ │ │ │ │ ├── PageCompareDataLinesTest.java
│ │ │ │ │ │ ├── PageCompareDataLoaderImplTest.java
│ │ │ │ │ │ ├── PropertiesTest.java
│ │ │ │ │ │ ├── VersionSelectionTest.java
│ │ │ │ │ │ ├── VersionServiceImplTest.java
│ │ │ │ │ │ └── lines
│ │ │ │ │ │ │ ├── LineImplTest.java
│ │ │ │ │ │ │ ├── LinesTest.java
│ │ │ │ │ │ │ └── StepperTest.java
│ │ │ │ │ └── model
│ │ │ │ │ │ └── PageCompareModelTest.java
│ │ │ │ ├── impl
│ │ │ │ │ ├── AcsCommonsConsoleAuthoringUIModeFilterTest.java
│ │ │ │ │ ├── AemEnvironmentIndicatorFilterTest.java
│ │ │ │ │ ├── AuthorUIHelperImplTest.java
│ │ │ │ │ ├── ComponentErrorHandlerImplTest.java
│ │ │ │ │ ├── CopySitesPublishUrlFeatureTest.java
│ │ │ │ │ ├── DesignReferenceProviderTest.java
│ │ │ │ │ ├── FileImporterTest.java
│ │ │ │ │ ├── PageRootProviderConfigTest.java
│ │ │ │ │ ├── PageRootProviderMultiImplTest.java
│ │ │ │ │ ├── PagesReferenceProviderTest.java
│ │ │ │ │ ├── PropertyMergePostProcessorTest.java
│ │ │ │ │ ├── PublishUrlServletTest.java
│ │ │ │ │ ├── QrCodeServletTest.java
│ │ │ │ │ ├── RobotsServletTest.java
│ │ │ │ │ └── SiteMapServletTest.java
│ │ │ │ ├── notifications
│ │ │ │ │ └── impl
│ │ │ │ │ │ └── SystemNotificationsImplTest.java
│ │ │ │ ├── properties
│ │ │ │ │ └── shared
│ │ │ │ │ │ └── impl
│ │ │ │ │ │ ├── SharedComponentPropertiesBindingsValuesProviderTest.java
│ │ │ │ │ │ └── SharedValueMapResourceAdapterImplTest.java
│ │ │ │ ├── tags
│ │ │ │ │ └── wcmmode
│ │ │ │ │ │ ├── AbstractModeTest.java
│ │ │ │ │ │ ├── DesignModeTest.java
│ │ │ │ │ │ ├── DisabledModeTest.java
│ │ │ │ │ │ ├── EditModeTest.java
│ │ │ │ │ │ ├── PreviewModeTest.java
│ │ │ │ │ │ ├── SetWCMModeTest.java
│ │ │ │ │ │ └── WCMModeFunctionsTest.java
│ │ │ │ └── vanity
│ │ │ │ │ └── impl
│ │ │ │ │ ├── ExtensionlessRequestWrapperTest.java
│ │ │ │ │ ├── RequestPathInfoWrapperTest.java
│ │ │ │ │ └── VanityURLServiceImplTest.java
│ │ │ │ └── workflow
│ │ │ │ ├── bulk
│ │ │ │ └── removal
│ │ │ │ │ ├── WorkflowInstanceFolderComparatorTest.java
│ │ │ │ │ └── WorkflowInstanceRemoverTest.java
│ │ │ │ ├── impl
│ │ │ │ └── WorkflowPackageManagerImplTest.java
│ │ │ │ ├── process
│ │ │ │ └── impl
│ │ │ │ │ ├── BrandPortalSyncProcessTest.java
│ │ │ │ │ ├── CopyPropertiesProcessTest.java
│ │ │ │ │ ├── ReplicateWithOptionsWorkflowProcessTest.java
│ │ │ │ │ ├── SetImageOrientationProcessTest.java
│ │ │ │ │ └── SyncSmartTagsToXmpMetadataNodeProcessTest.java
│ │ │ │ └── synthetic
│ │ │ │ └── impl
│ │ │ │ ├── DeprecatedSyntheticCqWorkflowRunnerImplTest.java
│ │ │ │ ├── DeprecatedSyntheticGraniteWorkflowRunnerImplTest.java
│ │ │ │ ├── DeprecatedSyntheticMixedWorkflowRunnerImplTest.java
│ │ │ │ ├── SyntheticCqWorkflowRunnerImplTest.java
│ │ │ │ ├── SyntheticGraniteWorkflowRunnerImplTest.java
│ │ │ │ ├── SyntheticMixedWorkflowRunnerImplTest.java
│ │ │ │ ├── SyntheticWorkflowStepImplTest.java
│ │ │ │ ├── cq
│ │ │ │ ├── SyntheticWorkItemTest.java
│ │ │ │ └── SyntheticWorkflowSessionTest.java
│ │ │ │ ├── cqtestprocesses
│ │ │ │ ├── GoNextWorkflowProcess.java
│ │ │ │ ├── NoNextWorkflowProcess.java
│ │ │ │ ├── ReadDataWorkflowProcess.java
│ │ │ │ ├── RestartWorkflowProcess.java
│ │ │ │ ├── SetDataWorkflowProcess.java
│ │ │ │ ├── TerminateDataWorkflowProcess.java
│ │ │ │ ├── UpdateWorkflowDataWorkflowProcess.java
│ │ │ │ ├── WfArgsWorkflowProcess.java
│ │ │ │ └── WfDataWorkflowProcess.java
│ │ │ │ ├── granite
│ │ │ │ ├── SyntheticWorkItemTest.java
│ │ │ │ └── SyntheticWorkflowSessionTest.java
│ │ │ │ └── granitetestprocesses
│ │ │ │ ├── GoNextWorkflowProcess.java
│ │ │ │ ├── NoNextWorkflowProcess.java
│ │ │ │ ├── ReadDataWorkflowProcess.java
│ │ │ │ ├── RestartWorkflowProcess.java
│ │ │ │ ├── SetDataWorkflowProcess.java
│ │ │ │ ├── TerminateDataWorkflowProcess.java
│ │ │ │ ├── UpdateWorkflowDataWorkflowProcess.java
│ │ │ │ ├── WfArgsWorkflowProcess.java
│ │ │ │ └── WfDataWorkflowProcess.java
│ │ └── amazonaws
│ │ │ └── util
│ │ │ └── StringUtils.java
│ ├── io
│ │ └── wcm
│ │ │ └── testing
│ │ │ └── mock
│ │ │ └── aem
│ │ │ └── MockPageManagerFactory.java
│ └── org
│ │ └── apache
│ │ └── jackrabbit
│ │ └── oak
│ │ └── spi
│ │ └── commit
│ │ └── CommitInfo.java
│ └── resources
│ ├── ch
│ └── randelshofer
│ │ └── media
│ │ └── jpeg
│ │ └── Generic CMYK Profile.icc
│ ├── com
│ └── adobe
│ │ └── acs
│ │ └── commons
│ │ ├── audit_log_search
│ │ └── impl
│ │ │ ├── AuditLogSearchServletTest.json
│ │ │ └── audit.cnd
│ │ ├── ccvar
│ │ ├── filter
│ │ │ └── ContentVariableJsonFilterContent.json
│ │ └── impl
│ │ │ ├── PropertyAggregatorServiceAppsContent.json
│ │ │ └── PropertyAggregatorServiceContent.json
│ │ ├── cloudconfig
│ │ └── cloudconfig.json
│ │ ├── dam
│ │ └── impl
│ │ │ └── ReviewTaskAssetMoverHandlerTest.json
│ │ ├── data
│ │ └── spreadsheet-data-types.xlsx
│ │ ├── dynamicdeckdynamo
│ │ └── dynamicdeckResources.json
│ │ ├── email
│ │ └── impl
│ │ │ ├── emailTemplate.txt
│ │ │ └── emailTemplateAttachment.html
│ │ ├── errorpagehandler
│ │ └── impl
│ │ │ └── ErrorPageHandlerImplTest.json
│ │ ├── exporters
│ │ └── impl
│ │ │ └── tags
│ │ │ ├── brandTestCqTags.json
│ │ │ └── brandTestTags.json
│ │ ├── granite
│ │ └── ui
│ │ │ └── components
│ │ │ └── impl
│ │ │ └── include
│ │ │ ├── filter-test.json
│ │ │ └── namespace-wrapper-test.json
│ │ ├── httpcache
│ │ ├── engine
│ │ │ └── impl
│ │ │ │ └── cachecontent.html
│ │ └── store
│ │ │ ├── caffeine
│ │ │ └── impl
│ │ │ │ └── cachecontent.html
│ │ │ ├── jcr
│ │ │ └── impl
│ │ │ │ ├── visitor
│ │ │ │ └── mock
│ │ │ │ │ └── cachecontent.html
│ │ │ │ └── writer
│ │ │ │ └── cachecontent.html
│ │ │ └── mem
│ │ │ └── impl
│ │ │ └── cachecontent.html
│ │ ├── marketo
│ │ ├── cloudconfig.json
│ │ ├── field-response.json
│ │ ├── form-response.json
│ │ ├── formvalue.json
│ │ ├── pages.json
│ │ ├── response-error.json
│ │ ├── response-noassets.json
│ │ ├── response-notsuccess.json
│ │ └── token-response.json
│ │ ├── mcp
│ │ └── impl
│ │ │ └── processes
│ │ │ ├── BulkWorkflowTest.json
│ │ │ ├── asset-folder-creator.xlsx
│ │ │ ├── asset-ingestor.json
│ │ │ ├── bulkPageTagger.xlsx
│ │ │ ├── content.json
│ │ │ ├── data-importer.xlsx
│ │ │ ├── lotsofchildren.json
│ │ │ ├── tag-creator.xlsx
│ │ │ └── tags.json
│ │ ├── models
│ │ └── injectors
│ │ │ └── impl
│ │ │ ├── tags.json
│ │ │ └── we-retail-pages.json
│ │ ├── packaging
│ │ └── impl
│ │ │ ├── AssetPackagerServletConfiguration.json
│ │ │ ├── AssetPackagerServletConfiguration2.json
│ │ │ ├── AssetPackagerServletConfiguration3.json
│ │ │ ├── AssetPackagerServletConfiguration4.json
│ │ │ ├── AssetPackagerServletConfiguration5.json
│ │ │ ├── AssetPackagerServletConfiguration6.json
│ │ │ ├── AssetPackagerServletContent.json
│ │ │ ├── AssetPackagerServletDamContent.json
│ │ │ └── AssetPackagerServletPackagesContent.json
│ │ ├── replication
│ │ └── status
│ │ │ └── impl
│ │ │ ├── ReplicationStatusManagerImplTest.json
│ │ │ └── replication.cnd
│ │ ├── rewriter
│ │ └── impl
│ │ │ └── ContentVariableTransformerContent.json
│ │ ├── wcm
│ │ ├── impl
│ │ │ ├── AemEnvironmentIndicatorFilterTest.json
│ │ │ ├── PagesReferenceProviderTest.json
│ │ │ ├── PublishUrlServletResponse.json
│ │ │ ├── RobotsServlet.json
│ │ │ ├── RobotsServlet_testAllowFolderAndDisallowPage.txt
│ │ │ ├── RobotsServlet_testCrawlerDelay.txt
│ │ │ ├── RobotsServlet_testDisallowFolderAndAllowPage.txt
│ │ │ ├── RobotsServlet_testWriteFromAsset.txt
│ │ │ ├── RobotsServlet_testWriteFromOsgiConfig.txt
│ │ │ ├── RobotsServlet_testWriteFromOsgiConfigSimple.txt
│ │ │ ├── RobotsServlet_testWriteFromPageProperties.txt
│ │ │ ├── RobotsServlet_testWriteFromPageProperty.txt
│ │ │ ├── SiteMapServlet.json
│ │ │ └── emailTemplate.txt
│ │ └── vanity
│ │ │ └── impl
│ │ │ └── RequestPathInfoWrapperContent.json
│ │ └── workflow
│ │ ├── bulk
│ │ └── removal
│ │ │ ├── WorkflowInstanceRemoverTest.json
│ │ │ └── WorkflowInstanceRemoverTest_empty.json
│ │ └── process
│ │ └── impl
│ │ ├── CopyPropertiesProcessTest.json
│ │ ├── ReplicateWithOptionsWorkflowProcessTest.json
│ │ └── SyncSmartTagsToXmpMetadataNodeTest.json
│ ├── contentsync
│ ├── asset.json
│ ├── jcr_content.json
│ ├── ordered-folder.json
│ ├── riverside-camping-australia.1.json
│ └── wknd-faqs.json
│ ├── img
│ └── test.png
│ ├── logback-test-no-logging.xml
│ ├── logback-test.xml
│ └── remoteassetstest
│ ├── cq5dam.thumbnail.140.100.png
│ ├── cq5dam.thumbnail.48.48.png
│ ├── cq5dam.web.1280.1280.png
│ ├── nodesync
│ ├── dam.a.a1jpg.content.json
│ ├── dam.a.a1jpg.content.metadata.json
│ ├── dam.a.a1jpg.content.renditions.1280.content.json
│ ├── dam.a.a1jpg.content.renditions.1280.json
│ ├── dam.a.a1jpg.content.renditions.48.content.json
│ ├── dam.a.a1jpg.content.renditions.48.json
│ ├── dam.a.a1jpg.content.renditions.json
│ ├── dam.a.a1jpg.content.renditions.original.content.json
│ ├── dam.a.a1jpg.content.renditions.original.json
│ ├── dam.a.a1jpg.json
│ ├── dam.a.a1sub.a3gif.content.json
│ ├── dam.a.a1sub.a3gif.content.metadata.json
│ ├── dam.a.a1sub.a3gif.content.renditions.1280.content.json
│ ├── dam.a.a1sub.a3gif.content.renditions.1280.json
│ ├── dam.a.a1sub.a3gif.content.renditions.48.content.json
│ ├── dam.a.a1sub.a3gif.content.renditions.48.json
│ ├── dam.a.a1sub.a3gif.content.renditions.json
│ ├── dam.a.a1sub.a3gif.content.renditions.original.content.json
│ ├── dam.a.a1sub.a3gif.content.renditions.original.json
│ ├── dam.a.a1sub.a3gif.json
│ ├── dam.a.a1sub.content.json
│ ├── dam.a.a1sub.json
│ ├── dam.a.a2png.content.json
│ ├── dam.a.a2png.content.metadata.json
│ ├── dam.a.a2png.content.renditions.1280.content.json
│ ├── dam.a.a2png.content.renditions.1280.json
│ ├── dam.a.a2png.content.renditions.48.content.json
│ ├── dam.a.a2png.content.renditions.48.json
│ ├── dam.a.a2png.content.renditions.json
│ ├── dam.a.a2png.content.renditions.original.content.json
│ ├── dam.a.a2png.content.renditions.original.json
│ ├── dam.a.a2png.json
│ ├── dam.a.content.json
│ ├── dam.a.json
│ ├── dam.b.content.json
│ ├── dam.b.json
│ ├── tags.a.a1.a1a.json
│ ├── tags.a.a1.json
│ ├── tags.a.a2.json
│ ├── tags.a.json
│ ├── tags.b.b1.json
│ └── tags.b.json
│ └── original.png
├── copy-javadoc.sh
├── dependency-check-maven-plugin-suppression.xml
├── generate-user-uuid.groovy
├── oakpal-checks
├── pom.xml
└── src
│ ├── main
│ ├── java
│ │ └── com
│ │ │ └── adobe
│ │ │ └── acs
│ │ │ └── commons
│ │ │ └── oakpal
│ │ │ └── checks
│ │ │ ├── AcsCommonsAuthorizableCompatibilityCheck.java
│ │ │ ├── ContentClassifications.java
│ │ │ ├── ImportedPackages.java
│ │ │ ├── RecommendEnsureAuthorizable.java
│ │ │ └── RecommendEnsureOakIndex.java
│ ├── resources
│ │ ├── OAKPAL-INF
│ │ │ └── checklist
│ │ │ │ ├── acs-commons-integrators.json
│ │ │ │ ├── acs-internal.json
│ │ │ │ ├── content-class-aem64.json
│ │ │ │ └── content-class-aem65.json
│ │ ├── bundleinfo
│ │ │ └── 6.5.json
│ │ └── com
│ │ │ └── adobe
│ │ │ └── acs
│ │ │ └── commons
│ │ │ └── oakpal
│ │ │ └── checks
│ │ │ ├── AcsCommonsAuthorizableCompatibilityCheck.properties
│ │ │ ├── ContentClassifications.properties
│ │ │ ├── ImportedPackages.properties
│ │ │ ├── RecommendEnsureAuthorizable.properties
│ │ │ └── RecommendEnsureOakIndex.properties
│ └── script
│ │ └── ExtractBundleInfo.groovy
│ └── test
│ ├── java
│ └── com
│ │ └── adobe
│ │ └── acs
│ │ └── commons
│ │ └── oakpal
│ │ ├── checks
│ │ ├── AcsCommonsAuthorizableCompatibilityCheckTest.java
│ │ ├── CheckTestBase.java
│ │ ├── ContentClassificationsTest.java
│ │ ├── ImportedPackagesTest.java
│ │ ├── RecommendEnsureAuthorizableTest.java
│ │ └── RecommendEnsureOakIndexTest.java
│ │ └── it
│ │ └── ChecklistIT.java
│ └── resources
│ ├── content-classifications-filevault
│ ├── META-INF
│ │ └── vault
│ │ │ ├── filter.xml
│ │ │ └── properties.xml
│ └── jcr_root
│ │ ├── apps
│ │ └── acs
│ │ │ ├── abstract
│ │ │ ├── .content.xml
│ │ │ └── script.js
│ │ │ ├── final
│ │ │ ├── .content.xml
│ │ │ └── script.js
│ │ │ ├── internal
│ │ │ ├── .content.xml
│ │ │ └── script.js
│ │ │ ├── invalidcmp_final
│ │ │ └── .content.xml
│ │ │ ├── invalidcmp_final_child
│ │ │ └── .content.xml
│ │ │ ├── invalidcmp_internal
│ │ │ └── .content.xml
│ │ │ ├── invalidcmp_internal_child
│ │ │ └── .content.xml
│ │ │ ├── public
│ │ │ ├── .content.xml
│ │ │ └── script.js
│ │ │ ├── validcmp_abstract
│ │ │ └── .content.xml
│ │ │ ├── validcmp_abstract_child
│ │ │ └── .content.xml
│ │ │ ├── validcmp_internal_public
│ │ │ └── .content.xml
│ │ │ ├── validcmp_internal_public_child
│ │ │ └── .content.xml
│ │ │ ├── validcmp_public
│ │ │ └── .content.xml
│ │ │ └── validcmp_public_child
│ │ │ └── .content.xml
│ │ ├── content
│ │ └── acs
│ │ │ ├── invalidpage_abstract
│ │ │ └── .content.xml
│ │ │ ├── invalidpage_final_child
│ │ │ └── .content.xml
│ │ │ ├── invalidpage_final_implicitchild
│ │ │ └── .content.xml
│ │ │ ├── invalidpage_internal
│ │ │ └── .content.xml
│ │ │ ├── validpage_final
│ │ │ └── .content.xml
│ │ │ └── validpage_public
│ │ │ └── .content.xml
│ │ └── libs
│ │ └── out_of_bounds
│ │ └── .content.xml
│ ├── home-users-filevault
│ ├── META-INF
│ │ └── vault
│ │ │ ├── filter.xml
│ │ │ └── properties.xml
│ ├── README-test-authorizables.md
│ └── jcr_root
│ │ └── home
│ │ ├── groups
│ │ ├── .content.xml
│ │ ├── acs-commons-derived
│ │ │ └── .content.xml
│ │ └── developers
│ │ │ └── .content.xml
│ │ └── users
│ │ ├── .content.xml
│ │ ├── acme
│ │ └── .content.xml
│ │ ├── acs-commons-developer
│ │ └── .content.xml
│ │ └── system
│ │ ├── .content.xml
│ │ └── acs-commons-service-user-for-acme
│ │ └── .content.xml
│ ├── nodetypes
│ └── content_classifications.cnd
│ ├── oak-index-filevault
│ ├── META-INF
│ │ └── vault
│ │ │ ├── filter.xml
│ │ │ └── properties.xml
│ └── jcr_root
│ │ ├── .content.xml
│ │ ├── _oak_index
│ │ └── .content.xml
│ │ ├── content
│ │ ├── .content.xml
│ │ └── _oak_index
│ │ │ └── .content.xml
│ │ └── etc
│ │ ├── .content.xml
│ │ └── _oak_index
│ │ └── .content.xml
│ ├── package-imports-version-mismatch-jar
│ ├── .gitkeep
│ └── META-INF
│ │ └── MANIFEST.MF
│ ├── package-imports
│ ├── META-INF
│ │ └── vault
│ │ │ ├── filter.xml
│ │ │ └── properties.xml
│ └── jcr_root
│ │ └── apps
│ │ └── myco
│ │ └── install
│ │ └── testbundle.jar
│ ├── simple-content
│ ├── .gitkeep
│ ├── META-INF
│ │ └── vault
│ │ │ ├── filter.xml
│ │ │ ├── nodetypes.cnd
│ │ │ └── properties.xml
│ └── jcr_root
│ │ ├── content
│ │ └── example
│ │ │ └── .content.xml
│ │ └── etc
│ │ └── example
│ │ └── .content.xml
│ ├── simple-libs
│ ├── .gitkeep
│ ├── META-INF
│ │ └── vault
│ │ │ ├── filter.xml
│ │ │ ├── nodetypes.cnd
│ │ │ └── properties.xml
│ └── jcr_root
│ │ └── apps
│ │ └── example
│ │ └── .content.xml
│ ├── simple-mixed
│ ├── .gitkeep
│ ├── META-INF
│ │ └── vault
│ │ │ ├── filter.xml
│ │ │ ├── nodetypes.cnd
│ │ │ └── properties.xml
│ └── jcr_root
│ │ ├── apps
│ │ └── example
│ │ │ └── .content.xml
│ │ ├── content
│ │ └── example
│ │ │ └── .content.xml
│ │ └── etc
│ │ └── example
│ │ └── .content.xml
│ └── simplelogger.properties
├── pom.xml
├── ui.apps
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── content
│ ├── META-INF
│ │ └── vault
│ │ │ └── filter.xml
│ └── jcr_root
│ │ └── apps
│ │ ├── acs-commons
│ │ ├── asset-selectors
│ │ │ └── ms-office
│ │ │ │ ├── asset-selector
│ │ │ │ ├── .content.xml
│ │ │ │ ├── _cq_dialog
│ │ │ │ │ └── .content.xml
│ │ │ │ ├── asset-selector.html
│ │ │ │ └── clientlibs
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── css.txt
│ │ │ │ │ ├── js.txt
│ │ │ │ │ ├── resources
│ │ │ │ │ └── icon.png
│ │ │ │ │ ├── scripts.js
│ │ │ │ │ └── styles.less
│ │ │ │ ├── page
│ │ │ │ └── .content.xml
│ │ │ │ ├── readme
│ │ │ │ ├── .content.xml
│ │ │ │ └── readme.html
│ │ │ │ ├── resources
│ │ │ │ ├── powerpoint_manifest.xml
│ │ │ │ └── word_manifest.xml
│ │ │ │ └── template
│ │ │ │ ├── .content.xml
│ │ │ │ └── page
│ │ │ │ └── .content.xml
│ │ ├── authoring
│ │ │ ├── audio-asset-finder
│ │ │ │ ├── .content.xml
│ │ │ │ ├── audioController.js
│ │ │ │ └── js.txt
│ │ │ ├── dam-copy-publishurl
│ │ │ │ ├── .content.xml
│ │ │ │ ├── css.txt
│ │ │ │ ├── dam-copy-publish-url.css
│ │ │ │ ├── dam-copy-publish-url.js
│ │ │ │ └── js.txt
│ │ │ ├── dam-location
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── reformat-degrees.js
│ │ │ ├── editor-styles
│ │ │ │ ├── .content.xml
│ │ │ │ ├── audio.css
│ │ │ │ └── css.txt
│ │ │ ├── granite-select-filter
│ │ │ │ ├── .content.xml
│ │ │ │ ├── granite-select-filter.js
│ │ │ │ └── js.txt
│ │ │ ├── shared-component-properties
│ │ │ │ ├── classicui
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── js.txt
│ │ │ │ │ └── js
│ │ │ │ │ │ └── shared-component-properties-classic.js
│ │ │ │ └── touchui
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── js.txt
│ │ │ │ │ └── js
│ │ │ │ │ └── shared-component-properties.js
│ │ │ ├── sites-copy-publishurl
│ │ │ │ ├── .content.xml
│ │ │ │ ├── css.txt
│ │ │ │ ├── js.txt
│ │ │ │ ├── sites-copy-publish-url.css
│ │ │ │ └── sites-copy-publish-url.js
│ │ │ ├── switchlayers
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── js
│ │ │ │ │ └── shortcuts.js
│ │ │ └── vendor
│ │ │ │ ├── jquery.fonticonpicker
│ │ │ │ ├── .content.xml
│ │ │ │ ├── css.txt
│ │ │ │ ├── iconpicker.eot
│ │ │ │ ├── iconpicker.svg
│ │ │ │ ├── iconpicker.ttf
│ │ │ │ ├── iconpicker.woff
│ │ │ │ ├── jquery.fonticonpicker.css
│ │ │ │ ├── jquery.fonticonpicker.js
│ │ │ │ └── js.txt
│ │ │ │ ├── jquery.hotkeys
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── js
│ │ │ │ │ └── jquery.hotkeys.js
│ │ │ │ └── leaflet
│ │ │ │ ├── .content.xml
│ │ │ │ ├── css.txt
│ │ │ │ ├── css
│ │ │ │ └── leaflet.css
│ │ │ │ ├── images
│ │ │ │ ├── layers-2x.png
│ │ │ │ ├── layers.png
│ │ │ │ ├── marker-icon-2x.png
│ │ │ │ ├── marker-icon.png
│ │ │ │ └── marker-shadow.png
│ │ │ │ ├── js.txt
│ │ │ │ └── js
│ │ │ │ ├── fix-image-path.js
│ │ │ │ └── leaflet.js
│ │ ├── clientlibs
│ │ │ ├── angularCoral
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── js
│ │ │ │ │ ├── alert.js
│ │ │ │ │ ├── checkbox.js
│ │ │ │ │ ├── headings.js
│ │ │ │ │ ├── list.js
│ │ │ │ │ ├── module.js
│ │ │ │ │ ├── table.js
│ │ │ │ │ └── toolsHeader.js
│ │ │ ├── main
│ │ │ │ ├── .content.xml
│ │ │ │ ├── css.txt
│ │ │ │ └── js.txt
│ │ │ ├── rte-rtl-switch
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── js
│ │ │ │ │ └── RightToLeftKeyboardShortcut.js
│ │ │ └── vendor
│ │ │ │ ├── angularjs
│ │ │ │ ├── bindonce
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── bindonce.min.js
│ │ │ │ │ └── js.txt
│ │ │ │ └── v1.8
│ │ │ │ │ ├── all
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── js.txt
│ │ │ │ │ ├── angular-animate.js
│ │ │ │ │ ├── angular-animate.min.js
│ │ │ │ │ ├── angular-animate.min.js.map
│ │ │ │ │ ├── angular-aria.js
│ │ │ │ │ ├── angular-aria.min.js
│ │ │ │ │ ├── angular-aria.min.js.map
│ │ │ │ │ ├── angular-cookies.js
│ │ │ │ │ ├── angular-cookies.min.js
│ │ │ │ │ ├── angular-cookies.min.js.map
│ │ │ │ │ ├── angular-csp.css
│ │ │ │ │ ├── angular-loader.js
│ │ │ │ │ ├── angular-loader.min.js
│ │ │ │ │ ├── angular-loader.min.js.map
│ │ │ │ │ ├── angular-message-format.js
│ │ │ │ │ ├── angular-message-format.min.js
│ │ │ │ │ ├── angular-message-format.min.js.map
│ │ │ │ │ ├── angular-messages.js
│ │ │ │ │ ├── angular-messages.min.js
│ │ │ │ │ ├── angular-messages.min.js.map
│ │ │ │ │ ├── angular-mocks.js
│ │ │ │ │ ├── angular-parse-ext.js
│ │ │ │ │ ├── angular-parse-ext.min.js
│ │ │ │ │ ├── angular-parse-ext.min.js.map
│ │ │ │ │ ├── angular-resource.js
│ │ │ │ │ ├── angular-resource.min.js
│ │ │ │ │ ├── angular-resource.min.js.map
│ │ │ │ │ ├── angular-route.js
│ │ │ │ │ ├── angular-route.min.js
│ │ │ │ │ ├── angular-route.min.js.map
│ │ │ │ │ ├── angular-sanitize.js
│ │ │ │ │ ├── angular-sanitize.min.js
│ │ │ │ │ ├── angular-sanitize.min.js.map
│ │ │ │ │ ├── angular-touch.js
│ │ │ │ │ ├── angular-touch.min.js
│ │ │ │ │ ├── angular-touch.min.js.map
│ │ │ │ │ ├── angular.js
│ │ │ │ │ ├── angular.min.js
│ │ │ │ │ ├── angular.min.js.map
│ │ │ │ │ ├── core
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── js.txt
│ │ │ │ │ ├── errors.json
│ │ │ │ │ ├── modules
│ │ │ │ │ └── ng-storage
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── ngStorage.min.js
│ │ │ │ │ ├── version.json
│ │ │ │ │ └── version.txt
│ │ │ │ ├── fontawesome
│ │ │ │ ├── .content.xml
│ │ │ │ ├── css.txt
│ │ │ │ ├── css
│ │ │ │ │ └── font-awesome.css
│ │ │ │ └── resources
│ │ │ │ │ └── fonts
│ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ └── fontawesome-webfont.woff2
│ │ │ │ ├── json
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── json2.js
│ │ │ │ ├── jsondiffpatch
│ │ │ │ ├── .content.xml
│ │ │ │ ├── css.txt
│ │ │ │ ├── css
│ │ │ │ │ ├── annotated.css
│ │ │ │ │ └── html.css
│ │ │ │ ├── js.txt
│ │ │ │ └── js
│ │ │ │ │ ├── diff_match_patch_uncompressed.js
│ │ │ │ │ ├── jsondiffpatch-formatters.js
│ │ │ │ │ ├── jsondiffpatch-formatters.min.js
│ │ │ │ │ ├── jsondiffpatch-formatters.min.map
│ │ │ │ │ ├── jsondiffpatch-full.js
│ │ │ │ │ ├── jsondiffpatch-full.min.js
│ │ │ │ │ ├── jsondiffpatch-full.min.map
│ │ │ │ │ ├── jsondiffpatch.js
│ │ │ │ │ ├── jsondiffpatch.min.js
│ │ │ │ │ └── jsondiffpatch.min.map
│ │ │ │ ├── jsplumb
│ │ │ │ ├── .content.xml
│ │ │ │ ├── jquery.jsPlumb-1.7.2-min.js
│ │ │ │ └── js.txt
│ │ │ │ ├── lodash
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── lodash-v4.17.21.js
│ │ │ │ └── qrcode
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── js
│ │ │ │ └── qrcode.min.js
│ │ ├── components
│ │ │ ├── authoring
│ │ │ │ ├── draggablelist
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── init.jsp
│ │ │ │ │ ├── readonly
│ │ │ │ │ │ └── readonly.jsp
│ │ │ │ │ └── render.jsp
│ │ │ │ ├── graphiciconselect
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── render.jsp
│ │ │ │ └── search-pathbrowser
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── search-pathbrowser.jsp
│ │ │ ├── common
│ │ │ │ └── datasources
│ │ │ │ │ └── named-transforms
│ │ │ │ │ └── named-transforms.jsp
│ │ │ ├── content
│ │ │ │ ├── embeddable
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── marketo
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ └── marketo.html
│ │ │ │ ├── named-transform-image
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ └── .content.xml
│ │ │ │ │ ├── _cq_editConfig.xml
│ │ │ │ │ ├── named-transform-image.html
│ │ │ │ │ └── options.json.GET.jsp
│ │ │ │ └── twitter-feed
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ └── .content.xml
│ │ │ │ │ ├── icon.png
│ │ │ │ │ └── twitter-feed.html
│ │ │ ├── dam
│ │ │ │ ├── asset-location-map
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── asset-location-map.html
│ │ │ │ │ └── asset-location-map.js
│ │ │ │ ├── color-swatches
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlib
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ ├── cmyk.svg
│ │ │ │ │ │ │ ├── lab.svg
│ │ │ │ │ │ │ ├── process.svg
│ │ │ │ │ │ │ ├── rgb.svg
│ │ │ │ │ │ │ └── spot.svg
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ ├── script.js
│ │ │ │ │ │ └── styles.css
│ │ │ │ │ ├── color-swatches.html
│ │ │ │ │ └── color-swatches.js
│ │ │ │ ├── custom-component-activator
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── clientlib
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── activator.js
│ │ │ │ │ │ └── js.txt
│ │ │ │ ├── fonts
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlib
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ ├── script.js
│ │ │ │ │ │ └── styles.css
│ │ │ │ │ ├── fonts.html
│ │ │ │ │ └── fonts.js
│ │ │ │ └── history
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlib
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── css.txt
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── ai_cc_app_RGB.svg
│ │ │ │ │ │ ├── br_appicon_RGB.svg
│ │ │ │ │ │ ├── id_cc_app_RGB.svg
│ │ │ │ │ │ └── ps_cc_app_RGB.svg
│ │ │ │ │ └── styles.css
│ │ │ │ │ ├── history.html
│ │ │ │ │ └── history.js
│ │ │ ├── utilities
│ │ │ │ ├── app-page
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── app-page.jsp
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── form.less
│ │ │ │ │ │ │ ├── notifications.less
│ │ │ │ │ │ │ └── page.less
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── angularjs
│ │ │ │ │ │ │ └── notifications.js
│ │ │ │ │ ├── content.jsp
│ │ │ │ │ └── includes
│ │ │ │ │ │ ├── file-api.jsp
│ │ │ │ │ │ ├── footer-libs.jsp
│ │ │ │ │ │ ├── head-libs.jsp
│ │ │ │ │ │ └── notifications.jsp
│ │ │ │ ├── audit-log-search
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── app.css
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── content.jsp
│ │ │ │ │ └── includes
│ │ │ │ │ │ ├── form.jsp
│ │ │ │ │ │ └── results.jsp
│ │ │ │ ├── automatic-package-replication
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── app.css
│ │ │ │ │ │ ├── app.js
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ └── js.txt
│ │ │ │ │ └── content.jsp
│ │ │ │ ├── bulk-workflow-manager
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── app.less
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── content.jsp
│ │ │ │ │ └── includes
│ │ │ │ │ │ ├── aem-transient-workflow
│ │ │ │ │ │ ├── form-info.jsp
│ │ │ │ │ │ ├── form.jsp
│ │ │ │ │ │ ├── interval-update.jsp
│ │ │ │ │ │ ├── status-table.jsp
│ │ │ │ │ │ └── status.jsp
│ │ │ │ │ │ ├── aem-workflow
│ │ │ │ │ │ ├── form-info.jsp
│ │ │ │ │ │ ├── form.jsp
│ │ │ │ │ │ ├── interval-update.jsp
│ │ │ │ │ │ ├── status-table.jsp
│ │ │ │ │ │ └── status.jsp
│ │ │ │ │ │ ├── controls.jsp
│ │ │ │ │ │ ├── failures-table.jsp
│ │ │ │ │ │ ├── fast-action-manager
│ │ │ │ │ │ ├── form-info.jsp
│ │ │ │ │ │ ├── form.jsp
│ │ │ │ │ │ ├── status-table.jsp
│ │ │ │ │ │ └── status.jsp
│ │ │ │ │ │ ├── form.jsp
│ │ │ │ │ │ ├── status.jsp
│ │ │ │ │ │ └── synthetic-workflow
│ │ │ │ │ │ ├── form-info.jsp
│ │ │ │ │ │ ├── form.jsp
│ │ │ │ │ │ ├── status-table.jsp
│ │ │ │ │ │ └── status.jsp
│ │ │ │ ├── cloudconfig
│ │ │ │ │ ├── clientlib
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── delete.js
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── summary.css
│ │ │ │ │ ├── cloudconfiglist
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ └── cloudconfiglist.html
│ │ │ │ │ └── marketo
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ └── marketo.jsp
│ │ │ │ ├── component-error-handler
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── edit.html
│ │ │ │ │ └── preview.html
│ │ │ │ ├── contentsync
│ │ │ │ │ ├── POST.jsp
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── app.css
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── configure
│ │ │ │ │ │ ├── configurehostdatasource
│ │ │ │ │ │ │ └── configurehostdatasource.jsp
│ │ │ │ │ │ └── configurehostentry
│ │ │ │ │ │ │ └── configurehostentry.jsp
│ │ │ │ │ ├── history
│ │ │ │ │ │ └── table
│ │ │ │ │ │ │ └── table.html
│ │ │ │ │ ├── iframe
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ └── iframe.jsp
│ │ │ │ │ ├── selecthostdatasource
│ │ │ │ │ │ └── selecthostdatasource.jsp
│ │ │ │ │ └── strategydatasource
│ │ │ │ │ │ └── strategydatasource.jsp
│ │ │ │ ├── dispatcher-flush
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── configuration
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ └── configuration.html
│ │ │ │ │ ├── instructions.html
│ │ │ │ │ └── main.html
│ │ │ │ ├── dynamic-deck
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlib-base
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── dynamic-deck-action.js
│ │ │ │ │ └── dynamic-deck.html
│ │ │ │ ├── errorpagehandler
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── 404.jsp
│ │ │ │ │ ├── default.jsp
│ │ │ │ │ └── preview
│ │ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── errorpagehandler.css
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── errorpagehandler.js
│ │ │ │ │ │ └── errormessage.jsp
│ │ │ │ ├── exporters
│ │ │ │ │ ├── tags-to-csv
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── app.less
│ │ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ │ └── js
│ │ │ │ │ │ │ │ └── app.js
│ │ │ │ │ │ └── content.jsp
│ │ │ │ │ └── users-to-csv
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── app.less
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── app.js
│ │ │ │ │ │ └── content.jsp
│ │ │ │ ├── generic-list-console
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── generic-list-console.js
│ │ │ │ │ └── meta
│ │ │ │ │ │ └── meta.jsp
│ │ │ │ ├── genericlist
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── body.jsp
│ │ │ │ │ ├── content.jsp
│ │ │ │ │ ├── content
│ │ │ │ │ │ └── content.jsp
│ │ │ │ │ ├── datasource
│ │ │ │ │ │ └── datasource.jsp
│ │ │ │ │ ├── generic-list.png
│ │ │ │ │ └── list.json.jsp
│ │ │ │ ├── instant-package
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlib-authoring
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ └── instant-package.js
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── content.jsp
│ │ │ │ │ ├── includes
│ │ │ │ │ │ └── form.jsp
│ │ │ │ │ ├── option-selection
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── instantPackageButton
│ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ └── optionForm
│ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ └── thumbnail.png
│ │ │ │ ├── jcr-compare
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── style.less
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── content.jsp
│ │ │ │ │ └── includes
│ │ │ │ │ │ ├── tab-configuration.jsp
│ │ │ │ │ │ ├── tab-content-comparison.jsp
│ │ │ │ │ │ └── tab-download-json.jsp
│ │ │ │ ├── manage-controlled-processes
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ ├── mcp.css
│ │ │ │ │ │ │ └── process-manager.css
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ ├── nav.js
│ │ │ │ │ │ │ └── scriptRunner.js
│ │ │ │ │ ├── manage-controlled-processes.jsp
│ │ │ │ │ ├── process-manager.html
│ │ │ │ │ ├── start-process-form.html
│ │ │ │ │ └── start-process.html
│ │ │ │ ├── manage-redirects
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── app.css
│ │ │ │ │ │ ├── app.js
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ └── js.txt
│ │ │ │ │ ├── manage-redirects.html
│ │ │ │ │ ├── redirect-row
│ │ │ │ │ │ └── redirect-row.html
│ │ │ │ │ ├── redirects
│ │ │ │ │ │ ├── prefixsubmithandler
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ └── prefixsubmithandler.jsp
│ │ │ │ │ │ ├── redirects.html
│ │ │ │ │ │ └── submithandler
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ └── submithandler.jsp
│ │ │ │ │ ├── replicate.POST.jsp
│ │ │ │ │ ├── search.html
│ │ │ │ │ ├── serverlibs
│ │ │ │ │ │ └── context.js
│ │ │ │ │ └── template.html
│ │ │ │ ├── packager
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── acl-packager
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── configuration
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ └── configuration.html
│ │ │ │ │ │ └── definition
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ └── package-thumbnail.png
│ │ │ │ │ ├── asset-packager
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── configuration
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ └── configuration.html
│ │ │ │ │ │ └── definition
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ └── package-thumbnail.png
│ │ │ │ │ ├── authorizable-packager
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── configuration
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ └── configuration.html
│ │ │ │ │ │ └── definition
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ └── package-thumbnail.png
│ │ │ │ │ ├── buttons.html
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── packager.js
│ │ │ │ │ ├── definition
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ └── package-thumbnail.png
│ │ │ │ │ ├── instructions.html
│ │ │ │ │ ├── main.html
│ │ │ │ │ ├── query-packager
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── configuration
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ └── configuration.html
│ │ │ │ │ │ └── definition
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ └── package-thumbnail.png
│ │ │ │ │ └── results.html
│ │ │ │ ├── page-compare
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── app.less
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ ├── app.js
│ │ │ │ │ │ │ ├── details.js
│ │ │ │ │ │ │ ├── legend.js
│ │ │ │ │ │ │ └── vendor
│ │ │ │ │ │ │ └── diff.js
│ │ │ │ │ ├── one.jsp
│ │ │ │ │ └── page-compare.jsp
│ │ │ │ ├── page
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── footer.html
│ │ │ │ │ ├── header.html
│ │ │ │ │ ├── incompatible.html
│ │ │ │ │ ├── instructions.html
│ │ │ │ │ └── page.html
│ │ │ │ ├── process-instance
│ │ │ │ │ ├── errors.html
│ │ │ │ │ ├── process-blob-report
│ │ │ │ │ │ └── process-blob-report.html
│ │ │ │ │ ├── process-generic-report
│ │ │ │ │ │ └── process-generic-report.html
│ │ │ │ │ └── process-instance.html
│ │ │ │ ├── qr-code
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlib-authoring
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── styles.css
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── authoring.js
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── styles.css
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ │ └── favicon.ico
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── content.jsp
│ │ │ │ │ └── includes
│ │ │ │ │ │ └── form.jsp
│ │ │ │ ├── redirectmappage
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── app.css
│ │ │ │ │ │ ├── app.js
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ └── js.txt
│ │ │ │ │ └── content.jsp
│ │ │ │ ├── redirects
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── redirects.jsp
│ │ │ │ ├── report-builder
│ │ │ │ │ ├── columns
│ │ │ │ │ │ ├── containing-page
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ ├── containing-page.jsp
│ │ │ │ │ │ │ └── results.jsp
│ │ │ │ │ │ ├── date
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ ├── date.jsp
│ │ │ │ │ │ │ └── results.jsp
│ │ │ │ │ │ ├── editor
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ ├── editor.jsp
│ │ │ │ │ │ │ └── results.jsp
│ │ │ │ │ │ ├── path
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ ├── path.jsp
│ │ │ │ │ │ │ └── results.jsp
│ │ │ │ │ │ ├── predictedTags
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ ├── predictedTags.jsp
│ │ │ │ │ │ │ └── results.jsp
│ │ │ │ │ │ ├── property.jsp
│ │ │ │ │ │ ├── references
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ ├── references.jsp
│ │ │ │ │ │ │ └── results.jsp
│ │ │ │ │ │ ├── replicationstatus
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ ├── replicationstatus.jsp
│ │ │ │ │ │ │ └── results.jsp
│ │ │ │ │ │ ├── tags
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ ├── results.jsp
│ │ │ │ │ │ │ └── tags.jsp
│ │ │ │ │ │ └── text
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ ├── results.jsp
│ │ │ │ │ │ │ └── text.jsp
│ │ │ │ │ ├── configs
│ │ │ │ │ │ ├── paths-list
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ └── paths-list.jsp
│ │ │ │ │ │ └── queryconfig
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ └── queryconfig.jsp
│ │ │ │ │ ├── parameters
│ │ │ │ │ │ ├── basic
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ └── basic.jsp
│ │ │ │ │ │ ├── dynamic-select
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ └── dynamic-select.html
│ │ │ │ │ │ └── select
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── _cq_dialog
│ │ │ │ │ │ │ └── .content.xml
│ │ │ │ │ │ │ └── select.jsp
│ │ │ │ │ ├── report-list-page
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ │ └── app.css
│ │ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ │ └── js
│ │ │ │ │ │ │ │ └── app.js
│ │ │ │ │ │ └── content.jsp
│ │ │ │ │ └── report-page
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── app.css
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── app.js
│ │ │ │ │ │ ├── content.jsp
│ │ │ │ │ │ ├── includes
│ │ │ │ │ │ ├── editor.jsp
│ │ │ │ │ │ ├── head-libs.jsp
│ │ │ │ │ │ ├── report-body.jsp
│ │ │ │ │ │ └── report.jsp
│ │ │ │ │ │ ├── report-page.jsp
│ │ │ │ │ │ └── results.jsp
│ │ │ │ ├── sites-publish-url
│ │ │ │ │ └── .content.xml
│ │ │ │ ├── sort-nodes
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── app.js
│ │ │ │ │ └── sort-nodes.html
│ │ │ │ ├── system-notifications
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ ├── page.js
│ │ │ │ │ │ └── page.less
│ │ │ │ │ ├── list.jsp
│ │ │ │ │ ├── notification
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ │ ├── notification.js
│ │ │ │ │ │ │ └── notification.less
│ │ │ │ │ │ └── notification.jsp
│ │ │ │ │ └── system-notifications.html
│ │ │ │ ├── twitter-rate-limit-checker
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── body.jsp
│ │ │ │ │ ├── head.jsp
│ │ │ │ │ └── headlibs.jsp
│ │ │ │ ├── version-compare
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ │ ├── .content.xml
│ │ │ │ │ │ ├── css.txt
│ │ │ │ │ │ ├── css
│ │ │ │ │ │ │ └── app.less
│ │ │ │ │ │ ├── js.txt
│ │ │ │ │ │ └── js
│ │ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── graph.jsp
│ │ │ │ │ ├── options.jsp
│ │ │ │ │ ├── page-header.jsp
│ │ │ │ │ └── version-compare.jsp
│ │ │ │ └── version-replicator
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── clientlibs
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── css.txt
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── app.less
│ │ │ │ │ ├── js.txt
│ │ │ │ │ └── js
│ │ │ │ │ │ └── app.js
│ │ │ │ │ ├── content.jsp
│ │ │ │ │ └── includes
│ │ │ │ │ ├── buttons.html
│ │ │ │ │ ├── form.jsp
│ │ │ │ │ └── results.html
│ │ │ └── workflow
│ │ │ │ ├── .content.xml
│ │ │ │ ├── copy-properties
│ │ │ │ ├── .content.xml
│ │ │ │ ├── _cq_dialog
│ │ │ │ │ └── .content.xml
│ │ │ │ └── _cq_editConfig.xml
│ │ │ │ ├── select-agent
│ │ │ │ ├── .content.xml
│ │ │ │ ├── _cq_dialog
│ │ │ │ │ └── .content.xml
│ │ │ │ ├── activate
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── _cq_editConfig.xml
│ │ │ │ ├── cache-invalidate
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── _cq_editConfig.xml
│ │ │ │ ├── datasource
│ │ │ │ │ └── datasource.jsp
│ │ │ │ └── deactivate
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── _cq_editConfig.xml
│ │ │ │ └── watson-audio-transcription
│ │ │ │ ├── .content.xml
│ │ │ │ ├── _cq_dialog
│ │ │ │ └── .content.xml
│ │ │ │ └── _cq_editConfig.xml
│ │ ├── console
│ │ │ ├── .content.xml
│ │ │ ├── createpagewizard
│ │ │ │ └── .content.xml
│ │ │ ├── createtemplatewizard
│ │ │ │ └── .content.xml
│ │ │ ├── folderproperties
│ │ │ │ └── .content.xml
│ │ │ ├── movepagewizard
│ │ │ │ └── .content.xml
│ │ │ ├── properties
│ │ │ │ └── .content.xml
│ │ │ ├── publishpagewizard
│ │ │ │ └── .content.xml
│ │ │ ├── publishtemplatewizard
│ │ │ │ └── .content.xml
│ │ │ ├── renderconditions
│ │ │ │ └── require-aem
│ │ │ │ │ └── require-aem.jsp
│ │ │ ├── templates
│ │ │ │ ├── .content.xml
│ │ │ │ └── properties
│ │ │ │ │ └── .content.xml
│ │ │ ├── unpublishpagewizard
│ │ │ │ └── .content.xml
│ │ │ ├── unpublishtemplatewizard
│ │ │ │ └── .content.xml
│ │ │ └── versionhistory
│ │ │ │ └── .content.xml
│ │ ├── content
│ │ │ ├── audit-log-search
│ │ │ │ └── .content.xml
│ │ │ ├── cloudservice
│ │ │ │ ├── console
│ │ │ │ │ └── .content.xml
│ │ │ │ ├── create
│ │ │ │ │ └── .content.xml
│ │ │ │ └── thumb.png
│ │ │ ├── contentsync
│ │ │ │ ├── .content.xml
│ │ │ │ ├── configure
│ │ │ │ │ └── .content.xml
│ │ │ │ └── history
│ │ │ │ │ └── .content.xml
│ │ │ ├── dynamic-deck-initiator
│ │ │ │ └── .content.xml
│ │ │ ├── jcr-compare
│ │ │ │ └── .content.xml
│ │ │ ├── manage-controlled-processes
│ │ │ │ ├── .content.xml
│ │ │ │ └── _rep_policy.xml
│ │ │ ├── office-addin
│ │ │ │ ├── powerpoint_manifest.xml
│ │ │ │ ├── readme
│ │ │ │ │ └── .content.xml
│ │ │ │ └── word_manifest.xml
│ │ │ ├── page-compare
│ │ │ │ └── .content.xml
│ │ │ ├── redirect-manager
│ │ │ │ ├── .content.xml
│ │ │ │ └── redirects
│ │ │ │ │ └── .content.xml
│ │ │ ├── reports
│ │ │ │ └── .content.xml
│ │ │ ├── sort-nodes
│ │ │ │ └── .content.xml
│ │ │ ├── version-compare
│ │ │ │ └── .content.xml
│ │ │ └── version-replicator
│ │ │ │ └── .content.xml
│ │ ├── dam
│ │ │ └── content
│ │ │ │ └── admin
│ │ │ │ ├── .content.xml
│ │ │ │ ├── asset-location-map
│ │ │ │ └── .content.xml
│ │ │ │ ├── color-swatches
│ │ │ │ └── .content.xml
│ │ │ │ ├── fonts
│ │ │ │ └── .content.xml
│ │ │ │ └── history
│ │ │ │ └── .content.xml
│ │ ├── datasources
│ │ │ └── named-image-transforms
│ │ │ │ └── named-image-transforms.jsp
│ │ ├── extensions
│ │ │ └── contentfinder
│ │ │ │ ├── .content.xml
│ │ │ │ └── audio.js
│ │ ├── granite
│ │ │ └── ui
│ │ │ │ └── components
│ │ │ │ ├── form
│ │ │ │ └── queryautocomplete
│ │ │ │ │ └── datasource
│ │ │ │ │ └── datasource.jsp
│ │ │ │ ├── include
│ │ │ │ └── include.jsp
│ │ │ │ └── renderconditions
│ │ │ │ └── path
│ │ │ │ └── path.jsp
│ │ ├── gui
│ │ │ ├── components
│ │ │ │ └── authoring
│ │ │ │ │ ├── dialogshared
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── README.md
│ │ │ │ │ └── publishurl
│ │ │ │ │ └── publishurl.jsp
│ │ │ └── content
│ │ │ │ └── publishurl
│ │ │ │ └── .content.xml
│ │ ├── renderconditons
│ │ │ ├── iscurrentusermemberof
│ │ │ │ └── iscurrentusermemberof.jsp
│ │ │ └── ispublished
│ │ │ │ └── ispublished.jsp
│ │ ├── rte-plugins
│ │ │ ├── accordion
│ │ │ │ ├── .content.xml
│ │ │ │ ├── clientlibs
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ ├── css.txt
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── accordion.less
│ │ │ │ │ ├── js.txt
│ │ │ │ │ └── js
│ │ │ │ │ │ └── accordion.js
│ │ │ │ ├── js.txt
│ │ │ │ └── source
│ │ │ │ │ └── rte-accordion.js
│ │ │ └── dialog-plugin
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── source
│ │ │ │ └── dialog-plugin.js
│ │ ├── templates
│ │ │ └── utilities
│ │ │ │ ├── acl-packager
│ │ │ │ ├── .content.xml
│ │ │ │ └── thumbnail.png
│ │ │ │ ├── asset-packager
│ │ │ │ ├── .content.xml
│ │ │ │ └── thumbnail.png
│ │ │ │ ├── authorizable-packager
│ │ │ │ ├── .content.xml
│ │ │ │ └── thumbnail.png
│ │ │ │ ├── automatic-package-replication
│ │ │ │ ├── .content.xml
│ │ │ │ └── thumbnail.png
│ │ │ │ ├── bulk-workflow-manager
│ │ │ │ ├── .content.xml
│ │ │ │ └── thumbnail.png
│ │ │ │ ├── dispatcher-flush
│ │ │ │ ├── .content.xml
│ │ │ │ └── thumbnail.png
│ │ │ │ ├── exporters
│ │ │ │ ├── tags-to-csv
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── thumbnail.png
│ │ │ │ └── users-to-csv
│ │ │ │ │ ├── .content.xml
│ │ │ │ │ └── thumbnail.png
│ │ │ │ ├── genericlist
│ │ │ │ ├── .content.xml
│ │ │ │ └── thumbnail.png
│ │ │ │ ├── marketocloudconfig
│ │ │ │ └── .content.xml
│ │ │ │ ├── query-packager
│ │ │ │ ├── .content.xml
│ │ │ │ └── thumbnail.png
│ │ │ │ ├── redirectmap
│ │ │ │ ├── .content.xml
│ │ │ │ └── thumbnail.png
│ │ │ │ └── system-notifications
│ │ │ │ ├── .content.xml
│ │ │ │ └── thumbnail.png
│ │ ├── touchui-widgets
│ │ │ ├── composite-multifield
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── source
│ │ │ │ │ ├── touchui-composite-multifield-nodestore.js
│ │ │ │ │ ├── touchui-composite-multifield.js
│ │ │ │ │ └── touchui-widgets-init.js
│ │ │ ├── configure-limit-parsys
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── touchui-limit-parsys.js
│ │ │ ├── configure-parsys-placeholder
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── touchui-configure-parsys-placeholder.js
│ │ │ ├── contextualpathbrowser
│ │ │ │ ├── .content.xml
│ │ │ │ └── contextualpathbrowser.jsp
│ │ │ ├── draggable-list
│ │ │ │ ├── .content.xml
│ │ │ │ ├── css.txt
│ │ │ │ ├── js.txt
│ │ │ │ └── source
│ │ │ │ │ ├── draggablelist.css
│ │ │ │ │ └── draggablelist.js
│ │ │ ├── enriched-el-container
│ │ │ │ ├── .content.xml
│ │ │ │ └── enriched-el-container.jsp
│ │ │ ├── icon-picker
│ │ │ │ ├── .content.xml
│ │ │ │ ├── css.txt
│ │ │ │ ├── js.txt
│ │ │ │ └── source
│ │ │ │ │ ├── icon-picker.js
│ │ │ │ │ └── jquery.fonticonpicker.coral.less
│ │ │ ├── search-based-path-browser
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── source
│ │ │ │ │ └── search-based-pathbrowser.js
│ │ │ └── showhidedialogfields
│ │ │ │ ├── .content.xml
│ │ │ │ ├── js.txt
│ │ │ │ └── source
│ │ │ │ ├── requiredvalidation.js
│ │ │ │ ├── showhidedialogfields.js
│ │ │ │ └── showhidedialogfieldstabs.js
│ │ └── widgets
│ │ │ ├── .content.xml
│ │ │ ├── css.txt
│ │ │ ├── resources
│ │ │ └── images
│ │ │ │ └── placeholders
│ │ │ │ ├── cq-ad-placeholder.png
│ │ │ │ ├── cq-audio-placeholder.png
│ │ │ │ ├── cq-dl-placeholder.png
│ │ │ │ ├── cq-textlines-placeholder.png
│ │ │ │ └── cq-ul-placeholder.png
│ │ │ ├── source
│ │ │ └── css
│ │ │ │ └── cq-placeholders.less
│ │ │ └── themes
│ │ │ └── default
│ │ │ ├── .content.xml
│ │ │ ├── css.txt
│ │ │ ├── resources
│ │ │ └── audio.png
│ │ │ └── source
│ │ │ └── audio.css
│ │ ├── cq
│ │ └── core
│ │ │ └── content
│ │ │ ├── .content.xml
│ │ │ └── nav
│ │ │ ├── .content.xml
│ │ │ └── tools
│ │ │ ├── .content.xml
│ │ │ ├── acs-commons
│ │ │ ├── .content.xml
│ │ │ ├── audit-log-search
│ │ │ │ └── .content.xml
│ │ │ ├── automatic-package-replication
│ │ │ │ └── .content.xml
│ │ │ ├── bulk-workflow-manager
│ │ │ │ └── .content.xml
│ │ │ ├── content-packagers
│ │ │ │ └── .content.xml
│ │ │ ├── contentsync
│ │ │ │ └── .content.xml
│ │ │ ├── dispatcher-flush
│ │ │ │ └── .content.xml
│ │ │ ├── dynamic-deck-dynamo
│ │ │ │ └── .content.xml
│ │ │ ├── exporters
│ │ │ │ └── .content.xml
│ │ │ ├── generic-lists
│ │ │ │ └── .content.xml
│ │ │ ├── jcr-compare
│ │ │ │ └── .content.xml
│ │ │ ├── manage-controlled-processes
│ │ │ │ └── .content.xml
│ │ │ ├── page-compare
│ │ │ │ └── .content.xml
│ │ │ ├── qr-code
│ │ │ │ └── .content.xml
│ │ │ ├── redirect-manager
│ │ │ │ └── .content.xml
│ │ │ ├── redirect-maps
│ │ │ │ └── .content.xml
│ │ │ ├── reports
│ │ │ │ └── .content.xml
│ │ │ ├── sort-nodes
│ │ │ │ └── .content.xml
│ │ │ ├── system-notifications
│ │ │ │ └── .content.xml
│ │ │ ├── version-compare
│ │ │ │ └── .content.xml
│ │ │ └── version-replicator
│ │ │ │ └── .content.xml
│ │ │ └── cloudservices
│ │ │ ├── .content.xml
│ │ │ └── marketo
│ │ │ └── .content.xml
│ │ ├── dam
│ │ └── gui
│ │ │ └── content
│ │ │ ├── .content.xml
│ │ │ └── assets
│ │ │ ├── .content.xml
│ │ │ └── metadataeditor
│ │ │ └── .content.xml
│ │ ├── settings
│ │ └── dam
│ │ │ └── indesign
│ │ │ └── scripts
│ │ │ └── dynamic-deck.jsx
│ │ └── wcm
│ │ ├── .content.xml
│ │ └── core
│ │ ├── .content.xml
│ │ └── content
│ │ ├── .content.xml
│ │ └── editor
│ │ ├── .content.xml
│ │ └── _jcr_content
│ │ ├── .content.xml
│ │ └── content
│ │ ├── .content.xml
│ │ └── items
│ │ ├── .content.xml
│ │ └── content
│ │ ├── .content.xml
│ │ └── header
│ │ ├── .content.xml
│ │ └── items
│ │ ├── .content.xml
│ │ ├── acs-commons_copy-publish-url-dialog
│ │ └── .content.xml
│ │ └── headerbar
│ │ ├── .content.xml
│ │ └── items
│ │ ├── .content.xml
│ │ └── pageinfopopover
│ │ ├── .content.xml
│ │ └── items
│ │ ├── .content.xml
│ │ └── list
│ │ ├── .content.xml
│ │ └── items
│ │ ├── .content.xml
│ │ └── acs-commons_copy-publish-url
│ │ └── .content.xml
│ └── resources
│ ├── META-INF
│ ├── COPYRIGHT
│ ├── LICENSE
│ └── NOTICE
│ └── thumbnail.png
├── ui.config
├── .gitignore
├── pom.xml
└── src
│ └── main
│ ├── content
│ ├── META-INF
│ │ └── vault
│ │ │ └── filter.xml
│ └── jcr_root
│ │ └── apps
│ │ └── acs-commons
│ │ ├── config.author
│ │ ├── com.adobe.acs.commons.wcm.impl.AcsCommonsConsoleAuthoringUIModeFilter.cfg.json
│ │ ├── com.adobe.acs.commons.wcm.impl.AcsCommonsConsoleEditorFilter.cfg.json
│ │ ├── com.adobe.acs.commons.wcm.impl.QrCodeServlet.xml
│ │ ├── org.apache.sling.jcr.repoinit.RepositoryInitializer-acs-commons-author.config
│ │ └── org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-acs-commons-author.config
│ │ ├── config.publish
│ │ └── org.apache.sling.jcr.repoinit.RepositoryInitializer-acs-commons-publish.config
│ │ └── config
│ │ ├── org.apache.sling.event.jobs.QueueConfiguration~package-garbage-collection.config
│ │ ├── org.apache.sling.jcr.repoinit.RepositoryInitializer-acs-commons-all.config
│ │ └── org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-acs-commons-all.config
│ └── resources
│ ├── META-INF
│ ├── COPYRIGHT
│ ├── LICENSE
│ └── NOTICE
│ └── thumbnail.png
└── ui.content
├── .gitignore
├── pom.xml
└── src
└── main
├── content
├── META-INF
│ └── vault
│ │ └── filter.xml
└── jcr_root
│ ├── conf
│ └── global
│ │ └── settings
│ │ ├── .content.xml
│ │ └── redirects
│ │ └── .content.xml
│ ├── etc
│ ├── acs-commons
│ │ ├── .content.xml
│ │ ├── automatic-package-replication
│ │ │ └── .content.xml
│ │ ├── bulk-workflow-manager
│ │ │ └── .content.xml
│ │ ├── dispatcher-flush
│ │ │ └── .content.xml
│ │ ├── exporters
│ │ │ ├── .content.xml
│ │ │ └── tag-to-csv-exporter
│ │ │ │ └── .content.xml
│ │ ├── instant-package
│ │ │ ├── .content.xml
│ │ │ └── _jcr_content
│ │ │ │ ├── clientlib-authoring
│ │ │ │ ├── .content.xml
│ │ │ │ └── js.txt
│ │ │ │ └── instant-package-image.png
│ │ ├── lists
│ │ │ ├── .content.xml
│ │ │ ├── dynamic-deck-query-list
│ │ │ │ └── .content.xml
│ │ │ ├── font-awesome-icons
│ │ │ │ └── .content.xml
│ │ │ └── report-parameter-components
│ │ │ │ └── .content.xml
│ │ ├── notifications
│ │ │ └── .content.xml
│ │ ├── packagers
│ │ │ └── .content.xml
│ │ ├── qr-code
│ │ │ ├── .content.xml
│ │ │ └── _jcr_content
│ │ │ │ ├── clientlib-authoring
│ │ │ │ ├── .content.xml
│ │ │ │ ├── css.txt
│ │ │ │ └── js.txt
│ │ │ │ └── qr-code-image.png
│ │ ├── redirect-maps
│ │ │ └── .content.xml
│ │ └── twitter-rate-limit-checker
│ │ │ └── .content.xml
│ ├── dam
│ │ ├── .content.xml
│ │ └── video
│ │ │ ├── .content.xml
│ │ │ ├── flacmono
│ │ │ └── .content.xml
│ │ │ ├── mp3hq
│ │ │ └── .content.xml
│ │ │ └── ogghq
│ │ │ └── .content.xml
│ ├── designs
│ │ └── acs-commons
│ │ │ ├── .content.xml
│ │ │ └── _rep_policy.xml
│ └── notification
│ │ └── email
│ │ └── acs-commons
│ │ ├── .content.xml
│ │ └── health-check-status-email.txt
│ └── var
│ └── acs-commons
│ ├── httpcache
│ ├── .content.xml
│ └── root
│ │ └── .content.xml
│ ├── on-deploy-scripts-status
│ ├── .content.xml
│ └── README.txt
│ └── reports
│ ├── sample-component-instances
│ └── .content.xml
│ ├── sample-components-report
│ └── .content.xml
│ ├── sample-page-report
│ └── .content.xml
│ └── sample-references-report
│ └── .content.xml
└── resources
├── META-INF
├── COPYRIGHT
├── LICENSE
└── NOTICE
└── thumbnail.png
/.codeclimate/header.txt:
--------------------------------------------------------------------------------
1 | /\*
2 | ?\* #%L
3 | ?\* ACS AEM Commons[A-Za-z ]* Bundle
4 | ?\* %%
5 | ?\* Copyright \(C\) \d\d\d\d(( -)|( - \d\d\d\d))? Adobe
6 | ?\* %%
7 | ?\* Licensed under the Apache License, Version 2.0 \(the "License"\);
8 | ?\* you may not use this file except in compliance with the License.
9 | ?\* You may obtain a copy of the License at
10 | ?\*\w*
11 | ?\* http://www.apache.org/licenses/LICENSE-2.0
12 | ?\*\w*
13 | ?\* Unless required by applicable law or agreed to in writing, software
14 | ?\* distributed under the License is distributed on an "AS IS" BASIS,
15 | ?\* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 | ?\* See the License for the specific language governing permissions and
17 | ?\* limitations under the License.
18 | ?\* #L%
19 | ?\*/
--------------------------------------------------------------------------------
/.codecov.yml:
--------------------------------------------------------------------------------
1 | # https://docs.codecov.com/docs/codecovyml-reference
2 | coverage:
3 | status:
4 | # https://docs.codecov.com/docs/commit-status
5 | project:
6 | default:
7 | # basic
8 | target: auto
9 | # each PR must not lower the coverage by more than the given percentage
10 | threshold: 0.1%
11 | patch: off
--------------------------------------------------------------------------------
/.csslintrc:
--------------------------------------------------------------------------------
1 | --exclude-exts=.min.css
2 | --ignore=adjoining-classes,box-model,ids,order-alphabetical,unqualified-attributes
3 |
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | **/*{.,-}min.js
2 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Set default behavior to automatically normalize line endings.
2 | * text=auto
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE.md:
--------------------------------------------------------------------------------
1 | ## Required Information
2 |
3 | * [ ] AEM Version, including Service Packs, Cumulative Fix Packs, etc: _______
4 | * [ ] ACS AEM Commons Version: _____
5 | * [ ] Reproducible on Latest? yes/no
6 |
7 |
8 | ### Expected Behavior
9 |
10 | _Please describe briefly the expected behavior, i.e. when I do X, Y should happen._
11 |
12 | ### Actual Behavior
13 |
14 | _Please describe briefly the actual behavior, i.e. when I do X, Z happens._
15 |
16 | ### Steps to Reproduce
17 |
18 | _Starting from a vanilla instance of AEM at the above version, describe in explicit steps how to reproduce. Link to
19 | any supporting assets, e.g. content packages, below_
20 |
21 |
22 | ### Links
23 |
24 | _Links to related assets, e.g. content packages containing test components_
25 |
26 |
--------------------------------------------------------------------------------
/.github/config.yml:
--------------------------------------------------------------------------------
1 | updateChangelogComment: >
2 | Thanks for opening this pull request! The maintainers of this repository would appreciate it if you would update the CHANGELOG.md file with this pull request.
3 | updateChangelogWhiteList:
4 | - task
--------------------------------------------------------------------------------
/.github/stale.yml:
--------------------------------------------------------------------------------
1 | # Number of days of inactivity before an issue becomes stale
2 | daysUntilStale: 60
3 | # Number of days of inactivity before a stale issue is closed
4 | daysUntilClose: 7
5 | # Issues with these labels will never be considered stale
6 | exemptLabels:
7 | - pinned
8 | - security
9 | # Label to use when marking an issue as stale
10 | staleLabel: wontfix
11 | # Comment to post when marking an issue as stale. Set to `false` to disable
12 | markComment: >
13 | This issue has been automatically marked as stale because it has not had
14 | recent activity. It will be closed if no further activity occurs. Thank you
15 | for your contributions.
16 | # Comment to post when closing a stale issue. Set to `false` to disable
17 | closeComment: false
18 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .repo
2 | .vlt
3 | .classpath
4 | .project
5 | .settings/
6 | target/
7 | .DS_Store
8 | lib/
9 |
10 | #Intellij
11 | .idea/
12 | *.iml
13 | generated/
14 |
15 | #Netbeans
16 | nb-configuration.xml
17 | /bundle/nbproject/
18 |
19 | #vlt directories
20 | content/src/main/content/jcr_root/.content.xml
21 | content/src/main/content/jcr_root/apps/.content.xml
22 | content/src/main/content/jcr_root/etc/.content.xml
23 | content/src/main/content/jcr_root/etc/designs/.content.xml
24 | content/src/main/content/jcr_root/etc/clientlibs/.content.xml
25 | .pmd
26 | .metadata
27 |
28 | node_modules
29 | bundle/mockserver.log
30 |
31 | #VS Code
32 | .vscode
33 | .history
34 |
35 | #Jenv
36 | .java-version
37 |
38 | # Maven versions plugin
39 | pom.xml.versionsBackup
40 |
41 | # Qlty plugin folder
42 | /.qlty/
43 |
--------------------------------------------------------------------------------
/COPYRIGHT:
--------------------------------------------------------------------------------
1 | Copyright 2013 Adobe
2 |
3 | Adobe holds the copyright for all the files found in this repository.
4 |
5 | Licensed under the Apache License, Version 2.0 (the "License");
6 | you may not use this file except in compliance with the License.
7 | You may obtain a copy of the License at
8 |
9 | http://www.apache.org/licenses/LICENSE-2.0
10 |
11 | Unless required by applicable law or agreed to in writing, software
12 | distributed under the License is distributed on an "AS IS" BASIS,
13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | See the License for the specific language governing permissions and
15 | limitations under the License.
--------------------------------------------------------------------------------
/all/.gitignore:
--------------------------------------------------------------------------------
1 | /nbactions-autoInstallPackage.xml
2 |
--------------------------------------------------------------------------------
/all/src/main/resources/META-INF/COPYRIGHT:
--------------------------------------------------------------------------------
1 | Copyright 2013 Adobe
2 |
3 | Adobe holds the copyright for all the files found in this repository.
4 |
5 | Licensed under the Apache License, Version 2.0 (the "License");
6 | you may not use this file except in compliance with the License.
7 | You may obtain a copy of the License at
8 |
9 | http://www.apache.org/licenses/LICENSE-2.0
10 |
11 | Unless required by applicable law or agreed to in writing, software
12 | distributed under the License is distributed on an "AS IS" BASIS,
13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | See the License for the specific language governing permissions and
15 | limitations under the License.
--------------------------------------------------------------------------------
/all/src/main/resources/thumbnail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/all/src/main/resources/thumbnail.png
--------------------------------------------------------------------------------
/bundle-onprem/.gitignore:
--------------------------------------------------------------------------------
1 | /nb-configuration.xml
2 | *.factorypath
3 | /dependency-reduced-pom.xml
4 | /nbactions-autoInstallBundle.xml
5 |
--------------------------------------------------------------------------------
/bundle-onprem/src/main/resources/META-INF/COPYRIGHT:
--------------------------------------------------------------------------------
1 | Copyright 2013 Adobe
2 |
3 | Adobe holds the copyright for all the files found in this repository.
4 |
5 | Licensed under the Apache License, Version 2.0 (the "License");
6 | you may not use this file except in compliance with the License.
7 | You may obtain a copy of the License at
8 |
9 | http://www.apache.org/licenses/LICENSE-2.0
10 |
11 | Unless required by applicable law or agreed to in writing, software
12 | distributed under the License is distributed on an "AS IS" BASIS,
13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | See the License for the specific language governing permissions and
15 | limitations under the License.
--------------------------------------------------------------------------------
/bundle/.gitignore:
--------------------------------------------------------------------------------
1 | /nb-configuration.xml
2 | *.factorypath
3 | /dependency-reduced-pom.xml
4 | /nbactions-autoInstallBundle.xml
5 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/analysis/jcrchecksum/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @Version("2.2.0")
20 | package com.adobe.acs.commons.analysis.jcrchecksum;
21 |
22 | import org.osgi.annotation.versioning.Version;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/assets/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("4.3.4")
19 | package com.adobe.acs.commons.assets;
20 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/audit_log_search/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @Version("3.7.0")
19 | package com.adobe.acs.commons.audit_log_search;
20 |
21 | import org.osgi.annotation.versioning.Version;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/ccvar/filter/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @Version("5.0.14")
20 | package com.adobe.acs.commons.ccvar.filter;
21 |
22 | import org.osgi.annotation.versioning.Version;
23 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/ccvar/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @Version("5.0.14")
20 | package com.adobe.acs.commons.ccvar;
21 |
22 | import org.osgi.annotation.versioning.Version;
23 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/ccvar/util/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @Version("5.0.14")
20 | package com.adobe.acs.commons.ccvar.util;
21 |
22 | import org.osgi.annotation.versioning.Version;
23 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/cloudconfig/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Adobe I/O services.
20 | */
21 | @org.osgi.annotation.versioning.Version("4.4.0")
22 | package com.adobe.acs.commons.cloudconfig;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/contentsync/package-info.java:
--------------------------------------------------------------------------------
1 | /*-
2 | * #%L
3 | * ACS AEM Commons Bundle
4 | * %%
5 | * Copyright (C) 2013 - 2022 Adobe
6 | * %%
7 | * Licensed under the Apache License, Version 2.0 (the "License");
8 | * you may not use this file except in compliance with the License.
9 | * You may obtain a copy of the License at
10 | *
11 | * http://www.apache.org/licenses/LICENSE-2.0
12 | *
13 | * Unless required by applicable law or agreed to in writing, software
14 | * distributed under the License is distributed on an "AS IS" BASIS,
15 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 | * See the License for the specific language governing permissions and
17 | * limitations under the License.
18 | * #L%
19 | */
20 | @org.osgi.annotation.versioning.Version("6.12.0")
21 | package com.adobe.acs.commons.contentsync;
22 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/dam/audio/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Audio JSP Functions.
20 | */
21 | @org.osgi.annotation.versioning.Version("1.0.2")
22 | package com.adobe.acs.commons.dam.audio;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/email/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Email Service.
20 | */
21 | @org.osgi.annotation.versioning.Version("1.3.0")
22 | package com.adobe.acs.commons.email;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/fam/actions/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("1.1.1")
19 | package com.adobe.acs.commons.fam.actions;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/fam/mbean/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("1.1.1")
19 | package com.adobe.acs.commons.fam.mbean;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/fam/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("3.0.0")
19 | package com.adobe.acs.commons.fam;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/filefetch/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * File Fetcher
20 | */
21 | @org.osgi.annotation.versioning.Version("4.4.1")
22 | package com.adobe.acs.commons.filefetch;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/functions/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("2.0.0")
19 | package com.adobe.acs.commons.functions;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/granite/ui/components/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("1.1.1")
19 | package com.adobe.acs.commons.granite.ui.components;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/http/injectors/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Http Injectors.
20 | */
21 | @org.osgi.annotation.versioning.Version("2.1.2")
22 | package com.adobe.acs.commons.http.injectors;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/http/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Http Injectors.
20 | */
21 | @org.osgi.annotation.versioning.Version("2.1.0")
22 | package com.adobe.acs.commons.http;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/httpcache/config/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @org.osgi.annotation.versioning.Version("2.4.0")
20 | package com.adobe.acs.commons.httpcache.config;
21 |
22 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/httpcache/engine/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @org.osgi.annotation.versioning.Version("3.4.0")
20 | package com.adobe.acs.commons.httpcache.engine;
21 |
22 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/httpcache/exception/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @org.osgi.annotation.versioning.Version("1.0.0")
20 | package com.adobe.acs.commons.httpcache.exception;
21 |
22 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/httpcache/invalidator/event/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @org.osgi.annotation.versioning.Version("1.1.0")
20 | package com.adobe.acs.commons.httpcache.invalidator.event;
21 |
22 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/httpcache/keys/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @org.osgi.annotation.versioning.Version("3.15.0")
20 | package com.adobe.acs.commons.httpcache.keys;
21 |
22 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/httpcache/rule/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @org.osgi.annotation.versioning.Version("1.0.0")
20 | package com.adobe.acs.commons.httpcache.rule;
21 |
22 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/httpcache/store/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @org.osgi.annotation.versioning.Version("2.0.0")
20 | package com.adobe.acs.commons.httpcache.store;
21 |
22 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/httpcache/util/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @org.osgi.annotation.versioning.Version("1.1.0")
20 | package com.adobe.acs.commons.httpcache.util;
21 |
22 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/i18n/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Http Injectors.
20 | */
21 | @org.osgi.annotation.versioning.Version("4.1.0")
22 | package com.adobe.acs.commons.i18n;
23 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/images/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Image utilities.
20 | */
21 | @org.osgi.annotation.versioning.Version("1.3.1")
22 | package com.adobe.acs.commons.images;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/json/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * JSON Utilities
20 | */
21 | @org.osgi.annotation.versioning.Version("2.0.0")
22 | package com.adobe.acs.commons.json;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/marketo/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Adobe I/O services.
20 | */
21 | @org.osgi.annotation.versioning.Version("4.4.0")
22 | package com.adobe.acs.commons.marketo;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/mcp/mbean/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @Version("3.10.1")
19 | package com.adobe.acs.commons.mcp.mbean;
20 |
21 | import org.osgi.annotation.versioning.Version;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/mcp/model/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @Version("4.3.0")
19 | package com.adobe.acs.commons.mcp.model;
20 |
21 | import org.osgi.annotation.versioning.Version;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/mcp/util/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @Version("4.3.0")
19 | package com.adobe.acs.commons.mcp.util;
20 |
21 | import org.osgi.annotation.versioning.Version;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/notifications/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("3.1.1")
19 | package com.adobe.acs.commons.notifications;
20 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/oak/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Oak utilities.
20 | */
21 | @org.osgi.annotation.versioning.Version("1.0.0")
22 | package com.adobe.acs.commons.oak;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/ondeploy/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * On-Deploy Scripts Framework.
20 | */
21 | @org.osgi.annotation.versioning.Version("1.1.0")
22 | package com.adobe.acs.commons.ondeploy;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/redirectmaps/models/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("6.0.0")
19 | package com.adobe.acs.commons.redirectmaps.models;
20 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/redirectmaps/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("3.1.0")
19 | package com.adobe.acs.commons.redirectmaps;
20 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/redirects/filter/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("6.0.4")
19 | package com.adobe.acs.commons.redirects.filter;
20 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/redirects/models/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("6.12.0")
19 | package com.adobe.acs.commons.redirects.models;
20 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/redirects/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("1.0.0")
19 | package com.adobe.acs.commons.redirects;
20 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/redirects/servlets/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("1.2.0")
19 | package com.adobe.acs.commons.redirects.servlets;
20 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/remoteassets/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("2.0.0")
19 | package com.adobe.acs.commons.remoteassets;
20 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/reports/api/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("2.0.0")
19 | package com.adobe.acs.commons.reports.api;
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/reports/internal/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @Version("1.0.1")
19 | package com.adobe.acs.commons.reports.internal;
20 |
21 | import org.osgi.annotation.versioning.Version;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/reports/models/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @org.osgi.annotation.versioning.Version("1.2.1")
19 | package com.adobe.acs.commons.reports.models;
20 |
21 |
22 |
23 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/rewriter/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Rewriter Utilities.
20 | */
21 | @org.osgi.annotation.versioning.Version("2.0.0")
22 | package com.adobe.acs.commons.rewriter;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/synth/WrappedRequestPathInfo.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | package com.adobe.acs.commons.synth;
20 |
21 | public interface WrappedRequestPathInfo {
22 | }
23 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/synth/children/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | @Version("2.0.0")
19 |
20 | package com.adobe.acs.commons.synth.children;
21 |
22 | import org.osgi.annotation.versioning.Version;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/synth/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @Version("2.3.0")
20 | package com.adobe.acs.commons.synth;
21 |
22 | import org.osgi.annotation.versioning.Version;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/twitter/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Twitter Client.
20 | */
21 | @org.osgi.annotation.versioning.Version("1.0.1")
22 | package com.adobe.acs.commons.twitter;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/users/impl/Operation.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | package com.adobe.acs.commons.users.impl;
20 |
21 | public enum Operation {
22 | ADD, REMOVE
23 | }
24 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/wcm/notifications/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 |
19 | @Version("2.1.3")
20 | package com.adobe.acs.commons.wcm.notifications;
21 |
22 | import org.osgi.annotation.versioning.Version;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/wcm/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Miscellaneous WCM Utilities.
20 | */
21 | @org.osgi.annotation.versioning.Version("4.0.0")
22 | package com.adobe.acs.commons.wcm;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/wcm/vanity/WrappedRequestPathInfoWrapper.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | package com.adobe.acs.commons.wcm.vanity;
19 |
20 | public interface WrappedRequestPathInfoWrapper {
21 | }
22 |
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/wcm/vanity/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * Vanity WCM Utilities.
20 | */
21 | @org.osgi.annotation.versioning.Version("1.2.0")
22 | package com.adobe.acs.commons.wcm.vanity;
--------------------------------------------------------------------------------
/bundle/src/main/java/com/adobe/acs/commons/workflow/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ACS AEM Commons
3 | *
4 | * Copyright (C) 2013 - 2023 Adobe
5 | *
6 | * Licensed under the Apache License, Version 2.0 (the "License");
7 | * you may not use this file except in compliance with the License.
8 | * You may obtain a copy of the License at
9 | *
10 | * http://www.apache.org/licenses/LICENSE-2.0
11 | *
12 | * Unless required by applicable law or agreed to in writing, software
13 | * distributed under the License is distributed on an "AS IS" BASIS,
14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 | * See the License for the specific language governing permissions and
16 | * limitations under the License.
17 | */
18 | /**
19 | * AEM Workflow APIs
20 | */
21 | @org.osgi.annotation.versioning.Version("1.1.1")
22 | package com.adobe.acs.commons.workflow;
--------------------------------------------------------------------------------
/bundle/src/main/resources/META-INF/COPYRIGHT:
--------------------------------------------------------------------------------
1 | Copyright 2013 Adobe
2 |
3 | Adobe holds the copyright for all the files found in this repository.
4 |
5 | Licensed under the Apache License, Version 2.0 (the "License");
6 | you may not use this file except in compliance with the License.
7 | You may obtain a copy of the License at
8 |
9 | http://www.apache.org/licenses/LICENSE-2.0
10 |
11 | Unless required by applicable law or agreed to in writing, software
12 | distributed under the License is distributed on an "AS IS" BASIS,
13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 | See the License for the specific language governing permissions and
15 | limitations under the License.
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/CoatedFOGRA27.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/CoatedFOGRA27.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/CoatedFOGRA39.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/CoatedFOGRA39.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/JapanColor2001Coated.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/JapanColor2001Coated.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/JapanColor2001Uncoated.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/JapanColor2001Uncoated.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/JapanColor2002Newspaper.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/JapanColor2002Newspaper.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/JapanWebCoated.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/JapanWebCoated.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/USSheetfedCoated.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/USSheetfedCoated.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/USSheetfedUncoated.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/USSheetfedUncoated.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/USWebCoatedSWOP.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/USWebCoatedSWOP.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/USWebUncoated.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/USWebUncoated.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/UncoatedFOGRA29.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/UncoatedFOGRA29.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/cmyk/WebCoatedFOGRA28.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/cmyk/WebCoatedFOGRA28.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/rgb/AdobeRGB1998.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/rgb/AdobeRGB1998.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/rgb/AppleRGB.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/rgb/AppleRGB.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/icc/rgb/ColorMatchRGB.icc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/icc/rgb/ColorMatchRGB.icc
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.3g2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.3g2
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.3gp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.3gp
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.aac:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.aac
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.ai:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.ai
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.aiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.aiff
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.avi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.avi
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.bmp
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.css:
--------------------------------------------------------------------------------
1 | @charset "UTF-8";
2 | /* CSS Document */
3 |
4 | /* REMOTE ASSET, FILETYPE: CSS */
5 |
6 | h1 {
7 | font-weight:bold;
8 | font-size:36px;
9 | }
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.doc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.doc
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.docx
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.eps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.eps
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.epub:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.epub
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.f4v:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.f4v
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.flv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.flv
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.gif
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.indd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.indd
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.jar
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.jpeg
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.jpg
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.m2v:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.m2v
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.m4v:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.m4v
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.midi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.midi
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.mov:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.mov
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.mp3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.mp3
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.mp4
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.mpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.mpeg
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.mpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.mpg
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.ogg
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.ogv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.ogv
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.pdf
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.png
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.ppt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.ppt
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.pptx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.pptx
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.psd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.psd
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.rar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.rar
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.rtf:
--------------------------------------------------------------------------------
1 | {\rtf1\ansi\ansicpg1252\cocoartf1504\cocoasubrtf820
2 | {\fonttbl\f0\fswiss\fcharset0 Helvetica;}
3 | {\colortbl;\red255\green255\blue255;}
4 | {\*\expandedcolortbl;;}
5 | \margl1440\margr1440\vieww10800\viewh8400\viewkind0
6 | \pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural\partightenfactor0
7 |
8 | \f0\fs24 \cf0 remote_asset: rtf}
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.swf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.swf
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.tar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.tar
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.tgz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.tgz
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.tif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.tif
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.tiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.tiff
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.txt:
--------------------------------------------------------------------------------
1 | REMOTE ASSET, FILETYPE: TXT
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.wav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.wav
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.webm:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.webm
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.wma:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.wma
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.wmv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.wmv
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.xls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.xls
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.xlsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Adobe-Consulting-Services/acs-aem-commons/530aa757de8c45b95f6a31ff3f3b6107ac02c644/bundle/src/main/resources/remoteassets/remote_asset.xlsx
--------------------------------------------------------------------------------
/bundle/src/main/resources/remoteassets/remote_asset.xml:
--------------------------------------------------------------------------------
1 |
2 |
19 |
20 |
Download the JSON dump from the selected server using the configuration defined on that tab.
3 | 4 |