├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── components ├── org.apache.stratos.autoscaler │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── autoscaler │ │ │ │ ├── algorithms │ │ │ │ ├── NetworkPartitionAlgorithm.java │ │ │ │ ├── PartitionAlgorithm.java │ │ │ │ ├── networkpartition │ │ │ │ │ ├── AllAtOnceAlgorithm.java │ │ │ │ │ ├── NetworkPartitionAlgorithmContext.java │ │ │ │ │ └── OneAfterAnotherAlgorithm.java │ │ │ │ └── partition │ │ │ │ │ ├── OneAfterAnother.java │ │ │ │ │ └── RoundRobin.java │ │ │ │ ├── applications │ │ │ │ ├── ApplicationEventSynchronizer.java │ │ │ │ ├── ApplicationHolder.java │ │ │ │ ├── ApplicationUtils.java │ │ │ │ ├── ClusterInformation.java │ │ │ │ ├── MTClusterInformation.java │ │ │ │ ├── STClusterInformation.java │ │ │ │ ├── dependency │ │ │ │ │ ├── DependencyBuilder.java │ │ │ │ │ ├── DependencyTree.java │ │ │ │ │ └── context │ │ │ │ │ │ ├── ApplicationChildContext.java │ │ │ │ │ │ ├── ApplicationChildContextFactory.java │ │ │ │ │ │ ├── ClusterChildContext.java │ │ │ │ │ │ └── GroupChildContext.java │ │ │ │ ├── parser │ │ │ │ │ ├── ApplicationParser.java │ │ │ │ │ ├── DefaultApplicationParser.java │ │ │ │ │ └── ParserUtils.java │ │ │ │ ├── payload │ │ │ │ │ ├── ApplicationCartridgePayloadData.java │ │ │ │ │ ├── BasicPayloadData.java │ │ │ │ │ ├── DataCartridgePayloadData.java │ │ │ │ │ ├── FrameworkCartridgePayloadData.java │ │ │ │ │ ├── LoadBalancerCartridgePayloadData.java │ │ │ │ │ ├── PayloadData.java │ │ │ │ │ └── PayloadFactory.java │ │ │ │ ├── pojo │ │ │ │ │ ├── ApplicationClusterContext.java │ │ │ │ │ ├── ApplicationContext.java │ │ │ │ │ ├── ArtifactRepositoryContext.java │ │ │ │ │ ├── CartridgeContext.java │ │ │ │ │ ├── ComponentContext.java │ │ │ │ │ ├── DependencyContext.java │ │ │ │ │ ├── GroupContext.java │ │ │ │ │ ├── PersistenceContext.java │ │ │ │ │ ├── SubscribableContext.java │ │ │ │ │ ├── SubscribableInfoContext.java │ │ │ │ │ └── VolumeContext.java │ │ │ │ └── topic │ │ │ │ │ ├── ApplicationBuilder.java │ │ │ │ │ └── ApplicationsEventPublisher.java │ │ │ │ ├── client │ │ │ │ ├── AutoscalerCloudControllerClient.java │ │ │ │ ├── IdentityApplicationManagementServiceClient.java │ │ │ │ ├── OAuthAdminServiceClient.java │ │ │ │ └── Utility.java │ │ │ │ ├── commands │ │ │ │ └── ASPolicyCommands.java │ │ │ │ ├── context │ │ │ │ ├── AutoscalerContext.java │ │ │ │ ├── InstanceContext.java │ │ │ │ ├── application │ │ │ │ │ └── ParentInstanceContext.java │ │ │ │ ├── cluster │ │ │ │ │ ├── AbstractClusterContext.java │ │ │ │ │ ├── ClusterContext.java │ │ │ │ │ ├── ClusterContextFactory.java │ │ │ │ │ └── ClusterInstanceContext.java │ │ │ │ ├── member │ │ │ │ │ └── MemberStatsContext.java │ │ │ │ └── partition │ │ │ │ │ ├── ClusterLevelPartitionContext.java │ │ │ │ │ ├── ParentLevelPartitionContext.java │ │ │ │ │ ├── PartitionContext.java │ │ │ │ │ └── network │ │ │ │ │ └── NetworkPartitionContext.java │ │ │ │ ├── event │ │ │ │ ├── publisher │ │ │ │ │ ├── ClusterStatusEventPublisher.java │ │ │ │ │ └── InstanceNotificationPublisher.java │ │ │ │ └── receiver │ │ │ │ │ ├── health │ │ │ │ │ └── AutoscalerHealthStatEventReceiver.java │ │ │ │ │ ├── initializer │ │ │ │ │ └── AutoscalerInitializerTopicReceiver.java │ │ │ │ │ └── topology │ │ │ │ │ └── AutoscalerTopologyEventReceiver.java │ │ │ │ ├── exception │ │ │ │ ├── AutoScalerException.java │ │ │ │ ├── AutoScalingPolicyAlreadyExistException.java │ │ │ │ ├── CartridgeGroupNotFoundException.java │ │ │ │ ├── CartridgeNotFoundException.java │ │ │ │ ├── CloudControllerConnectionException.java │ │ │ │ ├── InvalidArgumentException.java │ │ │ │ ├── application │ │ │ │ │ ├── ApplicationDefinitionException.java │ │ │ │ │ ├── DependencyBuilderException.java │ │ │ │ │ ├── InvalidApplicationPolicyException.java │ │ │ │ │ ├── InvalidServiceGroupException.java │ │ │ │ │ ├── MonitorNotFoundException.java │ │ │ │ │ ├── TopologyInConsistentException.java │ │ │ │ │ └── UnremovableApplicationException.java │ │ │ │ ├── cartridge │ │ │ │ │ ├── CartridgeInformationException.java │ │ │ │ │ ├── NonExistingLBException.java │ │ │ │ │ └── SpawningException.java │ │ │ │ ├── partition │ │ │ │ │ ├── InvalidPartitionException.java │ │ │ │ │ └── PartitionValidationException.java │ │ │ │ └── policy │ │ │ │ │ ├── ApplicatioinPolicyNotExistsException.java │ │ │ │ │ ├── ApplicationPolicyAlreadyExistsException.java │ │ │ │ │ ├── DeploymentPolicyAlreadyExistsException.java │ │ │ │ │ ├── DeploymentPolicyNotExistsException.java │ │ │ │ │ ├── InvalidDeploymentPolicyException.java │ │ │ │ │ ├── InvalidPolicyException.java │ │ │ │ │ ├── PolicyDoesNotExistException.java │ │ │ │ │ ├── PolicyValidationException.java │ │ │ │ │ └── UnremovablePolicyException.java │ │ │ │ ├── internal │ │ │ │ └── AutoscalerServiceComponent.java │ │ │ │ ├── monitor │ │ │ │ ├── EventHandler.java │ │ │ │ ├── Monitor.java │ │ │ │ ├── MonitorFactory.java │ │ │ │ ├── cluster │ │ │ │ │ └── ClusterMonitor.java │ │ │ │ ├── component │ │ │ │ │ ├── ApplicationMonitor.java │ │ │ │ │ ├── GroupMonitor.java │ │ │ │ │ └── ParentComponentMonitor.java │ │ │ │ └── events │ │ │ │ │ ├── ApplicationStatusEvent.java │ │ │ │ │ ├── ClusterStatusEvent.java │ │ │ │ │ ├── GroupStatusEvent.java │ │ │ │ │ ├── MonitorEvent.java │ │ │ │ │ ├── MonitorStatusEvent.java │ │ │ │ │ ├── ScalingDownBeyondMinEvent.java │ │ │ │ │ ├── ScalingEvent.java │ │ │ │ │ ├── ScalingUpBeyondMaxEvent.java │ │ │ │ │ └── builder │ │ │ │ │ └── MonitorStatusEventBuilder.java │ │ │ │ ├── pojo │ │ │ │ ├── Dependencies.java │ │ │ │ ├── ServiceGroup.java │ │ │ │ └── policy │ │ │ │ │ ├── PolicyManager.java │ │ │ │ │ ├── autoscale │ │ │ │ │ ├── AutoscalePolicy.java │ │ │ │ │ ├── LoadAverage.java │ │ │ │ │ ├── LoadAverageThresholds.java │ │ │ │ │ ├── LoadThresholds.java │ │ │ │ │ ├── MemoryConsumption.java │ │ │ │ │ ├── MemoryConsumptionThresholds.java │ │ │ │ │ ├── RequestsInFlight.java │ │ │ │ │ └── RequestsInFlightThresholds.java │ │ │ │ │ └── deployment │ │ │ │ │ ├── ApplicationPolicy.java │ │ │ │ │ └── DeploymentPolicy.java │ │ │ │ ├── registry │ │ │ │ └── RegistryManager.java │ │ │ │ ├── rule │ │ │ │ ├── AutoscalerRuleEvaluator.java │ │ │ │ ├── RuleLog.java │ │ │ │ └── RuleTasksDelegator.java │ │ │ │ ├── services │ │ │ │ ├── AutoscalerService.java │ │ │ │ └── impl │ │ │ │ │ └── AutoscalerServiceImpl.java │ │ │ │ ├── statistics │ │ │ │ └── publisher │ │ │ │ │ ├── AutoscalerPublisherFactory.java │ │ │ │ │ ├── DASScalingDecisionPublisher.java │ │ │ │ │ └── ScalingDecisionPublisher.java │ │ │ │ ├── status │ │ │ │ └── processor │ │ │ │ │ ├── StatusProcessor.java │ │ │ │ │ ├── StatusProcessorChain.java │ │ │ │ │ ├── cluster │ │ │ │ │ ├── ClusterStatusActiveProcessor.java │ │ │ │ │ ├── ClusterStatusInactiveProcessor.java │ │ │ │ │ ├── ClusterStatusProcessor.java │ │ │ │ │ ├── ClusterStatusProcessorChain.java │ │ │ │ │ └── ClusterStatusTerminatedProcessor.java │ │ │ │ │ └── group │ │ │ │ │ ├── GroupStatusActiveProcessor.java │ │ │ │ │ ├── GroupStatusInactiveProcessor.java │ │ │ │ │ ├── GroupStatusProcessor.java │ │ │ │ │ ├── GroupStatusProcessorChain.java │ │ │ │ │ └── GroupStatusTerminatedProcessor.java │ │ │ │ └── util │ │ │ │ ├── AutoscalerConstants.java │ │ │ │ ├── AutoscalerObjectConverter.java │ │ │ │ ├── AutoscalerUtil.java │ │ │ │ ├── ConfUtil.java │ │ │ │ ├── Deserializer.java │ │ │ │ ├── Serializer.java │ │ │ │ └── ServiceReferenceHolder.java │ │ └── resources │ │ │ └── META-INF │ │ │ ├── component.xml │ │ │ └── services.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── autoscaler │ │ │ ├── AutoscalerUtilTest.java │ │ │ ├── TestDelegator.java │ │ │ ├── TestMinimumRule.java │ │ │ ├── TestObsoletedMemberRule.java │ │ │ └── TestRulesPackaged.java │ │ └── resources │ │ ├── autoscaler-old.drl │ │ ├── autoscaler.drl │ │ ├── autoscaler.xml │ │ ├── deployment-policy.xml │ │ ├── log4j.properties │ │ ├── minimum-autoscaler-rule.drl │ │ ├── partition.xml │ │ ├── partitions.xml │ │ ├── test-minimum-autoscaler-rule.drl │ │ └── test-terminating-obsoleted-members-rule.drl ├── org.apache.stratos.cartridge.agent │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── cartridge │ │ │ └── agent │ │ │ ├── CartridgeAgent.java │ │ │ ├── CartridgeAgentEventListeners.java │ │ │ ├── Main.java │ │ │ ├── artifact │ │ │ └── deployment │ │ │ │ └── synchronizer │ │ │ │ ├── RepositoryInformation.java │ │ │ │ └── git │ │ │ │ ├── impl │ │ │ │ └── GitBasedArtifactRepository.java │ │ │ │ ├── internal │ │ │ │ ├── CustomJschConfigSessionFactory.java │ │ │ │ ├── GitDeploymentSynchronizerConstants.java │ │ │ │ └── RepositoryContext.java │ │ │ │ └── util │ │ │ │ └── Utilities.java │ │ │ ├── config │ │ │ └── CartridgeAgentConfiguration.java │ │ │ ├── data │ │ │ └── publisher │ │ │ │ ├── DataContext.java │ │ │ │ ├── DataPublisher.java │ │ │ │ ├── DataPublisherConfiguration.java │ │ │ │ ├── GenericDataPublisher.java │ │ │ │ ├── exception │ │ │ │ └── DataPublisherException.java │ │ │ │ └── log │ │ │ │ ├── Constants.java │ │ │ │ ├── FileBasedLogPublisher.java │ │ │ │ ├── LogPublisher.java │ │ │ │ └── LogPublisherManager.java │ │ │ ├── event │ │ │ └── publisher │ │ │ │ └── CartridgeAgentEventPublisher.java │ │ │ ├── exception │ │ │ └── ParameterNotFoundException.java │ │ │ ├── extensions │ │ │ ├── DefaultExtensionHandler.java │ │ │ └── ExtensionHandler.java │ │ │ ├── statistics │ │ │ └── publisher │ │ │ │ ├── CartridgeStatistics.java │ │ │ │ ├── HealthStatisticsNotifier.java │ │ │ │ ├── HealthStatisticsReader.java │ │ │ │ ├── IHealthStatisticsReader.java │ │ │ │ └── PluginLoader.java │ │ │ └── util │ │ │ ├── CartridgeAgentConstants.java │ │ │ ├── CartridgeAgentUtils.java │ │ │ └── ExtensionUtils.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── cartridge │ │ │ └── agent │ │ │ └── test │ │ │ └── JavaCartridgeAgentTest.java │ │ └── resources │ │ ├── bin │ │ └── stratos.sh │ │ ├── conf │ │ ├── jndi.properties │ │ ├── log4j.properties │ │ └── mqtttopic.properties │ │ ├── jndi.properties │ │ ├── log4j.properties │ │ ├── payload │ │ └── launch-params │ │ └── test-conf │ │ └── test.properties ├── org.apache.stratos.cli │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── assembly │ │ │ └── src.xml │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── cli │ │ │ │ ├── CliTool.java │ │ │ │ ├── Command.java │ │ │ │ ├── CommandContext.java │ │ │ │ ├── CommandLineApplication.java │ │ │ │ ├── GenericRestClient.java │ │ │ │ ├── Main.java │ │ │ │ ├── RestClient.java │ │ │ │ ├── RestCommandLineService.java │ │ │ │ ├── StratosApplication.java │ │ │ │ ├── StratosCommandContext.java │ │ │ │ ├── WebClientWrapper.java │ │ │ │ ├── commands │ │ │ │ ├── ActivateTenantCommand.java │ │ │ │ ├── AddApplicationPolicyCommand.java │ │ │ │ ├── AddApplicationSignupCommand.java │ │ │ │ ├── AddAutoscalingPolicyCommand.java │ │ │ │ ├── AddCartridgeCommand.java │ │ │ │ ├── AddCartridgeGroupCommand.java │ │ │ │ ├── AddDeploymentPolicyCommand.java │ │ │ │ ├── AddDomainMappingsCommand.java │ │ │ │ ├── AddKubernetesClusterCommand.java │ │ │ │ ├── AddKubernetesHostCommand.java │ │ │ │ ├── AddNetworkPartitionCommand.java │ │ │ │ ├── AddTenantCommand.java │ │ │ │ ├── AddUserCommand.java │ │ │ │ ├── CreateApplicationCommand.java │ │ │ │ ├── DeactivateTenantCommand.java │ │ │ │ ├── DeleteApplicationCommand.java │ │ │ │ ├── DeleteApplicationSignupCommand.java │ │ │ │ ├── DeleteAutoScalingPolicyCommand.java │ │ │ │ ├── DeleteUserCommand.java │ │ │ │ ├── DeployApplicationCommand.java │ │ │ │ ├── DescribeApplicationCommand.java │ │ │ │ ├── DescribeApplicationPolicyCommand.java │ │ │ │ ├── DescribeApplicationRuntimeCommand.java │ │ │ │ ├── DescribeApplicationSignupCommand.java │ │ │ │ ├── DescribeAutoScalingPolicyCommand.java │ │ │ │ ├── DescribeCartridgeCommand.java │ │ │ │ ├── DescribeCartridgeGroupCommand.java │ │ │ │ ├── DescribeDeploymentPolicyCommand.java │ │ │ │ ├── DescribeKubernetesClusterCommand.java │ │ │ │ ├── DescribeKubernetesMasterCommand.java │ │ │ │ ├── DescribeNetworkPartitionCommand.java │ │ │ │ ├── DescribeTenantCommand.java │ │ │ │ ├── ExitCommand.java │ │ │ │ ├── HelpCommand.java │ │ │ │ ├── InfoCommand.java │ │ │ │ ├── ListApplicationPoliciesCommand.java │ │ │ │ ├── ListApplicationsCommand.java │ │ │ │ ├── ListAutoscalePolicyCommand.java │ │ │ │ ├── ListCartridgeGroupsCommand.java │ │ │ │ ├── ListCartridgesCommand.java │ │ │ │ ├── ListDeploymentPoliciesCommand.java │ │ │ │ ├── ListDomainMappingsCommand.java │ │ │ │ ├── ListKubernetesClustersCommand.java │ │ │ │ ├── ListKubernetesHostsCommand.java │ │ │ │ ├── ListNetworkPartitionCommand.java │ │ │ │ ├── ListTenants.java │ │ │ │ ├── ListUsers.java │ │ │ │ ├── RemoveApplicationPolicyCommand.java │ │ │ │ ├── RemoveCartridgeCommand.java │ │ │ │ ├── RemoveCartridgeGroupCommand.java │ │ │ │ ├── RemoveDeploymentPolicyCommand.java │ │ │ │ ├── RemoveDomainMappingCommand.java │ │ │ │ ├── RemoveKubernetesClusterCommand.java │ │ │ │ ├── RemoveKubernetesHostCommand.java │ │ │ │ ├── RemoveNetworkPartitionCommand.java │ │ │ │ ├── SynchronizeArtifactsCommand.java │ │ │ │ ├── UndeployApplicationCommand.java │ │ │ │ ├── UpdateApplicationCommand.java │ │ │ │ ├── UpdateApplicationPolicyCommand.java │ │ │ │ ├── UpdateAutoscalingPolicyCommand.java │ │ │ │ ├── UpdateCartridgeCommand.java │ │ │ │ ├── UpdateDeploymentPolicyCommand.java │ │ │ │ ├── UpdateKubernetesHostCommand.java │ │ │ │ ├── UpdateKubernetesMasterCommand.java │ │ │ │ ├── UpdateNetworkPartitionCommand.java │ │ │ │ ├── UpdateTenantCommand.java │ │ │ │ └── UpdateUserCommand.java │ │ │ │ ├── completer │ │ │ │ ├── CommandCompleter.java │ │ │ │ └── StratosFileNameCompleter.java │ │ │ │ ├── exception │ │ │ │ ├── CommandException.java │ │ │ │ ├── ErrorWrapper.java │ │ │ │ └── ExceptionMapper.java │ │ │ │ └── utils │ │ │ │ ├── CliConstants.java │ │ │ │ ├── CliUtils.java │ │ │ │ └── RowMapper.java │ │ └── resources │ │ │ ├── Resources.properties │ │ │ ├── log4j.properties │ │ │ └── wso2carbon.jks │ │ └── test │ │ └── python │ │ ├── .gitignore │ │ ├── README.md │ │ ├── __files │ │ ├── body_cookie.json │ │ ├── body_tenant_create.json │ │ ├── body_tenant_deactivate.json │ │ └── body_tenant_list.json │ │ ├── __init__.py │ │ ├── mappings │ │ ├── cookie.json │ │ ├── tenant-create.json │ │ ├── tenant-deactivate.json │ │ └── tenant-list.json │ │ ├── test_common.py │ │ ├── test_interactive.py │ │ ├── test_noninteractive.py │ │ └── wiremock.py ├── org.apache.stratos.cloud.controller │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── cloud │ │ │ │ └── controller │ │ │ │ ├── config │ │ │ │ ├── CloudControllerConfig.java │ │ │ │ └── parser │ │ │ │ │ ├── CloudControllerConfigParser.java │ │ │ │ │ └── IaasProviderConfigParser.java │ │ │ │ ├── context │ │ │ │ └── CloudControllerContext.java │ │ │ │ ├── deployers │ │ │ │ └── CloudControllerDeployer.java │ │ │ │ ├── domain │ │ │ │ ├── AppType.java │ │ │ │ ├── ApplicationClusterContext.java │ │ │ │ ├── Cartridge.java │ │ │ │ ├── ClusterContext.java │ │ │ │ ├── ClusterPortMapping.java │ │ │ │ ├── CompositeApplicationDefinition.java │ │ │ │ ├── ConfigCartridge.java │ │ │ │ ├── ConfigDependencies.java │ │ │ │ ├── ConfigDependencyPair.java │ │ │ │ ├── ConfigGroup.java │ │ │ │ ├── Container.java │ │ │ │ ├── ContainerClusterContext.java │ │ │ │ ├── DataPublisherConfig.java │ │ │ │ ├── Dependencies.java │ │ │ │ ├── FloatingNetwork.java │ │ │ │ ├── FloatingNetworks.java │ │ │ │ ├── IaasConfig.java │ │ │ │ ├── IaasProvider.java │ │ │ │ ├── InstanceContext.java │ │ │ │ ├── InstanceMetadata.java │ │ │ │ ├── LoadbalancerConfig.java │ │ │ │ ├── MemberContext.java │ │ │ │ ├── NetworkInterface.java │ │ │ │ ├── NetworkInterfaces.java │ │ │ │ ├── NetworkPartition.java │ │ │ │ ├── Partition.java │ │ │ │ ├── Persistence.java │ │ │ │ ├── PortMapping.java │ │ │ │ ├── Registrant.java │ │ │ │ ├── ServiceGroup.java │ │ │ │ ├── TopologyConfig.java │ │ │ │ ├── Volume.java │ │ │ │ └── kubernetes │ │ │ │ │ ├── KubernetesCluster.java │ │ │ │ │ ├── KubernetesClusterContext.java │ │ │ │ │ ├── KubernetesHost.java │ │ │ │ │ ├── KubernetesMaster.java │ │ │ │ │ └── PortRange.java │ │ │ │ ├── exception │ │ │ │ ├── ApplicationClusterRegistrationException.java │ │ │ │ ├── ApplicationDefinitionException.java │ │ │ │ ├── CartridgeAlreadyExistsException.java │ │ │ │ ├── CartridgeDefinitionNotExistsException.java │ │ │ │ ├── CartridgeNotFoundException.java │ │ │ │ ├── CloudControllerException.java │ │ │ │ ├── ClusterInstanceCreationException.java │ │ │ │ ├── DeserializationException.java │ │ │ │ ├── InvalidCartridgeDefinitionException.java │ │ │ │ ├── InvalidCartridgeTypeException.java │ │ │ │ ├── InvalidClusterException.java │ │ │ │ ├── InvalidCompositeApplicationDefinitionException.java │ │ │ │ ├── InvalidHostException.java │ │ │ │ ├── InvalidIaasProviderException.java │ │ │ │ ├── InvalidKubernetesClusterException.java │ │ │ │ ├── InvalidKubernetesHostException.java │ │ │ │ ├── InvalidKubernetesMasterException.java │ │ │ │ ├── InvalidMemberException.java │ │ │ │ ├── InvalidNetworkPartitionException.java │ │ │ │ ├── InvalidPartitionException.java │ │ │ │ ├── InvalidRegionException.java │ │ │ │ ├── InvalidServiceGroupException.java │ │ │ │ ├── InvalidXMLException.java │ │ │ │ ├── InvalidZoneException.java │ │ │ │ ├── KubernetesClusterAlreadyExistsException.java │ │ │ │ ├── KubernetesClusterAlreadyUsedException.java │ │ │ │ ├── KubernetesEndpointValidationException.java │ │ │ │ ├── MemberTerminationFailedException.java │ │ │ │ ├── NetworkPartitionAlreadyExistsException.java │ │ │ │ ├── NetworkPartitionNotExistsException.java │ │ │ │ ├── NoInstanceFoundException.java │ │ │ │ ├── NonExistingKubernetesClusterException.java │ │ │ │ ├── NonExistingKubernetesHostException.java │ │ │ │ ├── NonExistingKubernetesMasterException.java │ │ │ │ ├── SerializationException.java │ │ │ │ └── UnregisteredClusterException.java │ │ │ │ ├── iaases │ │ │ │ ├── Iaas.java │ │ │ │ ├── JcloudsIaas.java │ │ │ │ ├── JcloudsIaasUtil.java │ │ │ │ ├── PartitionValidator.java │ │ │ │ ├── cloudstack │ │ │ │ │ ├── CloudStackIaas.java │ │ │ │ │ └── CloudStackPartitionValidator.java │ │ │ │ ├── docker │ │ │ │ │ ├── DockerIaas.java │ │ │ │ │ └── DockerPartitionValidator.java │ │ │ │ ├── ec2 │ │ │ │ │ ├── EC2Iaas.java │ │ │ │ │ └── EC2PartitionValidator.java │ │ │ │ ├── gce │ │ │ │ │ ├── GCEIaas.java │ │ │ │ │ └── GCEPartitionValidator.java │ │ │ │ ├── kubernetes │ │ │ │ │ ├── KubernetesIaas.java │ │ │ │ │ ├── KubernetesIaasUtil.java │ │ │ │ │ └── KubernetesPartitionValidator.java │ │ │ │ ├── mock │ │ │ │ │ ├── MockIaas.java │ │ │ │ │ └── MockIaasPartitionValidator.java │ │ │ │ └── openstack │ │ │ │ │ ├── OpenstackIaas.java │ │ │ │ │ ├── OpenstackPartitionValidator.java │ │ │ │ │ └── networking │ │ │ │ │ ├── NeutronNetworkingApi.java │ │ │ │ │ ├── NovaNetworkingApi.java │ │ │ │ │ └── OpenstackNetworkingApi.java │ │ │ │ ├── internal │ │ │ │ ├── CloudControllerServiceComponent.java │ │ │ │ └── ServiceReferenceHolder.java │ │ │ │ ├── messaging │ │ │ │ ├── publisher │ │ │ │ │ ├── TopologyEventPublisher.java │ │ │ │ │ └── TopologyEventSynchronizer.java │ │ │ │ ├── receiver │ │ │ │ │ ├── application │ │ │ │ │ │ └── ApplicationEventReceiver.java │ │ │ │ │ ├── cluster │ │ │ │ │ │ └── status │ │ │ │ │ │ │ └── ClusterStatusTopicReceiver.java │ │ │ │ │ ├── initializer │ │ │ │ │ │ └── InitializerTopicReceiver.java │ │ │ │ │ └── instance │ │ │ │ │ │ └── status │ │ │ │ │ │ └── InstanceStatusTopicReceiver.java │ │ │ │ └── topology │ │ │ │ │ ├── TopologyBuilder.java │ │ │ │ │ └── TopologyHolder.java │ │ │ │ ├── registry │ │ │ │ └── RegistryManager.java │ │ │ │ ├── services │ │ │ │ ├── CloudControllerService.java │ │ │ │ └── impl │ │ │ │ │ ├── CloudControllerServiceImpl.java │ │ │ │ │ ├── CloudControllerServiceUtil.java │ │ │ │ │ ├── InstanceCreator.java │ │ │ │ │ └── InstanceTerminator.java │ │ │ │ ├── statistics │ │ │ │ └── publisher │ │ │ │ │ ├── CloudControllerPublisherFactory.java │ │ │ │ │ ├── DASMemberInformationPublisher.java │ │ │ │ │ ├── DASMemberStatusPublisher.java │ │ │ │ │ ├── MemberInformationPublisher.java │ │ │ │ │ └── MemberStatusPublisher.java │ │ │ │ └── util │ │ │ │ ├── CloudControllerConstants.java │ │ │ │ ├── CloudControllerUtil.java │ │ │ │ ├── ComputeServiceBuilderUtil.java │ │ │ │ └── Scope.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── component.xml │ │ │ └── services.xml │ │ │ ├── cartridge.xsd │ │ │ ├── cartridges.xsd │ │ │ ├── service.xsd │ │ │ └── services.xsd │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ ├── cartridge │ │ │ └── autoscaler │ │ │ │ └── service │ │ │ │ └── axiom │ │ │ │ ├── AxiomValidationTest.java │ │ │ │ ├── AxiomXpathParserTest.java │ │ │ │ └── CloudControllerContextTest.java │ │ │ └── stratos │ │ │ └── cloud │ │ │ └── controller │ │ │ ├── application │ │ │ └── CompositeApplicationParseTest.java │ │ │ ├── iaases │ │ │ ├── kubernetes │ │ │ │ └── KubernetesClusterContextTest.java │ │ │ └── openstack │ │ │ │ └── networking │ │ │ │ └── NeutronNetworkingApiTest.java │ │ │ └── iaasprovider │ │ │ └── IaaSProviderTest.java │ │ └── resources │ │ ├── cartridges-1.xml │ │ ├── cartridges-2.xml │ │ ├── cartridges-3.xml │ │ ├── cartridges-4.xml │ │ ├── cartridges-5.xml │ │ ├── cartridges-6.xml │ │ ├── cartridges-7.xml │ │ ├── cartridges-8.xml │ │ ├── cartridges-9.xml │ │ ├── cloud-controller-ec2-iaas.xml │ │ └── cloud-controller.xml ├── org.apache.stratos.common │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── common │ │ │ │ ├── Component.java │ │ │ │ ├── Properties.java │ │ │ │ ├── Property.java │ │ │ │ ├── TenantBillingService.java │ │ │ │ ├── beans │ │ │ │ ├── IaasProviderInfoBean.java │ │ │ │ ├── PropertiesBean.java │ │ │ │ ├── PropertyBean.java │ │ │ │ ├── ResponseMessageBean.java │ │ │ │ ├── TenantInfoBean.java │ │ │ │ ├── UserInfoBean.java │ │ │ │ ├── application │ │ │ │ │ ├── ApplicationAliasesBean.java │ │ │ │ │ ├── ApplicationBean.java │ │ │ │ │ ├── ApplicationNetworkPartitionIdListBean.java │ │ │ │ │ ├── ComponentBean.java │ │ │ │ │ ├── DependencyBean.java │ │ │ │ │ ├── ScalingDependentsBean.java │ │ │ │ │ ├── StartupOrderBean.java │ │ │ │ │ ├── SubscribableInfo.java │ │ │ │ │ ├── domain │ │ │ │ │ │ └── mapping │ │ │ │ │ │ │ ├── ApplicationDomainMappingsBean.java │ │ │ │ │ │ │ └── DomainMappingBean.java │ │ │ │ │ └── signup │ │ │ │ │ │ └── ApplicationSignUpBean.java │ │ │ │ ├── artifact │ │ │ │ │ └── repository │ │ │ │ │ │ ├── ArtifactRepositoryBean.java │ │ │ │ │ │ ├── GitNotificationPayloadBean.java │ │ │ │ │ │ └── GitRepositoryBean.java │ │ │ │ ├── cartridge │ │ │ │ │ ├── CartridgeBean.java │ │ │ │ │ ├── CartridgeGroupBean.java │ │ │ │ │ ├── CartridgeGroupReferenceBean.java │ │ │ │ │ ├── CartridgeReferenceBean.java │ │ │ │ │ ├── DeploymentBean.java │ │ │ │ │ ├── FloatingNetworkBean.java │ │ │ │ │ ├── IaasProviderBean.java │ │ │ │ │ ├── NetworkInterfaceBean.java │ │ │ │ │ ├── PersistenceBean.java │ │ │ │ │ ├── PortMappingBean.java │ │ │ │ │ └── VolumeBean.java │ │ │ │ ├── kubernetes │ │ │ │ │ ├── KubernetesClusterBean.java │ │ │ │ │ ├── KubernetesHostBean.java │ │ │ │ │ ├── KubernetesMasterBean.java │ │ │ │ │ ├── KubernetesServiceBean.java │ │ │ │ │ └── PortRangeBean.java │ │ │ │ ├── partition │ │ │ │ │ ├── NetworkPartitionBean.java │ │ │ │ │ ├── NetworkPartitionReferenceBean.java │ │ │ │ │ ├── PartitionBean.java │ │ │ │ │ └── PartitionReferenceBean.java │ │ │ │ ├── policy │ │ │ │ │ ├── autoscale │ │ │ │ │ │ ├── AutoscalePolicyBean.java │ │ │ │ │ │ ├── LoadAverageThresholdsBean.java │ │ │ │ │ │ ├── LoadThresholdsBean.java │ │ │ │ │ │ ├── MemoryConsumptionThresholdsBean.java │ │ │ │ │ │ └── RequestsInFlightThresholdsBean.java │ │ │ │ │ └── deployment │ │ │ │ │ │ ├── ApplicationPolicyBean.java │ │ │ │ │ │ └── DeploymentPolicyBean.java │ │ │ │ └── topology │ │ │ │ │ ├── ApplicationInfoBean.java │ │ │ │ │ ├── ApplicationInstanceBean.java │ │ │ │ │ ├── ClusterBean.java │ │ │ │ │ ├── ClusterInstanceBean.java │ │ │ │ │ ├── GroupInstanceBean.java │ │ │ │ │ ├── InstanceBean.java │ │ │ │ │ └── MemberBean.java │ │ │ │ ├── client │ │ │ │ ├── AutoscalerServiceClient.java │ │ │ │ ├── CloudControllerServiceClient.java │ │ │ │ └── StratosManagerServiceClient.java │ │ │ │ ├── clustering │ │ │ │ └── impl │ │ │ │ │ ├── HazelcastDistributedListProvider.java │ │ │ │ │ ├── HazelcastDistributedObjectProvider.java │ │ │ │ │ └── ListEntryListener.java │ │ │ │ ├── concurrent │ │ │ │ └── locks │ │ │ │ │ ├── LockMetadata.java │ │ │ │ │ ├── LockType.java │ │ │ │ │ ├── ReadWriteLock.java │ │ │ │ │ └── ReadWriteLockMonitor.java │ │ │ │ ├── config │ │ │ │ ├── CloudServiceConfig.java │ │ │ │ ├── CloudServiceConfigParser.java │ │ │ │ ├── CloudServicesDescConfig.java │ │ │ │ └── PermissionConfig.java │ │ │ │ ├── constants │ │ │ │ └── StratosConstants.java │ │ │ │ ├── domain │ │ │ │ ├── LoadBalancingIPType.java │ │ │ │ └── NameValuePair.java │ │ │ │ ├── exception │ │ │ │ ├── ApacheStratosException.java │ │ │ │ ├── InvalidEmailException.java │ │ │ │ ├── InvalidLockRequestedException.java │ │ │ │ ├── InvalidStatisticsPublisherTypeException.java │ │ │ │ ├── LockNotReleasedException.java │ │ │ │ └── MalformedConfigurationFileException.java │ │ │ │ ├── internal │ │ │ │ ├── CommonServiceComponent.java │ │ │ │ ├── ComponentStartUpSynchronizerImpl.java │ │ │ │ └── ServiceReferenceHolder.java │ │ │ │ ├── packages │ │ │ │ ├── PackageInfo.java │ │ │ │ └── PackageInfoHolder.java │ │ │ │ ├── partition │ │ │ │ ├── NetworkPartitionRef.java │ │ │ │ └── PartitionRef.java │ │ │ │ ├── services │ │ │ │ ├── ComponentActivationEventListener.java │ │ │ │ ├── ComponentStartUpEventListener.java │ │ │ │ ├── ComponentStartUpSynchronizer.java │ │ │ │ └── DistributedObjectProvider.java │ │ │ │ ├── statistics │ │ │ │ └── publisher │ │ │ │ │ ├── HealthStatisticsPublisher.java │ │ │ │ │ ├── HealthStatisticsPublisherFactory.java │ │ │ │ │ ├── InFlightRequestPublisher.java │ │ │ │ │ ├── InFlightRequestPublisherFactory.java │ │ │ │ │ ├── StatisticsPublisher.java │ │ │ │ │ ├── StatisticsPublisherType.java │ │ │ │ │ ├── ThriftClientConfig.java │ │ │ │ │ ├── ThriftClientConfigParser.java │ │ │ │ │ ├── ThriftClientInfo.java │ │ │ │ │ ├── ThriftStatisticsPublisher.java │ │ │ │ │ └── wso2 │ │ │ │ │ └── cep │ │ │ │ │ ├── WSO2CEPHealthStatisticsPublisher.java │ │ │ │ │ └── WSO2CEPInFlightRequestPublisher.java │ │ │ │ ├── test │ │ │ │ └── TestLogAppender.java │ │ │ │ ├── threading │ │ │ │ └── StratosThreadPool.java │ │ │ │ └── util │ │ │ │ ├── AxiomXpathParserUtil.java │ │ │ │ ├── CartridgeConfigFileReader.java │ │ │ │ ├── ClaimsMgtUtil.java │ │ │ │ ├── CloudServicesUtil.java │ │ │ │ ├── CommandUtils.java │ │ │ │ ├── CommonUtil.java │ │ │ │ ├── ConfUtil.java │ │ │ │ ├── MeteringAccessValidationUtils.java │ │ │ │ └── StratosConfiguration.java │ │ └── resources │ │ │ └── cloud-services-desc.xml │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── common │ │ │ └── test │ │ │ ├── CommonTest.java │ │ │ ├── DistributedObjectProviderTest.java │ │ │ ├── ReadWriteLockTest.java │ │ │ ├── ThriftClientConfigParserTest.java │ │ │ └── ThriftStatisticsPublisherTest.java │ │ └── resources │ │ └── thrift-client-config.xml ├── org.apache.stratos.custom.handlers │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── stratos │ │ └── custom │ │ └── handlers │ │ ├── authentication │ │ └── SignedJWTAuthenticator.java │ │ ├── granttype │ │ └── ClientCredentialsGrantHandler.java │ │ └── internal │ │ └── SignedJWTAuthenticatorServiceComponent.java ├── org.apache.stratos.kubernetes.client │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── kubernetes │ │ │ └── client │ │ │ ├── KubernetesApiClient.java │ │ │ ├── KubernetesConstants.java │ │ │ ├── exceptions │ │ │ └── KubernetesClientException.java │ │ │ └── interfaces │ │ │ └── KubernetesAPIClientInterface.java │ │ └── test │ │ └── java │ │ └── org │ │ └── apache │ │ └── stratos │ │ └── kubernetes │ │ └── client │ │ ├── LiveTests.java │ │ ├── UnitTests.java │ │ └── live │ │ ├── AbstractLiveTest.java │ │ ├── KubernetesApiClientLiveTest.java │ │ └── KubernetesClusterCleanTest.java ├── org.apache.stratos.load.balancer.common │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── stratos │ │ └── load │ │ └── balancer │ │ └── common │ │ ├── domain │ │ ├── Cluster.java │ │ ├── Member.java │ │ ├── Port.java │ │ ├── Service.java │ │ └── Topology.java │ │ ├── event │ │ └── receivers │ │ │ ├── LoadBalancerCommonApplicationSignUpEventReceiver.java │ │ │ ├── LoadBalancerCommonDomainMappingEventReceiver.java │ │ │ └── LoadBalancerCommonTopologyEventReceiver.java │ │ ├── internal │ │ └── LoadBalancerCommonServiceComponent.java │ │ ├── statistics │ │ ├── LoadBalancerStatisticsReader.java │ │ └── notifier │ │ │ └── LoadBalancerStatisticsNotifier.java │ │ └── topology │ │ └── TopologyProvider.java ├── org.apache.stratos.load.balancer.extension.api │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── stratos │ │ └── load │ │ └── balancer │ │ └── extension │ │ └── api │ │ ├── LoadBalancer.java │ │ ├── LoadBalancerExtension.java │ │ ├── exception │ │ └── LoadBalancerExtensionException.java │ │ └── internal │ │ └── LoadBalancerExtensionAPIServiceComponent.java ├── org.apache.stratos.load.balancer │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── load │ │ │ └── balancer │ │ │ ├── algorithm │ │ │ ├── LoadBalanceAlgorithm.java │ │ │ ├── LoadBalanceAlgorithmFactory.java │ │ │ └── RoundRobin.java │ │ │ ├── conf │ │ │ ├── LoadBalancerConfiguration.java │ │ │ ├── configurator │ │ │ │ ├── CEPConfigurator.java │ │ │ │ ├── SynapseConfigurator.java │ │ │ │ └── TopologyFilterConfigurator.java │ │ │ ├── domain │ │ │ │ ├── Algorithm.java │ │ │ │ ├── MemberIpType.java │ │ │ │ └── TenantIdentifier.java │ │ │ ├── structure │ │ │ │ ├── Node.java │ │ │ │ └── NodeBuilder.java │ │ │ └── util │ │ │ │ └── Constants.java │ │ │ ├── context │ │ │ ├── AlgorithmContext.java │ │ │ ├── ClusterContext.java │ │ │ └── LoadBalancerContext.java │ │ │ ├── endpoint │ │ │ ├── EndpointDeployer.java │ │ │ ├── RequestDelegator.java │ │ │ └── TenantAwareLoadBalanceEndpoint.java │ │ │ ├── event │ │ │ └── receivers │ │ │ │ ├── LoadBalancerDomainMappingEventReceiver.java │ │ │ │ └── LoadBalancerTopologyEventReceiver.java │ │ │ ├── exception │ │ │ ├── InvalidConfigurationException.java │ │ │ └── TenantAwareLoadBalanceEndpointException.java │ │ │ ├── internal │ │ │ ├── LoadBalancerServiceComponent.java │ │ │ └── ServiceReferenceHolder.java │ │ │ ├── mediators │ │ │ ├── LocationReWriter.java │ │ │ └── ResponseInterceptor.java │ │ │ ├── statistics │ │ │ ├── InFlightRequestDecrementCallable.java │ │ │ ├── InFlightRequestIncrementCallable.java │ │ │ ├── LoadBalancerStatisticsCollector.java │ │ │ └── LoadBalancerStatisticsExecutor.java │ │ │ └── util │ │ │ └── LoadBalancerConstants.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── load │ │ │ └── balancer │ │ │ └── test │ │ │ ├── LoadBalancerConfigurationTest.java │ │ │ └── LoadBalancerStatisticsCollectorTest.java │ │ └── resources │ │ └── sample │ │ └── configuration │ │ ├── loadbalancer1.conf │ │ ├── loadbalancer2.conf │ │ └── loadbalancer3.conf ├── org.apache.stratos.manager.console │ ├── console │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── app.js │ │ ├── applications.jag │ │ ├── applications_form.jag │ │ ├── config │ │ │ ├── console.js │ │ │ └── console.json │ │ ├── configure.jag │ │ ├── configure_form.jag │ │ ├── controllers │ │ │ ├── applications │ │ │ │ ├── application_getrequests.jag │ │ │ │ └── application_requests.jag │ │ │ ├── configure │ │ │ │ └── configure_requests.jag │ │ │ ├── forms │ │ │ │ ├── default │ │ │ │ │ ├── applications │ │ │ │ │ │ └── applications.json │ │ │ │ │ ├── configure │ │ │ │ │ │ ├── application-policies.json │ │ │ │ │ │ ├── autoscaling-policies.json │ │ │ │ │ │ ├── cartridge-groups.json │ │ │ │ │ │ ├── cartridges.json │ │ │ │ │ │ ├── deployment-policies.json │ │ │ │ │ │ ├── kubernetes-clusters.json │ │ │ │ │ │ └── network-partitions.json │ │ │ │ │ └── users │ │ │ │ │ │ ├── tenants.json │ │ │ │ │ │ └── users.json │ │ │ │ └── schema │ │ │ │ │ ├── applications │ │ │ │ │ └── applications.json │ │ │ │ │ ├── configure │ │ │ │ │ ├── application-policies.json │ │ │ │ │ ├── autoscaling-policies.json │ │ │ │ │ ├── cartridge-groups.json │ │ │ │ │ ├── cartridges.json │ │ │ │ │ ├── deployment-policies.json │ │ │ │ │ ├── kubernetes-clusters.json │ │ │ │ │ └── network-partitions.json │ │ │ │ │ └── users │ │ │ │ │ ├── tenants.json │ │ │ │ │ └── users.json │ │ │ ├── log │ │ │ │ └── console.jag │ │ │ ├── login │ │ │ │ ├── login.jag │ │ │ │ ├── logout.jag │ │ │ │ └── validator.jag │ │ │ ├── menu │ │ │ │ ├── menu.json │ │ │ │ └── menu_generator.jag │ │ │ ├── rest │ │ │ │ └── rest_calls.jag │ │ │ ├── users │ │ │ │ └── users_requests.jag │ │ │ └── wizard │ │ │ │ └── wizard_requests.jag │ │ ├── errorhtml │ │ │ ├── error-404.html │ │ │ └── error.html │ │ ├── index.jag │ │ ├── jaggery.conf │ │ ├── login.jag │ │ ├── modules │ │ │ └── pinch.min.js │ │ ├── themes │ │ │ └── theme0 │ │ │ │ ├── css │ │ │ │ ├── bootstrap-3.2.0 │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ ├── bootstrap-switch-3.0.2 │ │ │ │ │ └── bootstrap-switch.min.css │ │ │ │ ├── custom.css │ │ │ │ ├── custom │ │ │ │ │ ├── application_editor.css │ │ │ │ │ ├── application_group_editor.css │ │ │ │ │ ├── applications_deploy.css │ │ │ │ │ ├── applications_signup.css │ │ │ │ │ ├── style.css │ │ │ │ │ └── topology.css │ │ │ │ ├── font-awesome-4.2.0 │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ ├── font-mfizz-1.2 │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── font-mfizz.css │ │ │ │ │ ├── font-mfizz.eot │ │ │ │ │ ├── font-mfizz.svg │ │ │ │ │ ├── font-mfizz.ttf │ │ │ │ │ └── font-mfizz.woff │ │ │ │ ├── jquery.contextMenu │ │ │ │ │ └── jquery.contextMenu.css │ │ │ │ ├── web-fonts │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff │ │ │ │ │ │ ├── MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff │ │ │ │ │ │ ├── cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff │ │ │ │ │ │ └── k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff │ │ │ │ │ └── open_sans.css │ │ │ │ └── wizard │ │ │ │ │ └── custom.css │ │ │ │ ├── helpers │ │ │ │ ├── applications.js │ │ │ │ ├── applications_deploy.js │ │ │ │ ├── applications_editor.js │ │ │ │ ├── applications_form.js │ │ │ │ ├── applications_group_editor.js │ │ │ │ ├── applications_signup.js │ │ │ │ ├── applications_topology.js │ │ │ │ ├── applications_view.js │ │ │ │ ├── configure_form.js │ │ │ │ ├── login_body.js │ │ │ │ ├── users_form.js │ │ │ │ └── wizard.js │ │ │ │ ├── images │ │ │ │ ├── ContextMenu │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ └── page_white_edit.png │ │ │ │ ├── avatar │ │ │ │ │ └── user.png │ │ │ │ ├── favicon.png │ │ │ │ ├── stratos-logo.png │ │ │ │ ├── stratos-trans.png │ │ │ │ ├── stratos_background.png │ │ │ │ └── topology │ │ │ │ │ ├── application.png │ │ │ │ │ ├── cluster.png │ │ │ │ │ ├── group.png │ │ │ │ │ └── member.png │ │ │ │ ├── js │ │ │ │ ├── JSONEditor-0.7.12 │ │ │ │ │ └── jsoneditor-0.7.12.js │ │ │ │ ├── bootstrap-3.2.0 │ │ │ │ │ └── bootstrap.min.js │ │ │ │ ├── bootstrap-switch-3.0.2 │ │ │ │ │ └── bootstrap-switch.min.js │ │ │ │ ├── canvg │ │ │ │ │ ├── canvg.js │ │ │ │ │ └── rgbcolor.js │ │ │ │ ├── custom.js │ │ │ │ ├── custom │ │ │ │ │ ├── applications-deploy.js │ │ │ │ │ ├── applications-editor.js │ │ │ │ │ ├── applications-signup.js │ │ │ │ │ ├── applications-view.js │ │ │ │ │ ├── applications_group_editor.js │ │ │ │ │ ├── applications_topology.js │ │ │ │ │ ├── form.js │ │ │ │ │ └── script.js │ │ │ │ ├── d3js-v3 │ │ │ │ │ └── d3.v3.min.js │ │ │ │ ├── dagre-v0.7.0 │ │ │ │ │ └── dagre.min.js │ │ │ │ ├── jquery-1.11.1 │ │ │ │ │ ├── jquery-1.11.1.js │ │ │ │ │ └── jquery-1.11.1.min.js │ │ │ │ ├── jquery.contextMenu │ │ │ │ │ ├── jquery.contextMenu.js │ │ │ │ │ └── jquery.ui.position.js │ │ │ │ ├── jsplumb-1.7.2 │ │ │ │ │ └── dom.jsPlumb-1.7.2-min.js │ │ │ │ ├── login │ │ │ │ │ └── login.js │ │ │ │ ├── noty-2.2.9 │ │ │ │ │ └── noty-2.2.9.js │ │ │ │ └── wizard │ │ │ │ │ └── custom.js │ │ │ │ ├── pages │ │ │ │ ├── index.hbs │ │ │ │ └── login.hbs │ │ │ │ ├── partials │ │ │ │ ├── applications.hbs │ │ │ │ ├── applications_deploy.hbs │ │ │ │ ├── applications_editor.hbs │ │ │ │ ├── applications_form.hbs │ │ │ │ ├── applications_group_editor.hbs │ │ │ │ ├── applications_signup.hbs │ │ │ │ ├── applications_topology.hbs │ │ │ │ ├── applications_view.hbs │ │ │ │ ├── configure_form.hbs │ │ │ │ ├── error_page.hbs │ │ │ │ ├── index_header.hbs │ │ │ │ ├── index_left_menu.hbs │ │ │ │ ├── index_right_menu_help.hbs │ │ │ │ ├── index_right_menu_log.hbs │ │ │ │ ├── index_sub_header.hbs │ │ │ │ ├── index_title.hbs │ │ │ │ ├── login_body.hbs │ │ │ │ ├── login_header.hbs │ │ │ │ ├── metro_menu.hbs │ │ │ │ ├── users_form.hbs │ │ │ │ └── wizard.hbs │ │ │ │ ├── renderers │ │ │ │ ├── applications.js │ │ │ │ ├── applications_form.js │ │ │ │ ├── configure.js │ │ │ │ ├── configure_form.js │ │ │ │ ├── index.js │ │ │ │ ├── login.js │ │ │ │ ├── users.js │ │ │ │ ├── users_form.js │ │ │ │ └── wizard.js │ │ │ │ └── theme.js │ │ ├── users.jag │ │ ├── users_form.jag │ │ └── wizard.jag │ ├── modules │ │ └── console │ │ │ ├── module.xml │ │ │ └── scripts │ │ │ └── server.js │ └── sso │ │ └── views │ │ ├── login.jag │ │ └── stratos-resources │ │ ├── css │ │ ├── bootstrap-missing.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap.css │ │ └── main.css │ │ └── img │ │ ├── clouds.png │ │ ├── egg-logo.png │ │ ├── gray.png │ │ ├── icon-lock.png │ │ ├── icon-user.png │ │ ├── login-shadow.png │ │ ├── logo-inside.png │ │ ├── logo-login.png │ │ ├── repeat.png │ │ └── transparent-white.png ├── org.apache.stratos.manager.styles │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ ├── META-INF │ │ └── product.xml │ │ └── web │ │ └── styles │ │ ├── css │ │ └── main.css │ │ └── images │ │ ├── def-body-bg.gif │ │ ├── def-header-bg.gif │ │ ├── def-header-region-bg.gif │ │ └── logo.gif ├── org.apache.stratos.manager │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── manager │ │ │ │ ├── components │ │ │ │ ├── ApplicationSignUpHandler.java │ │ │ │ ├── ArtifactDistributionCoordinator.java │ │ │ │ └── DomainMappingHandler.java │ │ │ │ ├── context │ │ │ │ └── StratosManagerContext.java │ │ │ │ ├── exception │ │ │ │ ├── AlreadySubscribedException.java │ │ │ │ ├── ApplicationSignUpException.java │ │ │ │ ├── ApplicationSubscriptionException.java │ │ │ │ ├── ArtifactDistributionCoordinatorException.java │ │ │ │ ├── DomainMappingException.java │ │ │ │ ├── InvalidCartridgeAliasException.java │ │ │ │ └── StratosManagerException.java │ │ │ │ ├── internal │ │ │ │ ├── ServiceReferenceHolder.java │ │ │ │ └── StratosManagerServiceComponent.java │ │ │ │ ├── messaging │ │ │ │ ├── publisher │ │ │ │ │ ├── ApplicationSignUpEventPublisher.java │ │ │ │ │ ├── DomainMappingEventPublisher.java │ │ │ │ │ ├── InstanceNotificationPublisher.java │ │ │ │ │ ├── TenantEventPublisher.java │ │ │ │ │ └── synchronizer │ │ │ │ │ │ ├── ApplicationSignUpEventSynchronizer.java │ │ │ │ │ │ └── TenantEventSynchronizer.java │ │ │ │ └── receiver │ │ │ │ │ ├── StratosManagerApplicationEventReceiver.java │ │ │ │ │ ├── StratosManagerInitializerTopicReceiver.java │ │ │ │ │ ├── StratosManagerInstanceStatusEventReceiver.java │ │ │ │ │ └── StratosManagerTopologyEventReceiver.java │ │ │ │ ├── registry │ │ │ │ └── RegistryManager.java │ │ │ │ ├── services │ │ │ │ ├── StratosManagerService.java │ │ │ │ └── impl │ │ │ │ │ └── StratosManagerServiceImpl.java │ │ │ │ ├── statistics │ │ │ │ └── publisher │ │ │ │ │ ├── CartridgeSubscriptionDataPublisher.java │ │ │ │ │ └── DASApplicationSignUpDataPublisher.java │ │ │ │ ├── user │ │ │ │ └── management │ │ │ │ │ ├── StratosUserManagerUtils.java │ │ │ │ │ ├── TenantUserRoleManager.java │ │ │ │ │ └── exception │ │ │ │ │ └── UserManagerException.java │ │ │ │ └── utils │ │ │ │ ├── ApplicationManagementUtil.java │ │ │ │ ├── CartridgeConstants.java │ │ │ │ ├── PermissionConstants.java │ │ │ │ ├── StratosManagerConstants.java │ │ │ │ └── UserRoleCreator.java │ │ └── resources │ │ │ ├── META-INF │ │ │ ├── component.xml │ │ │ ├── services.xml │ │ │ └── services │ │ │ │ └── org.apache.stratos.manager.subscription.filter.SubscriptionFilter │ │ │ └── policies.xsd │ │ └── test │ │ └── resources │ │ └── log4j.properties ├── org.apache.stratos.messaging │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── messaging │ │ │ ├── adapters │ │ │ ├── MapAdapter.java │ │ │ ├── MapEntryType.java │ │ │ └── MapType.java │ │ │ ├── broker │ │ │ ├── connect │ │ │ │ ├── RetryTimer.java │ │ │ │ ├── TopicConnector.java │ │ │ │ ├── TopicPublisher.java │ │ │ │ ├── TopicPublisherFactory.java │ │ │ │ ├── TopicSubscriber.java │ │ │ │ ├── TopicSubscriberFactory.java │ │ │ │ ├── amqp │ │ │ │ │ ├── AmqpTopicConnector.java │ │ │ │ │ ├── AmqpTopicPublisher.java │ │ │ │ │ └── AmqpTopicSubscriber.java │ │ │ │ └── mqtt │ │ │ │ │ ├── MqttTopicConnector.java │ │ │ │ │ ├── MqttTopicPublisher.java │ │ │ │ │ └── MqttTopicSubscriber.java │ │ │ ├── publish │ │ │ │ ├── EventPublisher.java │ │ │ │ └── EventPublisherPool.java │ │ │ └── subscribe │ │ │ │ ├── EventSubscriber.java │ │ │ │ └── MessageListener.java │ │ │ ├── domain │ │ │ ├── Message.java │ │ │ ├── application │ │ │ │ ├── Application.java │ │ │ │ ├── ApplicationStatus.java │ │ │ │ ├── Applications.java │ │ │ │ ├── ClusterDataHolder.java │ │ │ │ ├── DependencyOrder.java │ │ │ │ ├── DeploymentPolicy.java │ │ │ │ ├── Group.java │ │ │ │ ├── GroupStatus.java │ │ │ │ ├── ParentComponent.java │ │ │ │ ├── ScalingDependentList.java │ │ │ │ ├── StartupOrder.java │ │ │ │ ├── locking │ │ │ │ │ ├── ApplicationLock.java │ │ │ │ │ └── ApplicationLockHierarchy.java │ │ │ │ └── signup │ │ │ │ │ ├── ApplicationSignUp.java │ │ │ │ │ ├── ArtifactRepository.java │ │ │ │ │ └── DomainMapping.java │ │ │ ├── exception │ │ │ │ └── MessagingException.java │ │ │ ├── instance │ │ │ │ ├── ApplicationInstance.java │ │ │ │ ├── ClusterInstance.java │ │ │ │ ├── GroupInstance.java │ │ │ │ └── Instance.java │ │ │ ├── tenant │ │ │ │ ├── SubscriptionDomain.java │ │ │ │ └── Tenant.java │ │ │ └── topology │ │ │ │ ├── Cluster.java │ │ │ │ ├── ClusterStatus.java │ │ │ │ ├── KubernetesService.java │ │ │ │ ├── Member.java │ │ │ │ ├── MemberStatus.java │ │ │ │ ├── Port.java │ │ │ │ ├── Service.java │ │ │ │ ├── ServiceType.java │ │ │ │ ├── Topology.java │ │ │ │ ├── lifecycle │ │ │ │ ├── LifeCycleState.java │ │ │ │ ├── LifeCycleStateManager.java │ │ │ │ └── LifeCycleStateTransitionBehavior.java │ │ │ │ └── locking │ │ │ │ ├── TopologyLock.java │ │ │ │ └── TopologyLockHierarchy.java │ │ │ ├── event │ │ │ ├── Event.java │ │ │ ├── EventObservable.java │ │ │ ├── application │ │ │ │ ├── ApplicationCreatedEvent.java │ │ │ │ ├── ApplicationDeletedEvent.java │ │ │ │ ├── ApplicationInstanceActivatedEvent.java │ │ │ │ ├── ApplicationInstanceCreatedEvent.java │ │ │ │ ├── ApplicationInstanceInactivatedEvent.java │ │ │ │ ├── ApplicationInstanceTerminatedEvent.java │ │ │ │ ├── ApplicationInstanceTerminatingEvent.java │ │ │ │ ├── ApplicationUpdatedEvent.java │ │ │ │ ├── CompleteApplicationsEvent.java │ │ │ │ ├── GroupInstanceActivatedEvent.java │ │ │ │ ├── GroupInstanceCreatedEvent.java │ │ │ │ ├── GroupInstanceInactivatedEvent.java │ │ │ │ ├── GroupInstanceTerminatedEvent.java │ │ │ │ ├── GroupInstanceTerminatingEvent.java │ │ │ │ ├── GroupMaintenanceModeEvent.java │ │ │ │ └── signup │ │ │ │ │ ├── ApplicationSignUpAddedEvent.java │ │ │ │ │ ├── ApplicationSignUpRemovedEvent.java │ │ │ │ │ └── CompleteApplicationSignUpsEvent.java │ │ │ ├── cluster │ │ │ │ └── status │ │ │ │ │ ├── ClusterStatusClusterActivatedEvent.java │ │ │ │ │ ├── ClusterStatusClusterInactivateEvent.java │ │ │ │ │ ├── ClusterStatusClusterInstanceCreatedEvent.java │ │ │ │ │ ├── ClusterStatusClusterResetEvent.java │ │ │ │ │ ├── ClusterStatusClusterTerminatedEvent.java │ │ │ │ │ └── ClusterStatusClusterTerminatingEvent.java │ │ │ ├── domain │ │ │ │ └── mapping │ │ │ │ │ ├── DomainMappingAddedEvent.java │ │ │ │ │ └── DomainMappingRemovedEvent.java │ │ │ ├── health │ │ │ │ └── stat │ │ │ │ │ ├── AverageLoadAverageEvent.java │ │ │ │ │ ├── AverageMemoryConsumptionEvent.java │ │ │ │ │ ├── AverageRequestsInFlightEvent.java │ │ │ │ │ ├── AverageRequestsServingCapabilityEvent.java │ │ │ │ │ ├── GradientOfLoadAverageEvent.java │ │ │ │ │ ├── GradientOfMemoryConsumptionEvent.java │ │ │ │ │ ├── GradientOfRequestsInFlightEvent.java │ │ │ │ │ ├── HealthStatEvent.java │ │ │ │ │ ├── MemberAverageLoadAverageEvent.java │ │ │ │ │ ├── MemberAverageMemoryConsumptionEvent.java │ │ │ │ │ ├── MemberFaultEvent.java │ │ │ │ │ ├── MemberGradientOfLoadAverageEvent.java │ │ │ │ │ ├── MemberGradientOfMemoryConsumptionEvent.java │ │ │ │ │ ├── MemberSecondDerivativeOfLoadAverageEvent.java │ │ │ │ │ ├── MemberSecondDerivativeOfMemoryConsumptionEvent.java │ │ │ │ │ ├── SecondDerivativeOfLoadAverageEvent.java │ │ │ │ │ ├── SecondDerivativeOfMemoryConsumptionEvent.java │ │ │ │ │ └── SecondDerivativeOfRequestsInFlightEvent.java │ │ │ ├── initializer │ │ │ │ ├── CompleteApplicationSignUpsRequestEvent.java │ │ │ │ ├── CompleteApplicationsRequestEvent.java │ │ │ │ ├── CompleteTenantRequestEvent.java │ │ │ │ ├── CompleteTopologyRequestEvent.java │ │ │ │ └── InitializerEvent.java │ │ │ ├── instance │ │ │ │ ├── notifier │ │ │ │ │ ├── ArtifactUpdatedEvent.java │ │ │ │ │ ├── InstanceCleanupClusterEvent.java │ │ │ │ │ ├── InstanceCleanupMemberEvent.java │ │ │ │ │ └── InstanceNotifierEvent.java │ │ │ │ └── status │ │ │ │ │ ├── InstanceActivatedEvent.java │ │ │ │ │ ├── InstanceMaintenanceModeEvent.java │ │ │ │ │ ├── InstanceReadyToShutdownEvent.java │ │ │ │ │ ├── InstanceStartedEvent.java │ │ │ │ │ └── InstanceStatusEvent.java │ │ │ ├── tenant │ │ │ │ ├── CompleteTenantEvent.java │ │ │ │ ├── TenantCreatedEvent.java │ │ │ │ ├── TenantEvent.java │ │ │ │ ├── TenantRemovedEvent.java │ │ │ │ └── TenantUpdatedEvent.java │ │ │ └── topology │ │ │ │ ├── ApplicationClustersCreatedEvent.java │ │ │ │ ├── ApplicationClustersRemovedEvent.java │ │ │ │ ├── ClusterCreatedEvent.java │ │ │ │ ├── ClusterInstanceActivatedEvent.java │ │ │ │ ├── ClusterInstanceCreatedEvent.java │ │ │ │ ├── ClusterInstanceInactivateEvent.java │ │ │ │ ├── ClusterInstanceTerminatedEvent.java │ │ │ │ ├── ClusterInstanceTerminatingEvent.java │ │ │ │ ├── ClusterRemovedEvent.java │ │ │ │ ├── ClusterResetEvent.java │ │ │ │ ├── CompleteTopologyEvent.java │ │ │ │ ├── MemberActivatedEvent.java │ │ │ │ ├── MemberCreatedEvent.java │ │ │ │ ├── MemberInitializedEvent.java │ │ │ │ ├── MemberMaintenanceModeEvent.java │ │ │ │ ├── MemberReadyToShutdownEvent.java │ │ │ │ ├── MemberStartedEvent.java │ │ │ │ ├── MemberSuspendedEvent.java │ │ │ │ ├── MemberTerminatedEvent.java │ │ │ │ ├── ServiceCreatedEvent.java │ │ │ │ ├── ServiceRemovedEvent.java │ │ │ │ └── TopologyEvent.java │ │ │ ├── internal │ │ │ └── MessagingServiceComponent.java │ │ │ ├── listener │ │ │ ├── EventListener.java │ │ │ ├── application │ │ │ │ ├── ApplicationCreatedEventListener.java │ │ │ │ ├── ApplicationDeletedEventListener.java │ │ │ │ ├── ApplicationInstanceActivatedEventListener.java │ │ │ │ ├── ApplicationInstanceCreatedEventListener.java │ │ │ │ ├── ApplicationInstanceInactivatedEventListener.java │ │ │ │ ├── ApplicationInstanceTerminatedEventListener.java │ │ │ │ ├── ApplicationInstanceTerminatingEventListener.java │ │ │ │ ├── ApplicationUndeployedEventListener.java │ │ │ │ ├── ApplicationUpdatedEventListener.java │ │ │ │ ├── CompleteApplicationsEventListener.java │ │ │ │ ├── GroupInstanceActivatedEventListener.java │ │ │ │ ├── GroupInstanceCreatedEventListener.java │ │ │ │ ├── GroupInstanceInactivateEventListener.java │ │ │ │ ├── GroupInstanceTerminatedEventListener.java │ │ │ │ ├── GroupInstanceTerminatingEventListener.java │ │ │ │ ├── GroupMaintenanceModeEventListener.java │ │ │ │ └── signup │ │ │ │ │ ├── ApplicationSignUpAddedEventListener.java │ │ │ │ │ ├── ApplicationSignUpRemovedEventListener.java │ │ │ │ │ └── CompleteApplicationSignUpsEventListener.java │ │ │ ├── cluster │ │ │ │ └── status │ │ │ │ │ ├── ClusterStatusClusterActivatedEventListener.java │ │ │ │ │ ├── ClusterStatusClusterInactivateEventListener.java │ │ │ │ │ ├── ClusterStatusClusterInstanceCreatedEventListener.java │ │ │ │ │ ├── ClusterStatusClusterResetEventListener.java │ │ │ │ │ ├── ClusterStatusClusterTerminatedEventListener.java │ │ │ │ │ └── ClusterStatusClusterTerminatingEventListener.java │ │ │ ├── domain │ │ │ │ └── mapping │ │ │ │ │ ├── DomainMappingAddedEventListener.java │ │ │ │ │ └── DomainMappingRemovedEventListener.java │ │ │ ├── health │ │ │ │ └── stat │ │ │ │ │ ├── AverageLoadAverageEventListener.java │ │ │ │ │ ├── AverageMemoryConsumptionEventListener.java │ │ │ │ │ ├── AverageRequestsInFlightEventListener.java │ │ │ │ │ ├── AverageRequestsServingCapabilityEventListener.java │ │ │ │ │ ├── GradientOfLoadAverageEventListener.java │ │ │ │ │ ├── GradientOfMemoryConsumptionEventListener.java │ │ │ │ │ ├── GradientOfRequestsInFlightEventListener.java │ │ │ │ │ ├── MemberAverageLoadAverageEventListener.java │ │ │ │ │ ├── MemberAverageMemoryConsumptionEventListener.java │ │ │ │ │ ├── MemberFaultEventListener.java │ │ │ │ │ ├── MemberGradientOfLoadAverageEventListener.java │ │ │ │ │ ├── MemberGradientOfMemoryConsumptionEventListener.java │ │ │ │ │ ├── MemberSecondDerivativeOfLoadAverageEventListener.java │ │ │ │ │ ├── MemberSecondDerivativeOfMemoryConsumptionEventListener.java │ │ │ │ │ ├── SecondDerivativeOfLoadAverageEventListener.java │ │ │ │ │ ├── SecondDerivativeOfMemoryConsumptionEventListener.java │ │ │ │ │ └── SecondDerivativeOfRequestsInFlightEventListener.java │ │ │ ├── initializer │ │ │ │ ├── CompleteApplicationSignUpsRequestEventListener.java │ │ │ │ ├── CompleteApplicationsRequestEventListener.java │ │ │ │ ├── CompleteTenantRequestEventListener.java │ │ │ │ └── CompleteTopologyRequestEventListener.java │ │ │ ├── instance │ │ │ │ ├── notifier │ │ │ │ │ ├── ArtifactUpdateEventListener.java │ │ │ │ │ ├── InstanceCleanupClusterEventListener.java │ │ │ │ │ └── InstanceCleanupMemberEventListener.java │ │ │ │ └── status │ │ │ │ │ ├── InstanceActivatedEventListener.java │ │ │ │ │ ├── InstanceMaintenanceListener.java │ │ │ │ │ ├── InstanceReadyToShutdownEventListener.java │ │ │ │ │ └── InstanceStartedEventListener.java │ │ │ ├── tenant │ │ │ │ ├── CompleteTenantEventListener.java │ │ │ │ ├── TenantCreatedEventListener.java │ │ │ │ ├── TenantRemovedEventListener.java │ │ │ │ └── TenantUpdatedEventListener.java │ │ │ └── topology │ │ │ │ ├── ApplicationClustersCreatedEventListener.java │ │ │ │ ├── ApplicationClustersRemovedEventListener.java │ │ │ │ ├── ClusterCreatedEventListener.java │ │ │ │ ├── ClusterInstanceActivatedEventListener.java │ │ │ │ ├── ClusterInstanceCreatedEventListener.java │ │ │ │ ├── ClusterInstanceInactivateEventListener.java │ │ │ │ ├── ClusterInstanceTerminatedEventListener.java │ │ │ │ ├── ClusterInstanceTerminatingEventListener.java │ │ │ │ ├── ClusterRemovedEventListener.java │ │ │ │ ├── ClusterResetEventListener.java │ │ │ │ ├── CompleteTopologyEventListener.java │ │ │ │ ├── MemberActivatedEventListener.java │ │ │ │ ├── MemberCreatedEventListener.java │ │ │ │ ├── MemberInitializedEventListener.java │ │ │ │ ├── MemberMaintenanceListener.java │ │ │ │ ├── MemberReadyToShutdownEventListener.java │ │ │ │ ├── MemberStartedEventListener.java │ │ │ │ ├── MemberSuspendedEventListener.java │ │ │ │ ├── MemberTerminatedEventListener.java │ │ │ │ ├── ServiceCreatedEventListener.java │ │ │ │ └── ServiceRemovedEventListener.java │ │ │ ├── message │ │ │ ├── JsonMessage.java │ │ │ ├── filter │ │ │ │ ├── MessageFilter.java │ │ │ │ └── topology │ │ │ │ │ ├── TopologyApplicationFilter.java │ │ │ │ │ ├── TopologyClusterFilter.java │ │ │ │ │ ├── TopologyMemberFilter.java │ │ │ │ │ └── TopologyServiceFilter.java │ │ │ ├── processor │ │ │ │ ├── MessageProcessor.java │ │ │ │ ├── MessageProcessorChain.java │ │ │ │ ├── application │ │ │ │ │ ├── ApplicationCreatedMessageProcessor.java │ │ │ │ │ ├── ApplicationDeletedMessageProcessor.java │ │ │ │ │ ├── ApplicationInstanceActivatedMessageProcessor.java │ │ │ │ │ ├── ApplicationInstanceCreatedMessageProcessor.java │ │ │ │ │ ├── ApplicationInstanceInactivatedMessageProcessor.java │ │ │ │ │ ├── ApplicationInstanceTerminatedMessageProcessor.java │ │ │ │ │ ├── ApplicationInstanceTerminatingMessageProcessor.java │ │ │ │ │ ├── ApplicationUpdatedMessageProcessor.java │ │ │ │ │ ├── ApplicationsMessageProcessorChain.java │ │ │ │ │ ├── CompleteApplicationsMessageProcessor.java │ │ │ │ │ ├── GroupInstanceActivatedProcessor.java │ │ │ │ │ ├── GroupInstanceCreatedProcessor.java │ │ │ │ │ ├── GroupInstanceInactivateProcessor.java │ │ │ │ │ ├── GroupInstanceTerminatedProcessor.java │ │ │ │ │ ├── GroupInstanceTerminatingProcessor.java │ │ │ │ │ ├── GroupMaintenanceModeProcessor.java │ │ │ │ │ ├── signup │ │ │ │ │ │ ├── ApplicationSignUpAddedMessageProcessor.java │ │ │ │ │ │ ├── ApplicationSignUpMessageProcessorChain.java │ │ │ │ │ │ ├── ApplicationSignUpRemovedMessageProcessor.java │ │ │ │ │ │ └── CompleteApplicationSignUpsMessageProcessor.java │ │ │ │ │ └── updater │ │ │ │ │ │ └── ApplicationsUpdater.java │ │ │ │ ├── cluster │ │ │ │ │ └── status │ │ │ │ │ │ ├── ClusterStatusClusterActivatedMessageProcessor.java │ │ │ │ │ │ ├── ClusterStatusClusterInactivateMessageProcessor.java │ │ │ │ │ │ ├── ClusterStatusClusterInstanceCreatedMessageProcessor.java │ │ │ │ │ │ ├── ClusterStatusClusterResetMessageProcessor.java │ │ │ │ │ │ ├── ClusterStatusClusterTerminatedMessageProcessor.java │ │ │ │ │ │ ├── ClusterStatusClusterTerminatingMessageProcessor.java │ │ │ │ │ │ └── ClusterStatusMessageProcessorChain.java │ │ │ │ ├── domain │ │ │ │ │ └── mapping │ │ │ │ │ │ ├── DomainMappingAddedMessageProcessor.java │ │ │ │ │ │ ├── DomainMappingMessageProcessorChain.java │ │ │ │ │ │ └── DomainMappingRemovedMessageProcessor.java │ │ │ │ ├── health │ │ │ │ │ └── stat │ │ │ │ │ │ ├── AverageLoadAverageMessageProcessor.java │ │ │ │ │ │ ├── AverageMemoryConsumptionMessageProcessor.java │ │ │ │ │ │ ├── AverageRequestsInFlightMessageProcessor.java │ │ │ │ │ │ ├── AverageRequestsServingCapabilityMessageProcessor.java │ │ │ │ │ │ ├── GradientOfLoadAverageMessageProcessor.java │ │ │ │ │ │ ├── GradientOfMemoryConsumptionMessageProcessor.java │ │ │ │ │ │ ├── GradientOfRequestsInFlightMessageProcessor.java │ │ │ │ │ │ ├── HealthStatMessageProcessorChain.java │ │ │ │ │ │ ├── MemberAverageLoadAverageMessageProcessor.java │ │ │ │ │ │ ├── MemberAverageMemoryConsumptionMessageProcessor.java │ │ │ │ │ │ ├── MemberFaultMessageProcessor.java │ │ │ │ │ │ ├── MemberGradientOfLoadAverageMessageProcessor.java │ │ │ │ │ │ ├── MemberGradientOfMemoryConsumptionMessageProcessor.java │ │ │ │ │ │ ├── MemberSecondDerivativeOfLoadAverageMessageProcessor.java │ │ │ │ │ │ ├── MemberSecondDerivativeOfMemoryConsumptionMessageProcessor.java │ │ │ │ │ │ ├── SecondDerivativeOfLoadAverageMessageProcessor.java │ │ │ │ │ │ ├── SecondDerivativeOfMemoryConsumptionMessageProcessor.java │ │ │ │ │ │ └── SecondDerivativeOfRequestsInFlightMessageProcessor.java │ │ │ │ ├── initializer │ │ │ │ │ ├── CompleteApplicationSignUpsRequestMessageProcessor.java │ │ │ │ │ ├── CompleteApplicationsRequestMessageProcessor.java │ │ │ │ │ ├── CompleteTenantRequestMessageProcessor.java │ │ │ │ │ ├── CompleteTopologyRequestMessageProcessor.java │ │ │ │ │ └── InitializerMessageProcessorChain.java │ │ │ │ ├── instance │ │ │ │ │ ├── notifier │ │ │ │ │ │ ├── ArtifactUpdateMessageProcessor.java │ │ │ │ │ │ ├── InstanceCleanupClusterNotifierMessageProcessor.java │ │ │ │ │ │ ├── InstanceCleanupMemberNotifierMessageProcessor.java │ │ │ │ │ │ └── InstanceNotifierMessageProcessorChain.java │ │ │ │ │ └── status │ │ │ │ │ │ ├── InstanceStatusMemberActivatedMessageProcessor.java │ │ │ │ │ │ ├── InstanceStatusMemberMaintenanceMessageProcessor.java │ │ │ │ │ │ ├── InstanceStatusMemberReadyToShutdownMessageProcessor.java │ │ │ │ │ │ ├── InstanceStatusMemberStartedMessageProcessor.java │ │ │ │ │ │ └── InstanceStatusMessageProcessorChain.java │ │ │ │ ├── tenant │ │ │ │ │ ├── CompleteTenantMessageProcessor.java │ │ │ │ │ ├── TenantCreatedMessageProcessor.java │ │ │ │ │ ├── TenantMessageProcessorChain.java │ │ │ │ │ ├── TenantRemovedMessageProcessor.java │ │ │ │ │ └── TenantUpdatedMessageProcessor.java │ │ │ │ └── topology │ │ │ │ │ ├── ApplicationClustersCreatedMessageProcessor.java │ │ │ │ │ ├── ApplicationClustersRemovedMessageProcessor.java │ │ │ │ │ ├── ClusterCreatedMessageProcessor.java │ │ │ │ │ ├── ClusterInstanceActivatedProcessor.java │ │ │ │ │ ├── ClusterInstanceCreatedMessageProcessor.java │ │ │ │ │ ├── ClusterInstanceInactivateProcessor.java │ │ │ │ │ ├── ClusterInstanceTerminatedProcessor.java │ │ │ │ │ ├── ClusterInstanceTerminatingProcessor.java │ │ │ │ │ ├── ClusterRemovedMessageProcessor.java │ │ │ │ │ ├── ClusterResetMessageProcessor.java │ │ │ │ │ ├── CompleteTopologyMessageProcessor.java │ │ │ │ │ ├── MemberActivatedMessageProcessor.java │ │ │ │ │ ├── MemberCreatedMessageProcessor.java │ │ │ │ │ ├── MemberInitializedMessageProcessor.java │ │ │ │ │ ├── MemberMaintenanceModeProcessor.java │ │ │ │ │ ├── MemberReadyToShutdownMessageProcessor.java │ │ │ │ │ ├── MemberStartedMessageProcessor.java │ │ │ │ │ ├── MemberSuspendedMessageProcessor.java │ │ │ │ │ ├── MemberTerminatedMessageProcessor.java │ │ │ │ │ ├── ServiceCreatedMessageProcessor.java │ │ │ │ │ ├── ServiceRemovedMessageProcessor.java │ │ │ │ │ ├── TopologyMessageProcessorChain.java │ │ │ │ │ └── updater │ │ │ │ │ └── TopologyUpdater.java │ │ │ └── receiver │ │ │ │ ├── StratosEventReceiver.java │ │ │ │ ├── application │ │ │ │ ├── ApplicationManager.java │ │ │ │ ├── ApplicationsEventMessageDelegator.java │ │ │ │ ├── ApplicationsEventMessageListener.java │ │ │ │ ├── ApplicationsEventMessageQueue.java │ │ │ │ ├── ApplicationsEventReceiver.java │ │ │ │ └── signup │ │ │ │ │ ├── ApplicationSignUpEventMessageDelegator.java │ │ │ │ │ ├── ApplicationSignUpEventMessageListener.java │ │ │ │ │ ├── ApplicationSignUpEventMessageQueue.java │ │ │ │ │ ├── ApplicationSignUpEventReceiver.java │ │ │ │ │ └── ApplicationSignUpManager.java │ │ │ │ ├── cluster │ │ │ │ └── status │ │ │ │ │ ├── ClusterStatusEventMessageDelegator.java │ │ │ │ │ ├── ClusterStatusEventMessageListener.java │ │ │ │ │ ├── ClusterStatusEventMessageQueue.java │ │ │ │ │ └── ClusterStatusEventReceiver.java │ │ │ │ ├── domain │ │ │ │ └── mapping │ │ │ │ │ ├── DomainMappingEventMessageDelegator.java │ │ │ │ │ ├── DomainMappingEventMessageListener.java │ │ │ │ │ ├── DomainMappingEventMessageQueue.java │ │ │ │ │ ├── DomainMappingEventReceiver.java │ │ │ │ │ └── DomainMappingManager.java │ │ │ │ ├── health │ │ │ │ └── stat │ │ │ │ │ ├── HealthStatEventMessageDelegator.java │ │ │ │ │ ├── HealthStatEventMessageListener.java │ │ │ │ │ ├── HealthStatEventMessageQueue.java │ │ │ │ │ └── HealthStatEventReceiver.java │ │ │ │ ├── initializer │ │ │ │ ├── InitializerEventMessageDelegator.java │ │ │ │ ├── InitializerEventMessageListener.java │ │ │ │ ├── InitializerEventMessageQueue.java │ │ │ │ └── InitializerEventReceiver.java │ │ │ │ ├── instance │ │ │ │ ├── notifier │ │ │ │ │ ├── InstanceNotifierEventMessageDelegator.java │ │ │ │ │ ├── InstanceNotifierEventMessageListener.java │ │ │ │ │ ├── InstanceNotifierEventMessageQueue.java │ │ │ │ │ └── InstanceNotifierEventReceiver.java │ │ │ │ └── status │ │ │ │ │ ├── InstanceStatusEventMessageDelegator.java │ │ │ │ │ ├── InstanceStatusEventMessageListener.java │ │ │ │ │ ├── InstanceStatusEventMessageQueue.java │ │ │ │ │ └── InstanceStatusEventReceiver.java │ │ │ │ ├── tenant │ │ │ │ ├── TenantEventMessageDelegator.java │ │ │ │ ├── TenantEventMessageListener.java │ │ │ │ ├── TenantEventMessageQueue.java │ │ │ │ ├── TenantEventReceiver.java │ │ │ │ └── TenantManager.java │ │ │ │ └── topology │ │ │ │ ├── TopologyEventMessageDelegator.java │ │ │ │ ├── TopologyEventMessageListener.java │ │ │ │ ├── TopologyEventMessageQueue.java │ │ │ │ ├── TopologyEventReceiver.java │ │ │ │ └── TopologyManager.java │ │ │ └── util │ │ │ ├── MessagingConstants.java │ │ │ └── MessagingUtil.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── messaging │ │ │ ├── test │ │ │ ├── AmqpSubscriberTest.java │ │ │ ├── MessageFilterTest.java │ │ │ └── RetryTimerTest.java │ │ │ └── topology │ │ │ └── locking │ │ │ └── TopologyLockingTest.java │ │ └── resources │ │ └── jndi.properties ├── org.apache.stratos.metadata.client │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── stratos │ │ └── metadata │ │ └── client │ │ ├── beans │ │ └── PropertyBean.java │ │ ├── config │ │ └── MetaDataClientConfig.java │ │ ├── defaults │ │ ├── DefaultMetaDataServiceClient.java │ │ └── MetaDataServiceClient.java │ │ ├── exception │ │ ├── MetaDataServiceClientException.java │ │ └── RestClientException.java │ │ ├── rest │ │ ├── DefaultRestClient.java │ │ ├── HTTPConnectionManager.java │ │ └── RestClient.java │ │ └── util │ │ └── MetaDataClientConstants.java ├── org.apache.stratos.metadata.service │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── metadata │ │ │ └── service │ │ │ ├── Constants.java │ │ │ ├── MetadataApplicationEventReceiver.java │ │ │ ├── MetadataTopologyEventReceiver.java │ │ │ ├── ServiceHolder.java │ │ │ ├── Utils.java │ │ │ ├── annotation │ │ │ ├── AuthorizationAction.java │ │ │ └── SuperTenantService.java │ │ │ ├── api │ │ │ └── MetadataApi.java │ │ │ ├── context │ │ │ └── AuthenticationContext.java │ │ │ ├── definition │ │ │ ├── CartridgeMetaData.java │ │ │ ├── Property.java │ │ │ └── PropertyBean.java │ │ │ ├── exception │ │ │ ├── MetadataException.java │ │ │ └── RestAPIException.java │ │ │ ├── handlers │ │ │ ├── AbstractAuthenticationAuthorizationHandler.java │ │ │ ├── CookieBasedAuthenticationHandler.java │ │ │ ├── CustomExceptionMapper.java │ │ │ ├── CustomThrowableExceptionMapper.java │ │ │ ├── GenericExceptionMapper.java │ │ │ ├── OAuthHandler.java │ │ │ ├── StratosAuthenticationHandler.java │ │ │ └── StratosAuthorizingHandler.java │ │ │ ├── oauth2 │ │ │ └── ValidationServiceClient.java │ │ │ ├── registry │ │ │ ├── DataStore.java │ │ │ └── MetadataApiRegistry.java │ │ │ └── security │ │ │ ├── StratosPrincipal.java │ │ │ └── StratosSecurityContext.java │ │ ├── resources │ │ └── axis2_client.xml │ │ └── webapp │ │ ├── metadata-test │ │ ├── META-INF │ │ │ └── webapp-classloading.xml │ │ └── WEB-INF │ │ │ ├── cxf-servlet.xml │ │ │ └── web.xml │ │ └── metadata │ │ ├── META-INF │ │ └── webapp-classloading.xml │ │ └── WEB-INF │ │ ├── cxf-servlet.xml │ │ └── web.xml ├── org.apache.stratos.mock.iaas.api │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── mock │ │ │ └── iaas │ │ │ └── api │ │ │ ├── MockIaasApi.java │ │ │ ├── exception │ │ │ └── MockIaasApiException.java │ │ │ ├── handlers │ │ │ ├── BadRequestExceptionMapper.java │ │ │ ├── CustomExceptionMapper.java │ │ │ ├── CustomThrowableExceptionMapper.java │ │ │ └── GenericExceptionMapper.java │ │ │ └── utils │ │ │ └── MockIaasApiUtils.java │ │ └── webapp │ │ └── mock-iaas-api │ │ ├── META-INF │ │ └── webapp-classloading.xml │ │ └── WEB-INF │ │ ├── cxf-servlet.xml │ │ └── web.xml ├── org.apache.stratos.mock.iaas.client │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── apache │ │ └── stratos │ │ └── mock │ │ └── iaas │ │ └── client │ │ ├── MockIaasApiClient.java │ │ └── rest │ │ ├── HttpResponse.java │ │ ├── HttpResponseHandler.java │ │ └── RestClient.java ├── org.apache.stratos.mock.iaas │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── mock │ │ │ └── iaas │ │ │ ├── config │ │ │ ├── MockHealthStatisticsConfig.java │ │ │ ├── MockIaasConfig.java │ │ │ └── MockIaasConfigParser.java │ │ │ ├── domain │ │ │ ├── ErrorResponse.java │ │ │ ├── MockInstanceContext.java │ │ │ └── MockInstanceMetadata.java │ │ │ ├── event │ │ │ └── publisher │ │ │ │ └── MockMemberEventPublisher.java │ │ │ ├── exceptions │ │ │ ├── ContinueLastSampleValueException.java │ │ │ ├── MockIaasException.java │ │ │ ├── NoSampleValuesFoundException.java │ │ │ ├── NoStatisticsFoundException.java │ │ │ └── StopStatisticsPublishingException.java │ │ │ ├── internal │ │ │ ├── MockIaasServiceComponent.java │ │ │ └── ServiceReferenceHolder.java │ │ │ ├── persistence │ │ │ ├── MockPersistenceManager.java │ │ │ ├── PersistenceManager.java │ │ │ ├── PersistenceManagerFactory.java │ │ │ ├── PersistenceManagerType.java │ │ │ └── RegistryManager.java │ │ │ ├── services │ │ │ ├── MockIaasService.java │ │ │ └── impl │ │ │ │ ├── MockConstants.java │ │ │ │ ├── MockIPAddressPool.java │ │ │ │ ├── MockIaasServiceImpl.java │ │ │ │ ├── MockIaasServiceUtil.java │ │ │ │ ├── MockInstance.java │ │ │ │ └── MockScalingFactor.java │ │ │ └── statistics │ │ │ ├── MockHealthStatistics.java │ │ │ ├── StatisticsPatternMode.java │ │ │ ├── generator │ │ │ ├── MockHealthStatisticsGenerator.java │ │ │ ├── MockHealthStatisticsPattern.java │ │ │ └── MockHealthStatisticsUpdater.java │ │ │ └── publisher │ │ │ └── MockHealthStatisticsNotifier.java │ │ └── test │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── mock │ │ │ └── iaas │ │ │ └── test │ │ │ └── MockIaasServiceTest.java │ │ └── resources │ │ ├── jndi.properties │ │ ├── mock-iaas.xml │ │ └── thrift-client-config.xml ├── org.apache.stratos.python.cartridge.agent │ ├── .gitignore │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ ├── python │ │ └── cartridge.agent │ │ │ ├── __init__.py │ │ │ └── cartridge.agent │ │ │ ├── __init__.py │ │ │ ├── agent.conf │ │ │ ├── agent.py │ │ │ ├── config.py │ │ │ ├── constants.py │ │ │ ├── entity.py │ │ │ ├── exception.py │ │ │ ├── extensions │ │ │ ├── bash │ │ │ │ ├── ApplicationSignUpRemovedEvent.sh │ │ │ │ ├── ArtifactUpdatedEvent.sh │ │ │ │ ├── CompleteTenantEvent.sh │ │ │ │ ├── CompleteTopologyEvent.sh │ │ │ │ ├── CopyArtifacts.sh │ │ │ │ ├── CreateLVSDummyInterface.sh │ │ │ │ ├── DomainMappingAddedEvent.sh │ │ │ │ ├── DomainMappingRemovedEvent.sh │ │ │ │ ├── InstanceActivatedEvent.sh │ │ │ │ ├── InstanceStartedEvent.sh │ │ │ │ ├── MemberActivatedEvent.sh │ │ │ │ ├── MemberInitializedEvent.sh │ │ │ │ ├── MemberStartedEvent.sh │ │ │ │ ├── MemberSuspendedEvent.sh │ │ │ │ ├── MemberTerminatedEvent.sh │ │ │ │ ├── StartServers.sh │ │ │ │ ├── VolumeMount.sh │ │ │ │ └── clean.sh │ │ │ └── py │ │ │ │ ├── ExtensionExecutor.py │ │ │ │ ├── ExtensionExecutor.yapsy-plugin │ │ │ │ └── __init__.py │ │ │ ├── healthstats.py │ │ │ ├── logging.ini │ │ │ ├── logpublisher.py │ │ │ ├── mdsclient.py │ │ │ ├── modules │ │ │ ├── __init__.py │ │ │ ├── artifactmgt │ │ │ │ ├── __init__.py │ │ │ │ ├── git │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── agentgithandler.py │ │ │ │ └── repository.py │ │ │ ├── databridge │ │ │ │ ├── __init__.py │ │ │ │ ├── agent.py │ │ │ │ └── thrift │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── gen │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ └── ttypes.py │ │ │ │ │ ├── Exception │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ └── ttypes.py │ │ │ │ │ ├── ThriftEventTransmissionService │ │ │ │ │ │ ├── ThriftEventTransmissionService-remote │ │ │ │ │ │ ├── ThriftEventTransmissionService.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ └── ttypes.py │ │ │ │ │ ├── ThriftSecureEventTransmissionService │ │ │ │ │ │ ├── ThriftSecureEventTransmissionService-remote │ │ │ │ │ │ ├── ThriftSecureEventTransmissionService.py │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── constants.py │ │ │ │ │ │ └── ttypes.py │ │ │ │ │ └── __init__.py │ │ │ │ │ ├── publisher.py │ │ │ │ │ └── thrift │ │ │ │ │ ├── TSCons.py │ │ │ │ │ ├── TSerialization.py │ │ │ │ │ ├── TTornado.py │ │ │ │ │ ├── Thrift.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── protocol │ │ │ │ │ ├── TBase.py │ │ │ │ │ ├── TBinaryProtocol.py │ │ │ │ │ ├── TCompactProtocol.py │ │ │ │ │ ├── TJSONProtocol.py │ │ │ │ │ ├── TProtocol.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── fastbinary.c │ │ │ │ │ ├── server │ │ │ │ │ ├── THttpServer.py │ │ │ │ │ ├── TNonblockingServer.py │ │ │ │ │ ├── TProcessPoolServer.py │ │ │ │ │ ├── TServer.py │ │ │ │ │ └── __init__.py │ │ │ │ │ └── transport │ │ │ │ │ ├── THttpClient.py │ │ │ │ │ ├── TSSLSocket.py │ │ │ │ │ ├── TSocket.py │ │ │ │ │ ├── TTransport.py │ │ │ │ │ ├── TTwisted.py │ │ │ │ │ ├── TZlibTransport.py │ │ │ │ │ └── __init__.py │ │ │ ├── event │ │ │ │ ├── __init__.py │ │ │ │ ├── application │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── signup │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── events.py │ │ │ │ ├── domain │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── mapping │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── events.py │ │ │ │ ├── eventhandler.py │ │ │ │ ├── instance │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── notifier │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── events.py │ │ │ │ │ └── status │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── events.py │ │ │ │ ├── tenant │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── events.py │ │ │ │ └── topology │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── events.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── asyncscheduledtask.py │ │ │ │ ├── cartridgeagentutils.py │ │ │ │ └── log.py │ │ │ ├── plugins │ │ │ ├── DefaultArtifactCheckout.py │ │ │ ├── DefaultArtifactCheckout.yapsy-plugin │ │ │ ├── DefaultArtifactCommit.py │ │ │ ├── DefaultArtifactCommit.yapsy-plugin │ │ │ ├── DefaultHealthStatisticsReader.py │ │ │ ├── DefaultHealthStatisticsReader.yapsy-plugin │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ └── contracts.py │ │ │ ├── publisher.py │ │ │ ├── subscriber.py │ │ │ └── terminator.txt │ │ └── resources │ │ └── cloud-services-desc.xml ├── org.apache.stratos.python.cli │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── python │ │ ├── .gitignore │ │ ├── README.md │ │ ├── cli │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── config.py │ │ ├── exception.py │ │ ├── logutils.py │ │ ├── main.py │ │ ├── restclient.py │ │ └── utils.py │ │ ├── tests │ │ ├── CLITest.py │ │ ├── __init__.py │ │ └── test_stratos_utils.py │ │ └── tox.ini ├── org.apache.stratos.rest.endpoint │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── rest │ │ │ └── endpoint │ │ │ ├── Constants.java │ │ │ ├── ServiceHolder.java │ │ │ ├── Utils.java │ │ │ ├── annotation │ │ │ ├── AuthorizationAction.java │ │ │ └── SuperTenantService.java │ │ │ ├── api │ │ │ ├── AbstractApi.java │ │ │ ├── AuthenticationApi.java │ │ │ ├── StratosApiV40.java │ │ │ ├── StratosApiV40Utils.java │ │ │ ├── StratosApiV41.java │ │ │ └── StratosApiV41Utils.java │ │ │ ├── context │ │ │ └── AuthenticationContext.java │ │ │ ├── exception │ │ │ ├── ApplicationAlreadyDeployedException.java │ │ │ ├── ApplicationAlreadyExistException.java │ │ │ ├── ApplicationPolicyIdIsEmptyException.java │ │ │ ├── ApplicationPolicyIsEmptyException.java │ │ │ ├── ApplicationSignUpRestAPIException.java │ │ │ ├── ClusterIdIsEmptyException.java │ │ │ ├── InvalidCartridgeException.java │ │ │ ├── InvalidCartridgeGroupDefinitionException.java │ │ │ ├── InvalidDomainException.java │ │ │ ├── KubernetesClusterAlreadyExistException.java │ │ │ ├── KubernetesClusterDoesNotExistException.java │ │ │ ├── KubernetesHostAlreadyDeployedException.java │ │ │ ├── KubernetesHostDoesNotExistException.java │ │ │ ├── KubernetesMasterDoesNotExistException.java │ │ │ ├── RestAPIException.java │ │ │ ├── ServiceGroupDefinitionException.java │ │ │ └── TenantNotFoundException.java │ │ │ ├── handlers │ │ │ ├── AbstractAuthenticationAuthorizationHandler.java │ │ │ ├── BadRequestExceptionMapper.java │ │ │ ├── ComponentSynchronizerHandler.java │ │ │ ├── CookieBasedAuthenticationHandler.java │ │ │ ├── CustomExceptionMapper.java │ │ │ ├── CustomThrowableExceptionMapper.java │ │ │ ├── GenericExceptionMapper.java │ │ │ ├── OAuthHandler.java │ │ │ ├── StratosAuthenticationHandler.java │ │ │ ├── StratosAuthorizingHandler.java │ │ │ └── StratosMockHandler.java │ │ │ ├── mock │ │ │ ├── MockContext.java │ │ │ └── StratosApiV40Mock.java │ │ │ ├── oauth2 │ │ │ └── ValidationServiceClient.java │ │ │ ├── security │ │ │ ├── StratosPrincipal.java │ │ │ └── StratosSecurityContext.java │ │ │ └── util │ │ │ ├── converter │ │ │ └── ObjectConverter.java │ │ │ └── type │ │ │ ├── list │ │ │ └── ListType.java │ │ │ └── map │ │ │ ├── MapAdapter.java │ │ │ ├── MapEntryType.java │ │ │ └── MapType.java │ │ └── webapp │ │ ├── api-test │ │ ├── META-INF │ │ │ └── webapp-classloading.xml │ │ └── WEB-INF │ │ │ ├── cxf-servlet.xml │ │ │ ├── schemas │ │ │ └── schema.xsd │ │ │ └── web.xml │ │ └── api │ │ ├── META-INF │ │ └── webapp-classloading.xml │ │ └── WEB-INF │ │ ├── cxf-servlet.xml │ │ ├── schemas │ │ └── schema.xsd │ │ └── web.xml └── pom.xml ├── dependencies ├── fabric8 │ ├── kubernetes-api │ │ ├── README.md │ │ └── pom.xml │ └── pom.xml ├── guice-assistedinject │ └── pom.xml ├── guice-multibindings │ └── pom.xml ├── guice │ └── pom.xml ├── jclouds │ ├── aws-ec2 │ │ ├── README.txt │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── clojure │ │ │ │ └── org │ │ │ │ │ └── jclouds │ │ │ │ │ └── aws │ │ │ │ │ └── ec2.clj │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── jclouds │ │ │ │ └── aws │ │ │ │ └── ec2 │ │ │ │ ├── AWSEC2Api.java │ │ │ │ ├── AWSEC2ApiMetadata.java │ │ │ │ ├── AWSEC2ProviderMetadata.java │ │ │ │ ├── binders │ │ │ │ ├── BindLaunchSpecificationToFormParams.java │ │ │ │ ├── BindSpotInstanceRequestIdsToIndexedFormParams.java │ │ │ │ ├── BindTagFiltersToIndexedFormParams.java │ │ │ │ └── BindTagsToIndexedFormParams.java │ │ │ │ ├── compute │ │ │ │ ├── AWSEC2ComputeService.java │ │ │ │ ├── AWSEC2ComputeServiceContext.java │ │ │ │ ├── AWSEC2TemplateBuilderImpl.java │ │ │ │ ├── AWSEC2TemplateOptions.java │ │ │ │ ├── config │ │ │ │ │ ├── AWSEC2BindComputeSuppliersByClass.java │ │ │ │ │ ├── AWSEC2ComputeServiceContextModule.java │ │ │ │ │ ├── AWSEC2ComputeServiceDependenciesModule.java │ │ │ │ │ ├── ClusterCompute.java │ │ │ │ │ └── ImageQuery.java │ │ │ │ ├── extensions │ │ │ │ │ └── AWSEC2SecurityGroupExtension.java │ │ │ │ ├── functions │ │ │ │ │ ├── AWSEC2SecurityGroupToSecurityGroup.java │ │ │ │ │ ├── AWSRunningInstanceToNodeMetadata.java │ │ │ │ │ └── PresentSpotRequestsAndInstances.java │ │ │ │ ├── internal │ │ │ │ │ └── AWSEC2ComputeServiceContextImpl.java │ │ │ │ ├── loaders │ │ │ │ │ └── AWSEC2CreateSecurityGroupIfNeeded.java │ │ │ │ ├── strategy │ │ │ │ │ ├── AWSEC2CreateNodesInGroupThenAddToSet.java │ │ │ │ │ ├── AWSEC2DestroyNodeStrategy.java │ │ │ │ │ ├── AWSEC2GetNodeMetadataStrategy.java │ │ │ │ │ ├── AWSEC2ListNodesStrategy.java │ │ │ │ │ ├── AWSEC2ReviseParsedImage.java │ │ │ │ │ └── CreateKeyPairPlacementAndSecurityGroupsAsNeededAndReturnRunOptions.java │ │ │ │ └── suppliers │ │ │ │ │ ├── AWSEC2HardwareSupplier.java │ │ │ │ │ ├── AWSEC2ImageSupplier.java │ │ │ │ │ └── CallForImages.java │ │ │ │ ├── config │ │ │ │ └── AWSEC2HttpApiModule.java │ │ │ │ ├── domain │ │ │ │ ├── AWSRunningInstance.java │ │ │ │ ├── LaunchSpecification.java │ │ │ │ ├── MonitoringState.java │ │ │ │ ├── PlacementGroup.java │ │ │ │ ├── RegionNameAndPublicKeyMaterial.java │ │ │ │ ├── Spot.java │ │ │ │ └── SpotInstanceRequest.java │ │ │ │ ├── features │ │ │ │ ├── AWSAMIApi.java │ │ │ │ ├── AWSInstanceApi.java │ │ │ │ ├── AWSKeyPairApi.java │ │ │ │ ├── AWSSecurityGroupApi.java │ │ │ │ ├── MonitoringApi.java │ │ │ │ ├── PlacementGroupApi.java │ │ │ │ └── SpotInstanceApi.java │ │ │ │ ├── functions │ │ │ │ ├── CreatePlacementGroupIfNeeded.java │ │ │ │ ├── ImportOrReturnExistingKeypair.java │ │ │ │ └── SpotInstanceRequestToAWSRunningInstance.java │ │ │ │ ├── options │ │ │ │ ├── AWSDescribeImagesOptions.java │ │ │ │ ├── AWSRunInstancesOptions.java │ │ │ │ ├── CreateSecurityGroupOptions.java │ │ │ │ ├── DescribeSpotPriceHistoryOptions.java │ │ │ │ └── RequestSpotInstancesOptions.java │ │ │ │ ├── predicates │ │ │ │ ├── PlacementGroupAvailable.java │ │ │ │ ├── PlacementGroupDeleted.java │ │ │ │ └── SpotInstanceRequestActive.java │ │ │ │ ├── reference │ │ │ │ └── AWSEC2Constants.java │ │ │ │ └── xml │ │ │ │ ├── AWSDescribeInstancesResponseHandler.java │ │ │ │ ├── AWSEC2DescribeSecurityGroupsResponseHandler.java │ │ │ │ ├── AWSEC2IpPermissionHandler.java │ │ │ │ ├── AWSEC2SecurityGroupHandler.java │ │ │ │ ├── AWSRunInstancesResponseHandler.java │ │ │ │ ├── BaseAWSReservationHandler.java │ │ │ │ ├── CreateSecurityGroupResponseHandler.java │ │ │ │ ├── DescribePlacementGroupsResponseHandler.java │ │ │ │ ├── DescribeReservedInstancesOfferingResponseHandler.java │ │ │ │ ├── DescribeSpotPriceHistoryResponseHandler.java │ │ │ │ ├── LaunchSpecificationHandler.java │ │ │ │ ├── MonitoringStateHandler.java │ │ │ │ ├── PlacementGroupHandler.java │ │ │ │ ├── ProductCodesHandler.java │ │ │ │ ├── ReservedInstancesOfferingHandler.java │ │ │ │ ├── SpotHandler.java │ │ │ │ ├── SpotInstanceHandler.java │ │ │ │ └── SpotInstancesHandler.java │ │ │ └── test │ │ │ ├── clojure │ │ │ └── org │ │ │ │ └── jclouds │ │ │ │ └── aws │ │ │ │ └── ec2_test.clj │ │ │ ├── java │ │ │ └── org │ │ │ │ └── jclouds │ │ │ │ └── aws │ │ │ │ └── ec2 │ │ │ │ ├── AWSEC2ContextBuilderTest.java │ │ │ │ ├── AWSEC2ProviderTest.java │ │ │ │ ├── binders │ │ │ │ ├── BindLaunchSpecificationToFormParamsTest.java │ │ │ │ └── BindTagsToIndexedFormParamsTest.java │ │ │ │ ├── compute │ │ │ │ ├── AWSEC2ComputeServiceApiMockTest.java │ │ │ │ ├── AWSEC2ComputeServiceLiveTest.java │ │ │ │ ├── AWSEC2TemplateBuilderLiveTest.java │ │ │ │ ├── config │ │ │ │ │ └── AWSEC2ComputeServiceContextModuleTest.java │ │ │ │ ├── extensions │ │ │ │ │ ├── AWSEC2ImageExtensionLiveTest.java │ │ │ │ │ ├── AWSEC2SecurityGroupExtensionApiMockTest.java │ │ │ │ │ └── AWSEC2SecurityGroupExtensionLiveTest.java │ │ │ │ ├── functions │ │ │ │ │ ├── AWSEC2SecurityGroupToSecurityGroupTest.java │ │ │ │ │ ├── AWSRunningInstanceToNodeMetadataTest.java │ │ │ │ │ └── PresentSpotRequestsAndInstancesTest.java │ │ │ │ ├── loaders │ │ │ │ │ └── AWSEC2CreateSecurityGroupIfNeededTest.java │ │ │ │ ├── options │ │ │ │ │ └── AWSEC2TemplateOptionsTest.java │ │ │ │ └── strategy │ │ │ │ │ ├── AWSEC2ImageParserTest.java │ │ │ │ │ ├── AWSEC2ReviseParsedImageTest.java │ │ │ │ │ └── CreateKeyPairPlacementAndSecurityGroupsAsNeededAndReturnRunOptionsTest.java │ │ │ │ ├── features │ │ │ │ ├── AWSAMIApiLiveTest.java │ │ │ │ ├── AWSAMIApiMockTest.java │ │ │ │ ├── AWSElasticBlockStoreApiLiveTest.java │ │ │ │ ├── AWSInstanceApiLiveTest.java │ │ │ │ ├── AWSInstanceApiTest.java │ │ │ │ ├── AWSKeyPairApiLiveTest.java │ │ │ │ ├── AWSKeyPairApiTest.java │ │ │ │ ├── AWSSecurityGroupApiLiveTest.java │ │ │ │ ├── AWSSecurityGroupApiTest.java │ │ │ │ ├── AWSSubnetApiLiveTest.java │ │ │ │ ├── BaseAWSEC2ApiTest.java │ │ │ │ ├── MonitoringApiLiveTest.java │ │ │ │ ├── MonitoringApiMockTest.java │ │ │ │ ├── PlacementGroupApiLiveTest.java │ │ │ │ ├── PlacementGroupApiMockTest.java │ │ │ │ ├── SpotInstanceApiLiveTest.java │ │ │ │ ├── SpotInstanceApiMockTest.java │ │ │ │ └── TagSecurityGroupLiveTest.java │ │ │ │ ├── functions │ │ │ │ ├── ImportOrReturnExistingKeypairTest.java │ │ │ │ └── SpotInstanceRequestToAWSRunningInstanceTest.java │ │ │ │ ├── internal │ │ │ │ └── BaseAWSEC2ApiMockTest.java │ │ │ │ ├── options │ │ │ │ ├── AWSDescribeImagesOptionsTest.java │ │ │ │ ├── AWSRunInstancesOptionsTest.java │ │ │ │ ├── DescribeSpotPriceHistoryOptionsTest.java │ │ │ │ └── RequestSpotInstancesOptionsTest.java │ │ │ │ ├── parse │ │ │ │ ├── DescribeInstancesResponseTest.java │ │ │ │ └── DescribeSecurityGroupsResponseTest.java │ │ │ │ └── xml │ │ │ │ ├── AWSDescribeInstancesResponseHandlerTest.java │ │ │ │ ├── AWSRunInstancesResponseHandlerTest.java │ │ │ │ ├── DescribePlacementGroupsResponseHandlerTest.java │ │ │ │ ├── DescribeReservedInstancesOfferingResponseHandlerTest.java │ │ │ │ ├── DescribeSpotPriceHistoryResponseHandlerTest.java │ │ │ │ ├── MonitoringStateHandlerTest.java │ │ │ │ ├── ProductCodesHandlerTest.java │ │ │ │ ├── SpotInstanceHandlerTest.java │ │ │ │ └── SpotInstancesHandlerTest.java │ │ │ └── resources │ │ │ ├── alestic_canonical.xml │ │ │ ├── amzn_images.xml │ │ │ ├── describe_image_attribute_productCodes.xml │ │ │ ├── describe_images_cc.xml │ │ │ ├── describe_instances_1.xml │ │ │ ├── describe_instances_2.xml │ │ │ ├── describe_instances_3.xml │ │ │ ├── describe_instances_latest.xml │ │ │ ├── describe_instances_pending.xml │ │ │ ├── describe_placement_groups.xml │ │ │ ├── describe_placement_groups_empty.xml │ │ │ ├── describe_reserved_instances_offerings.xml │ │ │ ├── describe_security_groups_vpc.xml │ │ │ ├── describe_spot_instance.xml │ │ │ ├── describe_spot_instance_requests.xml │ │ │ ├── describe_spot_instance_tags.xml │ │ │ ├── describe_spot_instances_1.xml │ │ │ ├── describe_spot_price_history.xml │ │ │ ├── monitoring.xml │ │ │ ├── request_spot_instances-ebs.xml │ │ │ ├── request_spot_instances.xml │ │ │ ├── rightscale_images.xml │ │ │ ├── run_instances_1.xml │ │ │ └── vostok.xml │ ├── cloudstack │ │ └── pom.xml │ ├── ec2 │ │ └── pom.xml │ ├── google-jclouds-labs │ │ ├── google-cloud-storage │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── google-compute-engine │ │ │ ├── README.md │ │ │ └── pom.xml │ │ ├── googlecloud │ │ │ └── pom.xml │ │ ├── oauth │ │ │ └── pom.xml │ │ └── pom.xml │ ├── jclouds-blobstore │ │ └── pom.xml │ ├── jclouds-bouncycastle │ │ └── pom.xml │ ├── jclouds-compute │ │ └── pom.xml │ ├── jclouds-core │ │ └── pom.xml │ ├── jclouds-enterprise │ │ └── pom.xml │ ├── jclouds-joda │ │ └── pom.xml │ ├── jclouds-netty │ │ └── pom.xml │ ├── jclouds-sshj │ │ └── pom.xml │ ├── openstack-common │ │ └── pom.xml │ ├── openstack-keystone │ │ └── pom.xml │ ├── openstack-neutron │ │ └── pom.xml │ ├── openstack-nova │ │ └── pom.xml │ ├── pom.xml │ └── sts │ │ └── pom.xml ├── org.wso2.carbon.ui │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── wso2 │ │ │ └── carbon │ │ │ └── ui │ │ │ ├── AbstractCarbonUIAuthenticator.java │ │ │ ├── BasicAuthUIAuthenticator.java │ │ │ ├── BreadCrumbGenerator.java │ │ │ ├── BundleBasedUIResourceProvider.java │ │ │ ├── BundleProxyClassLoader.java │ │ │ ├── BundleResourcePathRegistry.java │ │ │ ├── CarbonConnection.java │ │ │ ├── CarbonProtocol.java │ │ │ ├── CarbonSSOSessionManager.java │ │ │ ├── CarbonSecuredHttpContext.java │ │ │ ├── CarbonUIAuthenticator.java │ │ │ ├── CarbonUILoginUtil.java │ │ │ ├── CarbonUIMessage.java │ │ │ ├── CarbonUIUtil.java │ │ │ ├── ComponentDeployer.java │ │ │ ├── DefaultAuthenticatorCredentials.java │ │ │ ├── DefaultCarbonAuthenticator.java │ │ │ ├── DefaultComponentEntryHttpContext.java │ │ │ ├── DeploymentEngine.java │ │ │ ├── JSPContextFinder.java │ │ │ ├── JspClassLoader.java │ │ │ ├── JspServlet.java │ │ │ ├── MenuAdminClient.java │ │ │ ├── SecuredComponentEntryHttpContext.java │ │ │ ├── TextJavascriptHandler.java │ │ │ ├── TextPlainHandler.java │ │ │ ├── TilesJspServlet.java │ │ │ ├── UIAnnouncement.java │ │ │ ├── UIAuthenticationExtender.java │ │ │ ├── UIExtender.java │ │ │ ├── UIResourceRegistry.java │ │ │ ├── Utils.java │ │ │ ├── action │ │ │ ├── ActionHelper.java │ │ │ ├── ComponentAction.java │ │ │ └── ServiceAction.java │ │ │ ├── clients │ │ │ ├── FileDownloadServiceClient.java │ │ │ ├── FileUploadServiceClient.java │ │ │ ├── LoggedUserInfoClient.java │ │ │ └── RegistryAdminServiceClient.java │ │ │ ├── deployment │ │ │ ├── ComponentBuilder.java │ │ │ ├── UIBundleDeployer.java │ │ │ └── beans │ │ │ │ ├── BreadCrumbItem.java │ │ │ │ ├── CarbonUIDefinitions.java │ │ │ │ ├── Component.java │ │ │ │ ├── Context.java │ │ │ │ ├── CustomUIDefenitions.java │ │ │ │ ├── FileUploadExecutorConfig.java │ │ │ │ ├── Menu.java │ │ │ │ └── Servlet.java │ │ │ ├── internal │ │ │ └── CarbonUIServiceComponent.java │ │ │ ├── taglibs │ │ │ ├── Breadcrumb.java │ │ │ ├── ItemGroupSelector.java │ │ │ ├── JSi18n.java │ │ │ ├── Paginator.java │ │ │ ├── Report.java │ │ │ ├── ResourcePaginator.java │ │ │ ├── SimpleItemGroupSelector.java │ │ │ └── TooltipsGenerator.java │ │ │ ├── tracker │ │ │ ├── AuthenticatorComparator.java │ │ │ └── AuthenticatorRegistry.java │ │ │ ├── transports │ │ │ ├── FileDownloadServlet.java │ │ │ ├── FileUploadServlet.java │ │ │ └── fileupload │ │ │ │ ├── AbstractFileUploadExecutor.java │ │ │ │ ├── AnyFileUploadExecutor.java │ │ │ │ ├── DBSFileUploadExecutor.java │ │ │ │ ├── FileSizeLimitExceededException.java │ │ │ │ ├── FileUploadExecutorManager.java │ │ │ │ ├── FileUploadFailedException.java │ │ │ │ ├── JarZipUploadExecutor.java │ │ │ │ ├── KeyStoreFileUploadExecutor.java │ │ │ │ ├── ToolsAnyFileUploadExecutor.java │ │ │ │ └── ToolsFileUploadExecutor.java │ │ │ ├── util │ │ │ ├── CarbonUIAuthenticationUtil.java │ │ │ ├── CharacterEncoder.java │ │ │ ├── FileDownloadUtil.java │ │ │ ├── UIAnnouncementDeployer.java │ │ │ └── UIResourceProvider.java │ │ │ └── valve │ │ │ ├── CSRFValve.java │ │ │ └── XSSValve.java │ │ └── resources │ │ ├── FileDownloadService.wsdl │ │ ├── FileUploadService.wsdl │ │ ├── LoggedUserInfoAdmin.wsdl │ │ ├── RegistryAdminService │ │ └── RegistryAdminService.wsdl │ │ └── web │ │ ├── WEB-INF │ │ ├── tiles │ │ │ └── main_defs.xml │ │ ├── tlds │ │ │ ├── ajaxtags.tld │ │ │ ├── c-1_0-rt.tld │ │ │ ├── c-1_0.tld │ │ │ ├── c.tld │ │ │ ├── carbontags.tld │ │ │ ├── fmt-1_0-rt.tld │ │ │ ├── fmt-1_0.tld │ │ │ ├── fmt.tld │ │ │ ├── fn.tld │ │ │ ├── json.tld │ │ │ ├── permittedTaglibs.tld │ │ │ ├── scriptfree.tld │ │ │ ├── sql-1_0-rt.tld │ │ │ ├── sql-1_0.tld │ │ │ ├── sql.tld │ │ │ ├── tiles-jsp.tld │ │ │ ├── x-1_0-rt.tld │ │ │ ├── x-1_0.tld │ │ │ └── x.tld │ │ └── web.xml │ │ ├── admin │ │ ├── css │ │ │ ├── carbonFormStyles.css │ │ │ ├── documentation.css │ │ │ ├── global.css │ │ │ └── smoothness │ │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ └── jquery-ui-1.8.11.custom.css │ │ ├── docs │ │ │ └── userguide.html │ │ ├── error.jsp │ │ ├── images │ │ │ ├── 1px.gif │ │ │ ├── add-collection.gif │ │ │ ├── add-link.gif │ │ │ ├── add-resource.gif │ │ │ ├── add-small-icon.gif │ │ │ ├── add.gif │ │ │ ├── addNewTab.gif │ │ │ ├── am_logo_h23.gif │ │ │ ├── application_edit.gif │ │ │ ├── appserver_logo_h23.gif │ │ │ ├── arrow-down.png │ │ │ ├── arrow-up.png │ │ │ ├── atom.gif │ │ │ ├── axis2-powered.gif │ │ │ ├── bam_logo_h23.gif │ │ │ ├── basket_put.gif │ │ │ ├── basket_remove.gif │ │ │ ├── book_add.gif │ │ │ ├── bps_logo_h23.gif │ │ │ ├── brick_edit.gif │ │ │ ├── brs_logo_h23.gif │ │ │ ├── button-bg-focus.gif │ │ │ ├── button-bg-hover.gif │ │ │ ├── button-bg.gif │ │ │ ├── buttonRow-bg.gif │ │ │ ├── calculator.gif │ │ │ ├── calendar.gif │ │ │ ├── cancel.gif │ │ │ ├── cep_logo_h23.gif │ │ │ ├── cloneTab.gif │ │ │ ├── control_play_blue.gif │ │ │ ├── copy.gif │ │ │ ├── create-checkpoint.gif │ │ │ ├── default-menu-icon.gif │ │ │ ├── delete.gif │ │ │ ├── down-arrow.gif │ │ │ ├── down-arrow.png │ │ │ ├── ds_logo_h23.gif │ │ │ ├── edit.gif │ │ │ ├── elb_logo_h23.gif │ │ │ ├── esb_logo_h23.gif │ │ │ ├── excelicon.gif │ │ │ ├── exlink.gif │ │ │ ├── favicon.ico │ │ │ ├── forum.gif │ │ │ ├── gadgetserver_logo_h23.gif │ │ │ ├── header-bg.gif │ │ │ ├── header-logo.gif │ │ │ ├── header-region-bg.gif │ │ │ ├── help-bg.gif │ │ │ ├── help-footer.gif │ │ │ ├── help-header.gif │ │ │ ├── help-small-icon.png │ │ │ ├── help.gif │ │ │ ├── home-bg.gif │ │ │ ├── htmlicon.gif │ │ │ ├── icon-feed-small-res.gif │ │ │ ├── identity_logo_h23.gif │ │ │ ├── information.gif │ │ │ ├── invisible.gif │ │ │ ├── issue-tracker.gif │ │ │ ├── leftRightSlider-dark.png │ │ │ ├── leftRightSlider.png │ │ │ ├── loading-small.gif │ │ │ ├── loading.gif │ │ │ ├── mailing-list.gif │ │ │ ├── mainIcons.png │ │ │ ├── mashup_logo_h23.gif │ │ │ ├── mb_logo_h23.gif │ │ │ ├── menu-header.gif │ │ │ ├── mgt-logo.gif │ │ │ ├── minus-plus.png │ │ │ ├── move.gif │ │ │ ├── nseditor-icon.gif │ │ │ ├── oops.gif │ │ │ ├── overlay.png │ │ │ ├── panelImage.png │ │ │ ├── pdficon.gif │ │ │ ├── plugin_add.gif │ │ │ ├── plugin_delete.gif │ │ │ ├── policies.gif │ │ │ ├── registry_logo_h23.gif │ │ │ ├── registry_picker.gif │ │ │ ├── rss.gif │ │ │ ├── spacer.gif │ │ │ ├── ss_logo_h23.png │ │ │ ├── star.gif │ │ │ ├── static-icon-disabled.gif │ │ │ ├── static-icon.gif │ │ │ ├── table-header.gif │ │ │ ├── trace-icon-disabled.gif │ │ │ ├── trace-icon.gif │ │ │ ├── up-arrow.gif │ │ │ ├── up-arrow.png │ │ │ ├── user-guide.gif │ │ │ ├── user.gif │ │ │ ├── view-disabled.gif │ │ │ ├── view.gif │ │ │ ├── zoom_in.gif │ │ │ └── zoom_out.gif │ │ ├── index.jsp │ │ ├── js │ │ │ ├── WSRequest.js │ │ │ ├── breadcrumbs.js │ │ │ ├── cookies.js │ │ │ ├── customControls.js │ │ │ ├── dhtmlHistory.js │ │ │ ├── excanvas.js │ │ │ ├── jquery-1.5.2.min.js │ │ │ ├── jquery-1.6.3.min.js │ │ │ ├── jquery-ui-1.8.11.custom.min.js │ │ │ ├── jquery.cookie.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.form.js │ │ │ ├── jquery.js │ │ │ ├── jquery.ui.core.min.js │ │ │ ├── jquery.ui.tabs.min.js │ │ │ ├── jquery.ui.widget.min.js │ │ │ ├── jquery.validate.js │ │ │ ├── main.js │ │ │ ├── prototype-1.6.js │ │ │ ├── template.js │ │ │ └── widgets.js │ │ ├── jsp │ │ │ ├── WSRequestXSSproxy_ajaxprocessor.jsp │ │ │ ├── browser_checker.jsp │ │ │ ├── registry_styles_ajaxprocessor.jsp │ │ │ └── session-validate.jsp │ │ ├── layout │ │ │ ├── ajaxheader.jsp │ │ │ ├── announcements.jsp │ │ │ ├── breadcrumb.jsp │ │ │ ├── defaultBody.jsp │ │ │ ├── footer.jsp │ │ │ ├── header.jsp │ │ │ ├── region1.jsp │ │ │ ├── region2.jsp │ │ │ ├── region3.jsp │ │ │ ├── region4.jsp │ │ │ ├── region5.jsp │ │ │ └── template.jsp │ │ └── login.jsp │ │ ├── ajax │ │ └── js │ │ │ ├── ajax │ │ │ ├── ajaxtags.js │ │ │ ├── ajaxtags_controls.js │ │ │ └── ajaxtags_parser.js │ │ │ ├── all.js │ │ │ ├── overlibmws │ │ │ ├── BabelFish.js │ │ │ ├── ajaxcontentmws.js │ │ │ ├── arrow.gif │ │ │ ├── calendarmws.js │ │ │ ├── calendarmws_lang.js │ │ │ ├── cornerBL.gif │ │ │ ├── cornerBR.gif │ │ │ ├── cornerTL.gif │ │ │ ├── cornerTR.gif │ │ │ ├── edgeB.gif │ │ │ ├── edgeL.gif │ │ │ ├── edgeR.gif │ │ │ ├── edgeT.gif │ │ │ ├── exit.gif │ │ │ ├── flower.gif │ │ │ ├── iframecontentmws.js │ │ │ ├── loading.gif │ │ │ ├── objectcontentmws.js │ │ │ ├── oval.gif │ │ │ ├── overlibCompat.js │ │ │ ├── overlibConfig.txt │ │ │ ├── overlibmws.js │ │ │ ├── overlibmws_bubble.js │ │ │ ├── overlibmws_crossframe.js │ │ │ ├── overlibmws_debug.js │ │ │ ├── overlibmws_draggable.js │ │ │ ├── overlibmws_exclusive.js │ │ │ ├── overlibmws_filter.js │ │ │ ├── overlibmws_function.js │ │ │ ├── overlibmws_hide.js │ │ │ ├── overlibmws_iframe.js │ │ │ ├── overlibmws_modal.js │ │ │ ├── overlibmws_overtwo.js │ │ │ ├── overlibmws_print.js │ │ │ ├── overlibmws_regCore.js │ │ │ ├── overlibmws_scroll.js │ │ │ ├── overlibmws_shadow.js │ │ │ ├── overlibmwslogo.gif │ │ │ ├── print.gif │ │ │ ├── pushpin.gif │ │ │ ├── quotation.gif │ │ │ ├── semitrans.gif │ │ │ ├── showCalendar.gif │ │ │ ├── sprintf.js │ │ │ └── square.gif │ │ │ ├── prototype.js │ │ │ ├── readme.txt │ │ │ └── scriptaculous │ │ │ ├── builder.js │ │ │ ├── controls.js │ │ │ ├── dragdrop.js │ │ │ ├── effects.js │ │ │ ├── scriptaculous.js │ │ │ ├── slider.js │ │ │ └── unittest.js │ │ ├── dialog │ │ ├── css │ │ │ ├── dialog-ie8.css │ │ │ ├── dialog.css │ │ │ └── jqueryui │ │ │ │ ├── images │ │ │ │ ├── 222222_11x11_icon_close.gif │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ │ │ └── ffffff_40x100_textures_02_glass_65.png │ │ │ │ └── jqueryui-themeroller.css │ │ ├── display_messages.jsp │ │ ├── img │ │ │ ├── confirm.gif │ │ │ ├── error.gif │ │ │ ├── info.gif │ │ │ ├── overlay.png │ │ │ └── warning.gif │ │ └── js │ │ │ ├── dialog.js │ │ │ └── jqueryui │ │ │ ├── jquery-ui.min.js │ │ │ ├── tabs │ │ │ ├── images │ │ │ │ ├── 222222_11x11_icon_arrows_leftright.gif │ │ │ │ ├── 222222_11x11_icon_arrows_updown.gif │ │ │ │ ├── 222222_11x11_icon_doc.gif │ │ │ │ ├── 222222_11x11_icon_minus.gif │ │ │ │ ├── 222222_11x11_icon_plus.gif │ │ │ │ ├── 222222_11x11_icon_resize_se.gif │ │ │ │ ├── 222222_7x7_arrow_down.gif │ │ │ │ ├── 222222_7x7_arrow_left.gif │ │ │ │ ├── 222222_7x7_arrow_right.gif │ │ │ │ ├── 222222_7x7_arrow_up.gif │ │ │ │ ├── 454545_11x11_icon_arrows_leftright.gif │ │ │ │ ├── 454545_11x11_icon_arrows_updown.gif │ │ │ │ ├── 454545_11x11_icon_close.gif │ │ │ │ ├── 454545_11x11_icon_doc.gif │ │ │ │ ├── 454545_11x11_icon_folder_closed.gif │ │ │ │ ├── 454545_11x11_icon_folder_open.gif │ │ │ │ ├── 454545_11x11_icon_minus.gif │ │ │ │ ├── 454545_11x11_icon_plus.gif │ │ │ │ ├── 454545_7x7_arrow_down.gif │ │ │ │ ├── 454545_7x7_arrow_left.gif │ │ │ │ ├── 454545_7x7_arrow_right.gif │ │ │ │ ├── 454545_7x7_arrow_up.gif │ │ │ │ ├── 888888_11x11_icon_arrows_leftright.gif │ │ │ │ ├── 888888_11x11_icon_arrows_updown.gif │ │ │ │ ├── 888888_11x11_icon_close.gif │ │ │ │ ├── 888888_11x11_icon_doc.gif │ │ │ │ ├── 888888_11x11_icon_folder_closed.gif │ │ │ │ ├── 888888_11x11_icon_folder_open.gif │ │ │ │ ├── 888888_11x11_icon_minus.gif │ │ │ │ ├── 888888_11x11_icon_plus.gif │ │ │ │ ├── 888888_7x7_arrow_down.gif │ │ │ │ ├── 888888_7x7_arrow_left.gif │ │ │ │ ├── 888888_7x7_arrow_right.gif │ │ │ │ ├── 888888_7x7_arrow_up.gif │ │ │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ │ │ ├── ffffff_40x100_textures_01_flat_75.png │ │ │ │ └── ffffff_40x100_textures_02_glass_65.png │ │ │ ├── jquery-1.2.6.min.js │ │ │ ├── jquery-ui-1.6.custom.min.js │ │ │ ├── jquery.cookie.js │ │ │ └── ui.all.css │ │ │ └── ui │ │ │ └── i18n │ │ │ ├── jquery.ui.i18n.all.js │ │ │ ├── ui.datepicker-ar.js │ │ │ ├── ui.datepicker-bg.js │ │ │ ├── ui.datepicker-ca.js │ │ │ ├── ui.datepicker-cs.js │ │ │ ├── ui.datepicker-da.js │ │ │ ├── ui.datepicker-de.js │ │ │ ├── ui.datepicker-eo.js │ │ │ ├── ui.datepicker-es.js │ │ │ ├── ui.datepicker-fi.js │ │ │ ├── ui.datepicker-fr.js │ │ │ ├── ui.datepicker-he.js │ │ │ ├── ui.datepicker-hr.js │ │ │ ├── ui.datepicker-hu.js │ │ │ ├── ui.datepicker-hy.js │ │ │ ├── ui.datepicker-id.js │ │ │ ├── ui.datepicker-is.js │ │ │ ├── ui.datepicker-it.js │ │ │ ├── ui.datepicker-ja.js │ │ │ ├── ui.datepicker-ko.js │ │ │ ├── ui.datepicker-lt.js │ │ │ ├── ui.datepicker-lv.js │ │ │ ├── ui.datepicker-nl.js │ │ │ ├── ui.datepicker-no.js │ │ │ ├── ui.datepicker-pl.js │ │ │ ├── ui.datepicker-pt-BR.js │ │ │ ├── ui.datepicker-ro.js │ │ │ ├── ui.datepicker-ru.js │ │ │ ├── ui.datepicker-sk.js │ │ │ ├── ui.datepicker-sl.js │ │ │ ├── ui.datepicker-sv.js │ │ │ ├── ui.datepicker-th.js │ │ │ ├── ui.datepicker-tr.js │ │ │ ├── ui.datepicker-uk.js │ │ │ ├── ui.datepicker-zh-CN.js │ │ │ └── ui.datepicker-zh-TW.js │ │ ├── docs │ │ ├── about.html │ │ ├── images │ │ │ └── login.png │ │ └── signin_userguide.html │ │ ├── editarea │ │ ├── autocompletion.js │ │ ├── edit_area.css │ │ ├── edit_area.js │ │ ├── edit_area_compressor.php │ │ ├── edit_area_full.gz │ │ ├── edit_area_full.js │ │ ├── edit_area_functions.js │ │ ├── edit_area_loader.js │ │ ├── elements_functions.js │ │ ├── highlight.js │ │ ├── images │ │ │ ├── autocompletion.gif │ │ │ ├── close.gif │ │ │ ├── fullscreen.gif │ │ │ ├── go_to_line.gif │ │ │ ├── help.gif │ │ │ ├── highlight.gif │ │ │ ├── load.gif │ │ │ ├── move.gif │ │ │ ├── newdocument.gif │ │ │ ├── opacity.png │ │ │ ├── processing.gif │ │ │ ├── redo.gif │ │ │ ├── reset_highlight.gif │ │ │ ├── save.gif │ │ │ ├── search.gif │ │ │ ├── smooth_selection.gif │ │ │ ├── spacer.gif │ │ │ ├── statusbar_resize.gif │ │ │ ├── undo.gif │ │ │ └── word_wrap.gif │ │ ├── keyboard.js │ │ ├── langs │ │ │ ├── bg.js │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── dk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── hr.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── mk.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ └── zh.js │ │ ├── license_apache.txt │ │ ├── license_bsd.txt │ │ ├── license_lgpl.txt │ │ ├── manage_area.js │ │ ├── plugins │ │ │ ├── charmap │ │ │ │ ├── charmap.js │ │ │ │ ├── css │ │ │ │ │ └── charmap.css │ │ │ │ ├── images │ │ │ │ │ └── charmap.gif │ │ │ │ ├── jscripts │ │ │ │ │ └── map.js │ │ │ │ ├── langs │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── dk.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sk.js │ │ │ │ │ └── zh.js │ │ │ │ └── popup.html │ │ │ └── test │ │ │ │ ├── css │ │ │ │ └── test.css │ │ │ │ ├── images │ │ │ │ ├── Thumbs.db │ │ │ │ └── test.gif │ │ │ │ ├── langs │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── de.js │ │ │ │ ├── dk.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── mk.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ └── zh.js │ │ │ │ ├── test.js │ │ │ │ └── test2.js │ │ ├── reg_syntax.js │ │ ├── reg_syntax │ │ │ ├── basic.js │ │ │ ├── brainfuck.js │ │ │ ├── c.js │ │ │ ├── coldfusion.js │ │ │ ├── cpp.js │ │ │ ├── css.js │ │ │ ├── html.js │ │ │ ├── java.js │ │ │ ├── js.js │ │ │ ├── pas.js │ │ │ ├── perl.js │ │ │ ├── php.js │ │ │ ├── python.js │ │ │ ├── robotstxt.js │ │ │ ├── ruby.js │ │ │ ├── sql.js │ │ │ ├── tsql.js │ │ │ ├── vb.js │ │ │ └── xml.js │ │ ├── regexp.js │ │ ├── resize_area.js │ │ ├── search_replace.js │ │ └── template.html │ │ ├── highlighter │ │ ├── css │ │ │ └── SyntaxHighlighter.css │ │ ├── header.jsp │ │ └── js │ │ │ ├── clipboard.swf │ │ │ ├── shBrushCSharp.js │ │ │ ├── shBrushCpp.js │ │ │ ├── shBrushCss.js │ │ │ ├── shBrushDelphi.js │ │ │ ├── shBrushJScript.js │ │ │ ├── shBrushJava.js │ │ │ ├── shBrushPhp.js │ │ │ ├── shBrushPython.js │ │ │ ├── shBrushRuby.js │ │ │ ├── shBrushSql.js │ │ │ ├── shBrushVb.js │ │ │ ├── shBrushXml.js │ │ │ └── shCore.js │ │ ├── index.html │ │ └── yui │ │ └── build │ │ ├── animation │ │ ├── README │ │ ├── animation-debug.js │ │ ├── animation-min.js │ │ └── animation.js │ │ ├── assets │ │ └── skins │ │ │ └── sam │ │ │ ├── autocomplete.css │ │ │ ├── blankimage.png │ │ │ ├── button.css │ │ │ ├── calendar.css │ │ │ ├── colorpicker.css │ │ │ ├── container.css │ │ │ ├── datatable.css │ │ │ ├── dt-arrow-dn.png │ │ │ ├── dt-arrow-up.png │ │ │ ├── editor-knob.gif │ │ │ ├── editor-sprite-active.gif │ │ │ ├── editor-sprite.gif │ │ │ ├── editor.css │ │ │ ├── hue_bg.png │ │ │ ├── logger.css │ │ │ ├── menu-button-arrow-disabled.png │ │ │ ├── menu-button-arrow.png │ │ │ ├── menu.css │ │ │ ├── picker_mask.png │ │ │ ├── skin.css │ │ │ ├── split-button-arrow-active.png │ │ │ ├── split-button-arrow-disabled.png │ │ │ ├── split-button-arrow-focus.png │ │ │ ├── split-button-arrow-hover.png │ │ │ ├── split-button-arrow.png │ │ │ ├── sprite.png │ │ │ ├── tabview.css │ │ │ ├── treeview-loading.gif │ │ │ ├── treeview-sprite.gif │ │ │ ├── treeview.css │ │ │ └── yuitest.css │ │ ├── autocomplete │ │ ├── README │ │ ├── assets │ │ │ ├── autocomplete-core.css │ │ │ └── skins │ │ │ │ └── sam │ │ │ │ ├── autocomplete-skin.css │ │ │ │ └── autocomplete.css │ │ ├── autocomplete-debug.js │ │ ├── autocomplete-min.js │ │ └── autocomplete.js │ │ ├── base │ │ ├── README │ │ ├── base-min.css │ │ └── base.css │ │ ├── button │ │ ├── README │ │ ├── assets │ │ │ ├── button-core.css │ │ │ └── skins │ │ │ │ └── sam │ │ │ │ ├── button-skin.css │ │ │ │ ├── button.css │ │ │ │ ├── menu-button-arrow-disabled.png │ │ │ │ ├── menu-button-arrow.png │ │ │ │ ├── split-button-arrow-active.png │ │ │ │ ├── split-button-arrow-disabled.png │ │ │ │ ├── split-button-arrow-focus.png │ │ │ │ ├── split-button-arrow-hover.png │ │ │ │ └── split-button-arrow.png │ │ ├── button-beta-debug.js │ │ ├── button-beta-min.js │ │ └── button-beta.js │ │ ├── calendar │ │ ├── README │ │ ├── assets │ │ │ ├── calendar-core.css │ │ │ ├── calendar.css │ │ │ ├── callt.gif │ │ │ ├── calrt.gif │ │ │ ├── calx.gif │ │ │ └── skins │ │ │ │ └── sam │ │ │ │ ├── calendar-skin.css │ │ │ │ └── calendar.css │ │ ├── calendar-debug.js │ │ ├── calendar-min.js │ │ └── calendar.js │ │ ├── colorpicker │ │ ├── README │ │ ├── assets │ │ │ ├── colorpicker_core.css │ │ │ ├── hue_thumb.png │ │ │ ├── picker_mask.png │ │ │ ├── picker_thumb.png │ │ │ └── skins │ │ │ │ └── sam │ │ │ │ ├── colorpicker-skin.css │ │ │ │ ├── colorpicker.css │ │ │ │ ├── hue_bg.png │ │ │ │ └── picker_mask.png │ │ ├── colorpicker-beta-debug.js │ │ ├── colorpicker-beta-min.js │ │ └── colorpicker-beta.js │ │ ├── connection │ │ ├── README │ │ ├── connection-debug.js │ │ ├── connection-min.js │ │ └── connection.js │ │ ├── container │ │ ├── README │ │ ├── assets │ │ │ ├── alrt16_1.gif │ │ │ ├── blck16_1.gif │ │ │ ├── close12_1.gif │ │ │ ├── container-core.css │ │ │ ├── container.css │ │ │ ├── hlp16_1.gif │ │ │ ├── info16_1.gif │ │ │ ├── skins │ │ │ │ └── sam │ │ │ │ │ ├── container-skin.css │ │ │ │ │ └── container.css │ │ │ ├── tip16_1.gif │ │ │ └── warn16_1.gif │ │ ├── container-debug.js │ │ ├── container-min.js │ │ ├── container.js │ │ ├── container_core-debug.js │ │ ├── container_core-min.js │ │ └── container_core.js │ │ ├── datasource │ │ ├── README │ │ ├── datasource-beta-debug.js │ │ ├── datasource-beta-min.js │ │ ├── datasource-beta.js │ │ └── datasource-min.js │ │ ├── datatable │ │ ├── README │ │ ├── assets │ │ │ ├── datatable-core.css │ │ │ ├── datatable.css │ │ │ └── skins │ │ │ │ └── sam │ │ │ │ ├── datatable-skin.css │ │ │ │ ├── datatable.css │ │ │ │ ├── dt-arrow-dn.png │ │ │ │ └── dt-arrow-up.png │ │ ├── datatable-beta-debug.js │ │ ├── datatable-beta-min.js │ │ └── datatable-beta.js │ │ ├── dom │ │ ├── README │ │ ├── dom-debug.js │ │ ├── dom-min.js │ │ └── dom.js │ │ ├── dragdrop │ │ ├── README │ │ ├── dragdrop-debug.js │ │ ├── dragdrop-min.js │ │ └── dragdrop.js │ │ ├── editor │ │ ├── README │ │ ├── assets │ │ │ ├── editor-core.css │ │ │ ├── simpleeditor-core.css │ │ │ └── skins │ │ │ │ └── sam │ │ │ │ ├── blankimage.png │ │ │ │ ├── editor-knob.gif │ │ │ │ ├── editor-skin.css │ │ │ │ ├── editor-sprite-active.gif │ │ │ │ ├── editor-sprite.gif │ │ │ │ ├── editor.css │ │ │ │ ├── simpleeditor-skin.css │ │ │ │ └── simpleeditor.css │ │ ├── editor-beta-debug.js │ │ ├── editor-beta-min.js │ │ ├── editor-beta.js │ │ ├── editor-debug.js │ │ ├── editor-min.js │ │ ├── editor.js │ │ ├── simpleeditor-debug.js │ │ ├── simpleeditor-min.js │ │ └── simpleeditor.js │ │ ├── element │ │ ├── README │ │ ├── element-beta-debug.js │ │ ├── element-beta-min.js │ │ ├── element-beta.js │ │ └── element-min.js │ │ ├── event-delegate │ │ └── event-delegate-min.js │ │ ├── event │ │ ├── README │ │ ├── event-debug.js │ │ ├── event-min.js │ │ └── event.js │ │ ├── fonts │ │ ├── README │ │ ├── fonts-min.css │ │ └── fonts.css │ │ ├── grids │ │ ├── README │ │ ├── grids-min.css │ │ └── grids.css │ │ ├── history │ │ ├── README │ │ ├── assets │ │ │ └── blank.html │ │ ├── history-beta-debug.js │ │ ├── history-beta-min.js │ │ └── history-beta.js │ │ ├── imageloader │ │ ├── README │ │ ├── imageloader-experimental-debug.js │ │ ├── imageloader-experimental-min.js │ │ └── imageloader-experimental.js │ │ ├── json │ │ ├── README │ │ ├── json-debug.js │ │ ├── json-min.js │ │ └── json.js │ │ ├── logger │ │ ├── README │ │ ├── assets │ │ │ ├── logger-core.css │ │ │ ├── logger.css │ │ │ └── skins │ │ │ │ └── sam │ │ │ │ ├── logger-skin.css │ │ │ │ └── logger.css │ │ ├── logger-debug.js │ │ ├── logger-min.js │ │ └── logger.js │ │ ├── menu │ │ ├── README │ │ ├── assets │ │ │ ├── map.gif │ │ │ ├── menu-core.css │ │ │ ├── menu.css │ │ │ └── skins │ │ │ │ └── sam │ │ │ │ ├── menu-skin.css │ │ │ │ └── menu.css │ │ ├── menu-debug.js │ │ ├── menu-min.js │ │ └── menu.js │ │ ├── reset-fonts-grids │ │ ├── README │ │ └── reset-fonts-grids.css │ │ ├── reset │ │ ├── README │ │ ├── reset-min.css │ │ └── reset.css │ │ ├── resize │ │ ├── assets │ │ │ ├── resize-core.css │ │ │ └── skins │ │ │ │ └── sam │ │ │ │ ├── layout_sprite.png │ │ │ │ ├── resize-skin.css │ │ │ │ └── resize.css │ │ └── resize-min.js │ │ ├── selector │ │ └── selector-min.js │ │ ├── slider │ │ ├── README │ │ ├── slider-debug.js │ │ ├── slider-min.js │ │ └── slider.js │ │ ├── tabview │ │ ├── README │ │ ├── assets │ │ │ ├── border_tabs.css │ │ │ ├── loading.gif │ │ │ ├── skin-sam.css │ │ │ ├── skins │ │ │ │ └── sam │ │ │ │ │ ├── tabview-skin.css │ │ │ │ │ └── tabview.css │ │ │ ├── tabview-core.css │ │ │ └── tabview.css │ │ ├── tabview-debug.js │ │ ├── tabview-min.js │ │ └── tabview.js │ │ ├── treeview │ │ ├── README │ │ ├── assets │ │ │ ├── folder-styles.css │ │ │ ├── images │ │ │ │ ├── lm.gif │ │ │ │ ├── lmh.gif │ │ │ │ ├── ln.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── lp.gif │ │ │ │ ├── lph.gif │ │ │ │ ├── tm.gif │ │ │ │ ├── tmh.gif │ │ │ │ ├── tn.gif │ │ │ │ ├── tp.gif │ │ │ │ ├── tph.gif │ │ │ │ └── vline.gif │ │ │ ├── skins │ │ │ │ └── sam │ │ │ │ │ ├── treeview-loading.gif │ │ │ │ │ ├── treeview-skin.css │ │ │ │ │ ├── treeview-sprite.gif │ │ │ │ │ └── treeview.css │ │ │ ├── sprite-menu.gif │ │ │ ├── sprite-orig.gif │ │ │ ├── treeview-2.8.1.css │ │ │ ├── treeview-core.css │ │ │ ├── treeview-loading.gif │ │ │ ├── treeview-menu.css │ │ │ └── treeview.css │ │ ├── treeview-2.8.1.js │ │ ├── treeview-debug.js │ │ ├── treeview-min.js │ │ └── treeview.js │ │ ├── utilities │ │ ├── README │ │ └── utilities.js │ │ ├── yahoo-dom-event │ │ ├── README │ │ └── yahoo-dom-event.js │ │ ├── yahoo │ │ ├── README │ │ ├── yahoo-debug.js │ │ ├── yahoo-min.js │ │ └── yahoo.js │ │ ├── yuiloader │ │ ├── README │ │ ├── yuiloader-beta-debug.js │ │ ├── yuiloader-beta-min.js │ │ └── yuiloader-beta.js │ │ └── yuitest │ │ ├── README │ │ ├── assets │ │ ├── skins │ │ │ └── sam │ │ │ │ ├── yuitest-skin.css │ │ │ │ └── yuitest.css │ │ ├── testlogger.css │ │ └── yuitest-core.css │ │ ├── yuitest-beta-debug.js │ │ ├── yuitest-beta-min.js │ │ └── yuitest-beta.js ├── pom.xml ├── rocoto │ └── pom.xml └── sshj │ └── pom.xml ├── doap_Stratos.rdf ├── extensions ├── cep │ ├── modules │ │ ├── artifacts │ │ │ ├── wso2cep-3.0.0 │ │ │ │ ├── eventbuilders │ │ │ │ │ ├── HealthStatisticsEventBuilder.xml │ │ │ │ │ └── LoadBalancerStatisticsEventBuilder.xml │ │ │ │ ├── eventformatters │ │ │ │ │ ├── AverageInFlightRequestsEventFormatter.xml │ │ │ │ │ ├── AverageLoadAverageEventFormatter.xml │ │ │ │ │ ├── AverageMemoryConsumptionEventFormatter.xml │ │ │ │ │ ├── FaultMessageEventFormatter.xml │ │ │ │ │ ├── GradientInFlightRequestsEventFormatter.xml │ │ │ │ │ ├── GradientLoadAverageEventFormatter.xml │ │ │ │ │ ├── GradientMemoryConsumptionEventFormatter.xml │ │ │ │ │ ├── MemberAverageLoadAverageEventFormatter.xml │ │ │ │ │ ├── MemberAverageMemoryConsumptionEventFormatter.xml │ │ │ │ │ ├── MemberGradientLoadAverageEventFormatter.xml │ │ │ │ │ ├── MemberGradientMemoryConsumptionEventFormatter.xml │ │ │ │ │ ├── MemberSecondDerivativeLoadAverageEventFormatter.xml │ │ │ │ │ ├── MemberSecondDerivativeMemoryConsumptionEventFormatter.xml │ │ │ │ │ ├── SecondDerivativeInFlightRequestsEventFormatter.xml │ │ │ │ │ ├── SecondDerivativeLoadAverageEventFormatter.xml │ │ │ │ │ └── SecondDerivativeMemoryConsumptionEventFormatter.xml │ │ │ │ ├── executionplans │ │ │ │ │ ├── AverageHeathRequest.xml │ │ │ │ │ ├── AverageInFlightRequestsFinder.xml │ │ │ │ │ ├── GradientOfHealthRequest.xml │ │ │ │ │ ├── GradientOfRequestsInFlightFinder.xml │ │ │ │ │ ├── SecondDerivativeOfHealthRequest.xml │ │ │ │ │ └── SecondDerivativeOfRequestsInFlightFinder.xml │ │ │ │ ├── inputeventadaptors │ │ │ │ │ └── DefaultWSO2EventInputAdaptor.xml │ │ │ │ ├── outputeventadaptors │ │ │ │ │ └── JMSOutputAdaptor.xml │ │ │ │ └── streamdefinitions │ │ │ │ │ └── stream-manager-config.xml │ │ │ └── wso2cep-3.1.0 │ │ │ │ ├── eventbuilders │ │ │ │ ├── HealthStatisticsEventBuilder.xml │ │ │ │ └── LoadBalancerStatisticsEventBuilder.xml │ │ │ │ ├── eventformatters │ │ │ │ ├── AverageInFlightRequestsEventFormatter.xml │ │ │ │ ├── AverageLoadAverageEventFormatter.xml │ │ │ │ ├── AverageMemoryConsumptionEventFormatter.xml │ │ │ │ ├── FaultMessageEventFormatter.xml │ │ │ │ ├── GradientInFlightRequestsEventFormatter.xml │ │ │ │ ├── GradientLoadAverageEventFormatter.xml │ │ │ │ ├── GradientMemoryConsumptionEventFormatter.xml │ │ │ │ ├── MemberAverageLoadAverageEventFormatter.xml │ │ │ │ ├── MemberAverageMemoryConsumptionEventFormatter.xml │ │ │ │ ├── MemberGradientLoadAverageEventFormatter.xml │ │ │ │ ├── MemberGradientMemoryConsumptionEventFormatter.xml │ │ │ │ ├── MemberSecondDerivativeLoadAverageEventFormatter.xml │ │ │ │ ├── MemberSecondDerivativeMemoryConsumptionEventFormatter.xml │ │ │ │ ├── SecondDerivativeInFlightRequestsEventFormatter.xml │ │ │ │ ├── SecondDerivativeLoadAverageEventFormatter.xml │ │ │ │ └── SecondDerivativeMemoryConsumptionEventFormatter.xml │ │ │ │ ├── executionplans │ │ │ │ ├── AverageHeathRequest.xml │ │ │ │ ├── AverageInFlightRequestsFinder.xml │ │ │ │ ├── GradientOfHealthRequest.xml │ │ │ │ ├── GradientOfRequestsInFlightFinder.xml │ │ │ │ ├── SecondDerivativeOfHealthRequest.xml │ │ │ │ └── SecondDerivativeOfRequestsInFlightFinder.xml │ │ │ │ ├── inputeventadaptors │ │ │ │ └── DefaultWSO2EventInputAdaptor.xml │ │ │ │ ├── outputeventadaptors │ │ │ │ └── JMSOutputAdaptor.xml │ │ │ │ └── streamdefinitions │ │ │ │ └── stream-manager-config.xml │ │ ├── distribution │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── assembly │ │ │ │ └── bin.xml │ │ │ │ └── main │ │ │ │ ├── license │ │ │ │ └── LICENSE │ │ │ │ └── notice │ │ │ │ └── NOTICE │ │ └── stratos-cep-extension │ │ │ ├── wso2cep-3.0.0 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── cep │ │ │ │ └── extension │ │ │ │ ├── CEPTopologyEventReceiver.java │ │ │ │ ├── ConcatWindowProcessor.java │ │ │ │ ├── FaultHandlingWindowProcessor.java │ │ │ │ ├── GradientFinderWindowProcessor.java │ │ │ │ ├── MemeberRequestHandlingCapabilityWindowProcessor.java │ │ │ │ ├── SecondDerivativeFinderWindowProcessor.java │ │ │ │ └── SystemTimeWindowProcessor.java │ │ │ └── wso2cep-3.1.0 │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── cep │ │ │ └── extension │ │ │ ├── CEPTopologyEventReceiver.java │ │ │ ├── ConcatWindowProcessor.java │ │ │ ├── FaultHandlingWindowProcessor.java │ │ │ ├── GradientFinderWindowProcessor.java │ │ │ ├── MemeberRequestHandlingCapabilityWindowProcessor.java │ │ │ ├── SecondDerivativeFinderWindowProcessor.java │ │ │ └── SystemTimeWindowProcessor.java │ └── pom.xml ├── das │ ├── modules │ │ ├── artifacts │ │ │ ├── metering-dashboard │ │ │ │ ├── README.md │ │ │ │ ├── capps │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── stratos-metering-service │ │ │ │ │ │ ├── Dashboard │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── metering-dashboard.json │ │ │ │ │ │ ├── EventreceiverApplicationSignUps │ │ │ │ │ │ ├── application_signups_receiver.xml │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── EventreceiverMemberInfo │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_info_receiver.xml │ │ │ │ │ │ ├── EventreceiverMemberLifecycle │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_lifecycle_receiver.xml │ │ │ │ │ │ ├── EventstoreApplicationSignUps │ │ │ │ │ │ ├── application_signups.xml │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── EventstoreMemberInfo │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_info.xml │ │ │ │ │ │ ├── EventstoreMemberLifecycle │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_lifecycle.xml │ │ │ │ │ │ ├── EventstreamApplicationSignups │ │ │ │ │ │ ├── application_signups_1.0.0.json │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── EventstreamMemberInfo │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_info_1.0.0.json │ │ │ │ │ │ ├── EventstreamMemberLifecycle │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_lifecycle_1.0.0.json │ │ │ │ │ │ ├── ExecutionplanMemberCount │ │ │ │ │ │ ├── MemberCount.siddhiql │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetApplicationSignUps │ │ │ │ │ │ ├── Application_Signups │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── d3.geomap.css │ │ │ │ │ │ │ │ └── igviz.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── d3.geomap.dependencies.min.js │ │ │ │ │ │ │ │ ├── d3.geomap.min.js │ │ │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ │ │ │ ├── gadgetconf.js │ │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ │ ├── outputAdapterUiLibrary.js │ │ │ │ │ │ │ │ └── vega.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetApplicationSignUpsFilter │ │ │ │ │ │ ├── Application_Signups_Filter │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.png │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── application-signups-filter.js │ │ │ │ │ │ │ │ └── jquery-ui.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetMemberCount │ │ │ │ │ │ ├── Member_Count │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── d3.geomap.css │ │ │ │ │ │ │ │ └── igviz.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── d3.geomap.dependencies.min.js │ │ │ │ │ │ │ │ ├── d3.geomap.min.js │ │ │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ │ │ │ ├── gadgetconf.js │ │ │ │ │ │ │ │ ├── igviz.js │ │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ │ ├── outputAdapterUiLibrary.js │ │ │ │ │ │ │ │ └── vega.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetMemberDetailsFilter │ │ │ │ │ │ ├── Member_Details_Filter │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.png │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ │ │ │ └── member-details-filter.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetMemberInformation │ │ │ │ │ │ ├── Member_Information │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── d3.geomap.css │ │ │ │ │ │ │ │ └── igviz.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── d3.geomap.dependencies.min.js │ │ │ │ │ │ │ │ ├── d3.geomap.min.js │ │ │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ │ │ │ ├── gadgetconf.js │ │ │ │ │ │ │ │ ├── igviz.js │ │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ │ ├── outputAdapterUiLibrary.js │ │ │ │ │ │ │ │ └── vega.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetMemberStatus │ │ │ │ │ │ ├── Member_Status │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── d3.geomap.css │ │ │ │ │ │ │ │ └── igviz.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── d3.geomap.dependencies.min.js │ │ │ │ │ │ │ │ ├── d3.geomap.min.js │ │ │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ │ │ │ ├── gadgetconf.js │ │ │ │ │ │ │ │ ├── igviz.js │ │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ │ ├── outputAdapterUiLibrary.js │ │ │ │ │ │ │ │ └── vega.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetMemberStatusFilter │ │ │ │ │ │ ├── Member_Status_Filter │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.png │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ │ │ │ └── member-status-filter.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── SparkscriptsApplicationSignUps │ │ │ │ │ │ ├── application_signups.xml │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── SparkscriptsMemberInfo │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_information.xml │ │ │ │ │ │ ├── SparkscriptsMemberLifecycle │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_lifecycle.xml │ │ │ │ │ │ └── artifacts.xml │ │ │ │ ├── database-scripts │ │ │ │ │ ├── mysql │ │ │ │ │ │ └── metering-script.sql │ │ │ │ │ └── oracle │ │ │ │ │ │ └── metering-script.sql │ │ │ │ ├── jaggery-files │ │ │ │ │ ├── mysql │ │ │ │ │ │ ├── application-signups.jag │ │ │ │ │ │ ├── applications.jag │ │ │ │ │ │ ├── clusters.jag │ │ │ │ │ │ ├── member-count.jag │ │ │ │ │ │ ├── member-info.jag │ │ │ │ │ │ ├── member-status.jag │ │ │ │ │ │ └── metering-authentication.jag │ │ │ │ │ └── oracle │ │ │ │ │ │ ├── application-signups.jag │ │ │ │ │ │ ├── applications.jag │ │ │ │ │ │ ├── clusters.jag │ │ │ │ │ │ ├── member-count.jag │ │ │ │ │ │ ├── member-info.jag │ │ │ │ │ │ ├── member-status.jag │ │ │ │ │ │ └── metering-authentication.jag │ │ │ │ └── ues-patch │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dashboard.jag │ │ │ │ │ ├── ues-gadgets.js │ │ │ │ │ └── ues-pubsub.js │ │ │ ├── monitoring-dashboard │ │ │ │ ├── README.md │ │ │ │ ├── capps │ │ │ │ │ ├── pom.xml │ │ │ │ │ └── stratos-monitoring-service │ │ │ │ │ │ ├── Dashboard │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── monitoring-dashboard.json │ │ │ │ │ │ ├── EventreceiverAverageInFlightRequest │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── average_in_flight_requests_receiver.xml │ │ │ │ │ │ ├── EventreceiverAverageLoadAvergaeStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── average_load_average_stats_receiver.xml │ │ │ │ │ │ ├── EventreceiverAverageMemoryConsumptionStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── average_memory_consumption_stats_receiver.xml │ │ │ │ │ │ ├── EventreceiverMemberAverageLoadAverageStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_average_load_average_stats_receiver.xml │ │ │ │ │ │ ├── EventreceiverMemberAverageMemoryConsumptionStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_average_memory_consumption_stats_receiver.xml │ │ │ │ │ │ ├── EventreceiverScalingDecision │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── scaling_decision_receiver.xml │ │ │ │ │ │ ├── EventstoreAverageInFlightRequest │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── average_in_flight_requests.xml │ │ │ │ │ │ ├── EventstoreAverageLoadAvergaeStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── average_load_average_stats.xml │ │ │ │ │ │ ├── EventstoreAverageMemoryConsumptionStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── average_memory_consumption_stats.xml │ │ │ │ │ │ ├── EventstoreMemberAverageLoadAverageStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_average_load_average_stats.xml │ │ │ │ │ │ ├── EventstoreMemberAverageMemoryConsumptionStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_average_memory_consumption_stats.xml │ │ │ │ │ │ ├── EventstoreScalingDecision │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── scaling_decision.xml │ │ │ │ │ │ ├── EventstreamAverageInFlightRequest │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── average_in_flight_requests_1.0.0.json │ │ │ │ │ │ ├── EventstreamAverageLoadAvergaeStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── average_load_average_stats_1.0.0.json │ │ │ │ │ │ ├── EventstreamAverageMemoryConsumptionStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── average_memory_consumption_stats_1.0.0.json │ │ │ │ │ │ ├── EventstreamMemberAverageLoadAverageStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_average_load_average_stats_1.0.0.json │ │ │ │ │ │ ├── EventstreamMemberAverageMemoryConsumptionStats │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── member_average_memory_consumption_stats_1.0.0.json │ │ │ │ │ │ ├── EventstreamScalingDecision │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── scaling_decision_1.0.0.json │ │ │ │ │ │ ├── GadgetHealthStatsFilter │ │ │ │ │ │ ├── Health_Stats_Filter │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ │ │ │ └── style.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.png │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── health-stats-filter.js │ │ │ │ │ │ │ │ └── jquery-ui.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetInFlightRequest │ │ │ │ │ │ ├── In_Flight_Request │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── d3.geomap.css │ │ │ │ │ │ │ │ └── igviz.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── d3.geomap.dependencies.min.js │ │ │ │ │ │ │ │ ├── d3.geomap.min.js │ │ │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ │ │ │ ├── gadgetconf.js │ │ │ │ │ │ │ │ ├── igviz.js │ │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ │ ├── outputAdapterUiLibrary.js │ │ │ │ │ │ │ │ └── vega.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetLoadAverage │ │ │ │ │ │ ├── Load_Average │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── d3.geomap.css │ │ │ │ │ │ │ │ └── igviz.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── d3.geomap.dependencies.min.js │ │ │ │ │ │ │ │ ├── d3.geomap.min.js │ │ │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ │ │ │ ├── gadgetconf.js │ │ │ │ │ │ │ │ ├── igviz.js │ │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ │ ├── outputAdapterUiLibrary.js │ │ │ │ │ │ │ │ └── vega.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetMemoryUsage │ │ │ │ │ │ ├── Memory_Usage │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── d3.geomap.css │ │ │ │ │ │ │ │ └── igviz.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── d3.geomap.dependencies.min.js │ │ │ │ │ │ │ │ ├── d3.geomap.min.js │ │ │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ │ │ │ ├── gadgetconf.js │ │ │ │ │ │ │ │ ├── igviz.js │ │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ │ ├── outputAdapterUiLibrary.js │ │ │ │ │ │ │ │ └── vega.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── GadgetScalingDetails │ │ │ │ │ │ ├── Scaling_Details │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ │ ├── d3.geomap.css │ │ │ │ │ │ │ │ └── igviz.css │ │ │ │ │ │ │ ├── gadget.json │ │ │ │ │ │ │ ├── index.xml │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── d3.geomap.dependencies.min.js │ │ │ │ │ │ │ │ ├── d3.geomap.min.js │ │ │ │ │ │ │ │ ├── d3.min.js │ │ │ │ │ │ │ │ ├── excanvas.min.js │ │ │ │ │ │ │ │ ├── gadgetconf.js │ │ │ │ │ │ │ │ ├── igviz.js │ │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ │ ├── main.js │ │ │ │ │ │ │ │ ├── outputAdapterUiLibrary.js │ │ │ │ │ │ │ │ └── vega.js │ │ │ │ │ │ └── artifact.xml │ │ │ │ │ │ ├── SparkscriptsInFlightRequest │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── in_flight_request.xml │ │ │ │ │ │ ├── SparkscriptsLoadAverage │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── load_average.xml │ │ │ │ │ │ ├── SparkscriptsMemoryUsage │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── memory_usage.xml │ │ │ │ │ │ ├── SparkscriptsScalingDecision │ │ │ │ │ │ ├── artifact.xml │ │ │ │ │ │ └── scaling_decision.xml │ │ │ │ │ │ └── artifacts.xml │ │ │ │ ├── database-scripts │ │ │ │ │ ├── mysql │ │ │ │ │ │ └── monitoring-script.sql │ │ │ │ │ └── oracle │ │ │ │ │ │ └── monitoring-script.sql │ │ │ │ └── jaggery-files │ │ │ │ │ ├── mysql │ │ │ │ │ ├── health-stats-clusters.jag │ │ │ │ │ ├── health-stats-members.jag │ │ │ │ │ ├── in-flight-request.jag │ │ │ │ │ ├── load-average.jag │ │ │ │ │ ├── memory-usage.jag │ │ │ │ │ ├── monitoring-authentication.jag │ │ │ │ │ └── scaling-details.jag │ │ │ │ │ └── oracle │ │ │ │ │ ├── health-stats-clusters.jag │ │ │ │ │ ├── health-stats-members.jag │ │ │ │ │ ├── in-flight-request.jag │ │ │ │ │ ├── load-average.jag │ │ │ │ │ ├── memory-usage.jag │ │ │ │ │ ├── monitoring-authentication.jag │ │ │ │ │ └── scaling-details.jag │ │ │ ├── wso2cep-300 │ │ │ │ ├── eventformatters │ │ │ │ │ ├── AverageInFlightRequestsDASEventFormatter.xml │ │ │ │ │ ├── AverageLoadAverageDASEventFormatter.xml │ │ │ │ │ ├── AverageMemoryConsumptionDASEventFormatter.xml │ │ │ │ │ ├── MemberAverageLoadAverageDASEventFormatter.xml │ │ │ │ │ └── MemberAverageMemoryConsumptionDASEventFormatter.xml │ │ │ │ └── outputeventadaptors │ │ │ │ │ └── DefaultWSO2EventOutputAdaptor.xml │ │ │ └── wso2cep-310 │ │ │ │ ├── eventformatters │ │ │ │ ├── AverageInFlightRequestsDASEventFormatter.xml │ │ │ │ ├── AverageLoadAverageDASEventFormatter.xml │ │ │ │ ├── AverageMemoryConsumptionDASEventFormatter.xml │ │ │ │ ├── MemberAverageLoadAverageDASEventFormatter.xml │ │ │ │ └── MemberAverageMemoryConsumptionDASEventFormatter.xml │ │ │ │ └── outputeventadaptors │ │ │ │ └── DefaultWSO2EventOutputAdaptor.xml │ │ ├── distribution │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── assembly │ │ │ │ └── bin.xml │ │ │ │ └── main │ │ │ │ ├── license │ │ │ │ └── LICENSE │ │ │ │ └── notice │ │ │ │ └── NOTICE │ │ └── stratos-das-extension │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── apache │ │ │ └── stratos │ │ │ └── das │ │ │ └── extension │ │ │ └── TimeUDF.java │ └── pom.xml ├── load-balancer │ ├── modules │ │ ├── aws-extension │ │ │ ├── INSTALL.md │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ ├── main │ │ │ │ ├── assembly │ │ │ │ │ └── bin.xml │ │ │ │ ├── bin │ │ │ │ │ └── aws-extension.sh │ │ │ │ ├── conf │ │ │ │ │ ├── aws.properties │ │ │ │ │ ├── jndi.properties │ │ │ │ │ ├── log4j.properties │ │ │ │ │ └── thrift-client-config.xml │ │ │ │ ├── java │ │ │ │ │ └── org │ │ │ │ │ │ └── apache │ │ │ │ │ │ └── stratos │ │ │ │ │ │ └── aws │ │ │ │ │ │ └── extension │ │ │ │ │ │ ├── AWSExtensionContext.java │ │ │ │ │ │ ├── AWSHelper.java │ │ │ │ │ │ ├── AWSLoadBalancer.java │ │ │ │ │ │ ├── AWSStatisticsReader.java │ │ │ │ │ │ ├── Constants.java │ │ │ │ │ │ ├── Main.java │ │ │ │ │ │ ├── exception │ │ │ │ │ │ └── PersistenceException.java │ │ │ │ │ │ └── persistence │ │ │ │ │ │ ├── FileBasedPersistenceManager.java │ │ │ │ │ │ ├── PersistenceManager.java │ │ │ │ │ │ ├── dao │ │ │ │ │ │ └── LBInfoDAO.java │ │ │ │ │ │ └── dto │ │ │ │ │ │ └── LBInfoDTO.java │ │ │ │ ├── license │ │ │ │ │ └── LICENSE │ │ │ │ ├── notice │ │ │ │ │ └── NOTICE │ │ │ │ ├── resources │ │ │ │ │ └── .gitignore │ │ │ │ └── security │ │ │ │ │ └── client-truststore.jks │ │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── stratos │ │ │ │ │ └── aws │ │ │ │ │ └── extension │ │ │ │ │ └── AwsHelperTest.java │ │ │ │ └── resources │ │ │ │ └── log4j.properties │ │ ├── haproxy-extension │ │ │ ├── INSTALL.md │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── assembly │ │ │ │ └── bin.xml │ │ │ │ ├── bin │ │ │ │ └── haproxy-extension.sh │ │ │ │ ├── conf │ │ │ │ ├── jndi.properties │ │ │ │ ├── log4j.properties │ │ │ │ └── thrift-client-config.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── stratos │ │ │ │ │ └── haproxy │ │ │ │ │ └── extension │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── HAProxy.java │ │ │ │ │ ├── HAProxyConfigWriter.java │ │ │ │ │ ├── HAProxyContext.java │ │ │ │ │ ├── HAProxyStatisticsReader.java │ │ │ │ │ └── Main.java │ │ │ │ ├── license │ │ │ │ └── LICENSE │ │ │ │ ├── notice │ │ │ │ └── NOTICE │ │ │ │ ├── resources │ │ │ │ └── velocity.properties │ │ │ │ ├── scripts │ │ │ │ └── get-weight.sh │ │ │ │ ├── security │ │ │ │ └── client-truststore.jks │ │ │ │ └── templates │ │ │ │ └── haproxy.cfg.template │ │ ├── lvs-extension │ │ │ ├── INSTALL.md │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── assembly │ │ │ │ └── bin.xml │ │ │ │ ├── bin │ │ │ │ └── lvs-extension.sh │ │ │ │ ├── conf │ │ │ │ ├── jndi.properties │ │ │ │ ├── log4j.properties │ │ │ │ └── thrift-client-config.xml │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── stratos │ │ │ │ │ └── lvs │ │ │ │ │ └── extension │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── LVS.java │ │ │ │ │ ├── LVSConfigWriter.java │ │ │ │ │ ├── LVSContext.java │ │ │ │ │ ├── LVSStatisticsReader.java │ │ │ │ │ └── Main.java │ │ │ │ ├── license │ │ │ │ └── LICENSE │ │ │ │ ├── notice │ │ │ │ └── NOTICE │ │ │ │ ├── resources │ │ │ │ └── velocity.properties │ │ │ │ ├── security │ │ │ │ └── client-truststore.jks │ │ │ │ └── templates │ │ │ │ └── keepalived.conf.template │ │ └── nginx-extension │ │ │ ├── INSTALL.md │ │ │ ├── README.md │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── assembly │ │ │ └── bin.xml │ │ │ ├── bin │ │ │ └── nginx-extension.sh │ │ │ ├── conf │ │ │ ├── jndi.properties │ │ │ ├── log4j.properties │ │ │ └── thrift-client-config.xml │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── nginx │ │ │ │ └── extension │ │ │ │ ├── Constants.java │ │ │ │ ├── Main.java │ │ │ │ ├── Nginx.java │ │ │ │ ├── NginxConfigWriter.java │ │ │ │ ├── NginxContext.java │ │ │ │ └── NginxStatisticsReader.java │ │ │ ├── license │ │ │ └── LICENSE │ │ │ ├── notice │ │ │ └── NOTICE │ │ │ ├── resources │ │ │ └── velocity.properties │ │ │ ├── security │ │ │ └── client-truststore.jks │ │ │ └── templates │ │ │ └── nginx.cfg.template │ └── pom.xml └── pom.xml ├── features ├── autoscaler │ ├── org.apache.stratos.autoscaler.feature │ │ └── pom.xml │ └── pom.xml ├── cep │ ├── org.apache.stratos.event.processor.feature │ │ └── pom.xml │ ├── org.apache.stratos.event.processor.server.feature │ │ └── pom.xml │ └── pom.xml ├── cloud-controller │ ├── org.apache.stratos.cloud.controller.feature │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── build.properties │ │ │ ├── conf │ │ │ ├── cloud-controller.xml │ │ │ ├── etc │ │ │ │ ├── cartridge.xsd │ │ │ │ ├── cartridges.xsd │ │ │ │ ├── service.xsd │ │ │ │ └── services.xsd │ │ │ └── scripts │ │ │ │ └── sh │ │ │ │ └── customization │ │ │ └── p2.inf │ └── pom.xml ├── common │ ├── org.apache.stratos.common.feature │ │ └── pom.xml │ ├── org.apache.stratos.common.server.feature │ │ ├── pom.xml │ │ ├── resources │ │ │ ├── build.properties │ │ │ ├── conf │ │ │ │ ├── cloud-services-desc.xml │ │ │ │ ├── identity.xml │ │ │ │ ├── multitenancy-packages.xml │ │ │ │ ├── stratos.xml │ │ │ │ ├── tenant-mgt.xml │ │ │ │ └── usage-throttling-agent-config.xml │ │ │ └── p2.inf │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── build.properties │ │ │ ├── conf │ │ │ ├── cloud-services-desc.xml │ │ │ ├── identity.xml │ │ │ ├── multitenancy-packages.xml │ │ │ ├── stratos.xml │ │ │ ├── tenant-mgt.xml │ │ │ └── usage-throttling-agent-config.xml │ │ │ └── p2.inf │ ├── org.apache.stratos.custom.handlers.feature │ │ └── pom.xml │ └── pom.xml ├── load-balancer │ ├── org.apache.stratos.load.balancer.common.feature │ │ └── pom.xml │ ├── org.apache.stratos.load.balancer.feature │ │ └── pom.xml │ └── pom.xml ├── manager │ ├── metadata-service │ │ ├── org.apache.stratos.metadata.client.feature │ │ │ └── pom.xml │ │ └── org.apache.stratos.metadata.service.feature │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── p2.inf │ │ │ └── tomcat │ │ │ ├── context.xml │ │ │ ├── webapp-classloading-environments.xml │ │ │ └── webapp-classloading.xml │ ├── pom.xml │ ├── rest-endpoint │ │ └── org.apache.stratos.rest.endpoint.feature │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── p2.inf │ │ │ └── tomcat │ │ │ ├── context.xml │ │ │ ├── webapp-classloading-environments.xml │ │ │ └── webapp-classloading.xml │ ├── stratos-mgt │ │ ├── org.apache.stratos.manager.feature │ │ │ └── pom.xml │ │ ├── org.apache.stratos.manager.server.feature │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── resources │ │ │ │ ├── build.properties │ │ │ │ ├── conf │ │ │ │ ├── etc │ │ │ │ │ └── policies.xsd │ │ │ │ └── policies.xml │ │ │ │ └── p2.inf │ │ └── pom.xml │ └── styles │ │ └── org.apache.stratos.manager.styles.feature │ │ └── pom.xml ├── messaging │ ├── org.apache.stratos.messaging.feature │ │ └── pom.xml │ └── pom.xml ├── mock-iaas │ ├── org.apache.stratos.mock.iaas.api.feature │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── resources │ │ │ ├── p2.inf │ │ │ └── tomcat │ │ │ ├── context.xml │ │ │ ├── webapp-classloading-environments.xml │ │ │ └── webapp-classloading.xml │ └── pom.xml └── pom.xml ├── pom.xml ├── products ├── cartridge-agent │ ├── modules │ │ ├── distribution │ │ │ ├── INSTALL.txt │ │ │ ├── README.txt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── assembly │ │ │ │ └── bin.xml │ │ │ │ ├── bin │ │ │ │ └── stratos.sh │ │ │ │ ├── conf │ │ │ │ ├── jndi.properties │ │ │ │ ├── log4j.properties │ │ │ │ ├── mqtttopic.properties │ │ │ │ ├── templates │ │ │ │ │ └── jndi.properties.template │ │ │ │ └── thrift-client-config.xml │ │ │ │ ├── extensions │ │ │ │ ├── artifacts-copy.sh │ │ │ │ ├── artifacts-updated.sh │ │ │ │ ├── clean.sh │ │ │ │ ├── complete-tenant.sh │ │ │ │ ├── complete-topology.sh │ │ │ │ ├── domain-mapping-added.sh │ │ │ │ ├── domain-mapping-removed.sh │ │ │ │ ├── instance-activated.sh │ │ │ │ ├── instance-started.sh │ │ │ │ ├── member-activated.sh │ │ │ │ ├── member-started.sh │ │ │ │ ├── member-suspended.sh │ │ │ │ ├── member-terminated.sh │ │ │ │ ├── mount-volumes.sh │ │ │ │ ├── mount_volumes.sh │ │ │ │ ├── payload │ │ │ │ │ └── launch-params │ │ │ │ ├── start-servers.sh │ │ │ │ ├── tenant-subscribed.sh │ │ │ │ └── tenant-unsubscribed.sh │ │ │ │ ├── license │ │ │ │ └── LICENSE │ │ │ │ ├── notice │ │ │ │ └── NOTICE │ │ │ │ ├── resources │ │ │ │ └── jndi.properties │ │ │ │ └── security │ │ │ │ └── client-truststore.jks │ │ └── scripts │ │ │ ├── ec2 │ │ │ ├── cartridge-agent.sh │ │ │ ├── clean.sh │ │ │ ├── get-launch-params.rb │ │ │ └── load-balancer │ │ │ │ ├── cartridge-agent.sh │ │ │ │ ├── start-load-balancer.sh │ │ │ │ └── templates │ │ │ │ └── loadbalancer.conf.template │ │ │ └── openstack │ │ │ └── php │ │ │ ├── cartridge-agent.sh │ │ │ ├── clean.sh │ │ │ ├── get-launch-params.rb │ │ │ └── healthcheck.sh │ └── pom.xml ├── load-balancer │ ├── modules │ │ ├── distribution │ │ │ ├── INSTALL.txt │ │ │ ├── README.txt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── assembly │ │ │ │ ├── bin.xml │ │ │ │ └── filter.properties │ │ │ │ ├── bin │ │ │ │ ├── stratos.bat │ │ │ │ └── stratos.sh │ │ │ │ ├── conf │ │ │ │ ├── axis2.xml │ │ │ │ ├── cipher-text.properties │ │ │ │ ├── datasources.properties │ │ │ │ ├── embedded-ldap.xml │ │ │ │ ├── jndi.properties │ │ │ │ ├── loadbalancer.conf │ │ │ │ ├── log4j.properties │ │ │ │ ├── mqtttopic.properties │ │ │ │ ├── nhttp.properties │ │ │ │ ├── passthru-http.properties │ │ │ │ ├── rule-component.conf │ │ │ │ ├── synapse-configs │ │ │ │ │ └── default │ │ │ │ │ │ ├── registry.xml │ │ │ │ │ │ ├── sequences │ │ │ │ │ │ ├── errorHandler.xml │ │ │ │ │ │ ├── fault.xml │ │ │ │ │ │ └── main.xml │ │ │ │ │ │ └── synapse.xml │ │ │ │ ├── synapse.properties │ │ │ │ ├── templates │ │ │ │ │ └── jndi.properties.template │ │ │ │ ├── thrift-client-config.xml │ │ │ │ └── user-mgt.xml │ │ │ │ ├── license │ │ │ │ └── LICENSE │ │ │ │ └── notice │ │ │ │ └── NOTICE │ │ └── p2-profile-gen │ │ │ └── pom.xml │ └── pom.xml ├── pom.xml ├── python-cartridge-agent │ ├── modules │ │ ├── distribution │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── assembly │ │ │ │ └── bin.xml │ │ │ │ ├── license │ │ │ │ └── LICENSE │ │ │ │ ├── notice │ │ │ │ └── NOTICE │ │ │ │ └── readme │ │ │ │ └── README │ │ └── integration │ │ │ ├── .gitignore │ │ │ ├── pom.xml │ │ │ ├── src │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── stratos │ │ │ │ │ └── python.cartridge.agent │ │ │ │ │ └── test │ │ │ │ │ ├── DataPublisherTestUtil.java │ │ │ │ │ └── ThriftTestServer.java │ │ │ │ └── resources │ │ │ │ └── common │ │ │ │ ├── client-truststore.jks │ │ │ │ ├── data-bridge-config.xml │ │ │ │ ├── stratos-health-stream-def.json │ │ │ │ ├── thrift-agent-config.xml │ │ │ │ └── wso2carbon.jks │ │ │ ├── test-common │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── python │ │ │ │ └── cartridge │ │ │ │ └── agent │ │ │ │ └── integration │ │ │ │ └── common │ │ │ │ ├── DataPublisherTestUtil.java │ │ │ │ └── ThriftTestServer.java │ │ │ └── test-integration │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── python │ │ │ │ └── cartridge │ │ │ │ └── agent │ │ │ │ └── integration │ │ │ │ └── tests │ │ │ │ ├── ADCExtensionTestCase.java │ │ │ │ ├── ADCMTAppTenantUserTestCase.java │ │ │ │ ├── ADCMTAppTestCase.java │ │ │ │ ├── ADCTestCase.java │ │ │ │ ├── ADCValidationTestCase.java │ │ │ │ ├── AgentConfBackwardCompatibilityTestCase.java │ │ │ │ ├── AgentStartupTestCase.java │ │ │ │ ├── AgentTerminationTestCase.java │ │ │ │ ├── CEPHAModeTestCase.java │ │ │ │ ├── MessageBrokerHATestCase.java │ │ │ │ └── PythonAgentIntegrationTest.java │ │ │ └── resources │ │ │ ├── ADCExtensionTestCase │ │ │ ├── agent.conf │ │ │ ├── extensions │ │ │ │ └── py │ │ │ │ │ ├── checkout-job-handler.py │ │ │ │ │ ├── checkout-job-handler.yapsy-plugin │ │ │ │ │ ├── commit-job-handler.py │ │ │ │ │ └── commit-job-handler.yapsy-plugin │ │ │ ├── logging.ini │ │ │ └── payload │ │ │ │ └── launch-params │ │ │ ├── ADCMTAppTenantUserTestCase │ │ │ ├── agent.conf │ │ │ ├── logging.ini │ │ │ └── payload │ │ │ │ └── launch-params │ │ │ ├── ADCMTAppTestCase │ │ │ ├── agent.conf │ │ │ ├── logging.ini │ │ │ └── payload │ │ │ │ └── launch-params │ │ │ ├── ADCTestCase │ │ │ ├── agent.conf │ │ │ ├── logging.ini │ │ │ └── payload │ │ │ │ └── launch-params │ │ │ ├── ADCValidationTestCase │ │ │ ├── agent.conf │ │ │ ├── logging.ini │ │ │ └── payload │ │ │ │ └── launch-params │ │ │ ├── AgentConfBackwardCompatibilityTestCase │ │ │ ├── agent.conf │ │ │ ├── logging.ini │ │ │ └── payload │ │ │ │ └── launch-params │ │ │ ├── AgentStartupTestCase │ │ │ ├── agent.conf │ │ │ ├── extensions │ │ │ │ └── py │ │ │ │ │ ├── checkout-job-handler.py │ │ │ │ │ ├── checkout-job-handler.yapsy-plugin │ │ │ │ │ ├── commit-job-handler.py │ │ │ │ │ ├── commit-job-handler.yapsy-plugin │ │ │ │ │ ├── startup-test-handler.py │ │ │ │ │ └── startup-test-handler.yapsy-plugin │ │ │ ├── logging.ini │ │ │ └── payload │ │ │ │ └── launch-params │ │ │ ├── AgentTerminationTestCase │ │ │ ├── agent.conf │ │ │ ├── logging.ini │ │ │ └── payload │ │ │ │ └── launch-params │ │ │ ├── CEPHAModeTestCase │ │ │ ├── agent.conf │ │ │ ├── logging.ini │ │ │ └── payload │ │ │ │ └── launch-params │ │ │ ├── MessageBrokerHATestCase │ │ │ ├── agent.conf │ │ │ ├── jndi.properties │ │ │ ├── logging.ini │ │ │ └── payload │ │ │ │ └── launch-params │ │ │ ├── common │ │ │ ├── client-truststore.jks │ │ │ ├── data-bridge-config.xml │ │ │ ├── jndi.properties │ │ │ ├── log4j.properties │ │ │ ├── stratos-health-stream-def.json │ │ │ ├── thrift-agent-config.xml │ │ │ └── wso2carbon.jks │ │ │ ├── log4j.properties │ │ │ ├── test-conf │ │ │ └── integration-test.properties │ │ │ ├── test-suite-all.xml │ │ │ ├── test-suite-ha.xml │ │ │ └── test-suite-smoke.xml │ └── pom.xml ├── python-cli │ ├── modules │ │ └── distribution │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── assembly │ │ │ └── bin.xml │ │ │ ├── bin │ │ │ └── stratos.sh │ │ │ ├── license │ │ │ └── LICENSE │ │ │ └── notice │ │ │ └── NOTICE │ └── pom.xml ├── stratos-cli │ ├── modules │ │ └── distribution │ │ │ ├── INSTALL.txt │ │ │ ├── README.txt │ │ │ ├── pom.xml │ │ │ └── src │ │ │ └── main │ │ │ ├── assembly │ │ │ └── bin.xml │ │ │ ├── bin │ │ │ ├── stratos.bat │ │ │ └── stratos.sh │ │ │ ├── conf │ │ │ └── log4j.properties │ │ │ ├── license │ │ │ └── LICENSE │ │ │ └── notice │ │ │ └── NOTICE │ └── pom.xml └── stratos │ ├── modules │ ├── distribution │ │ ├── INSTALL.txt │ │ ├── README.txt │ │ ├── pom.xml │ │ └── src │ │ │ ├── assembly │ │ │ ├── bin.xml │ │ │ └── filter.properties │ │ │ └── main │ │ │ ├── bin │ │ │ ├── stratos.bat │ │ │ └── stratos.sh │ │ │ ├── conf │ │ │ ├── application-authenticators.xml │ │ │ ├── autoscaler.xml │ │ │ ├── axis2 │ │ │ │ ├── axis2.xml │ │ │ │ ├── axis2_client.xml │ │ │ │ └── tenant-axis2.xml │ │ │ ├── carbon.xml │ │ │ ├── cartridge-config.properties │ │ │ ├── data-bridge │ │ │ │ ├── data-bridge-config.xml │ │ │ │ └── thrift-agent-config.xml │ │ │ ├── default-adaptors │ │ │ │ └── DefaultWSO2EventInputAdaptor.xml │ │ │ ├── drools │ │ │ │ ├── dependent-scaling.drl │ │ │ │ ├── maxcheck.drl │ │ │ │ ├── mincheck.drl │ │ │ │ ├── obsoletecheck.drl │ │ │ │ ├── scaling.drl │ │ │ │ ├── terminateall.drl │ │ │ │ └── terminatedependency.drl │ │ │ ├── etc │ │ │ │ └── launch.ini │ │ │ ├── event-broker.xml │ │ │ ├── identity.xml │ │ │ ├── jndi.properties │ │ │ ├── log4j.properties │ │ │ ├── mock-iaas.xml │ │ │ ├── mqtttopic.properties │ │ │ ├── multitenancy │ │ │ │ ├── cloud-services-desc.xml │ │ │ │ ├── features-dashboard.xml │ │ │ │ ├── multitenancy-packages.xml │ │ │ │ ├── stratos.xml │ │ │ │ ├── tenant-reg-agent.xml │ │ │ │ └── usage-throttling-agent-config.xml │ │ │ ├── registry.xml │ │ │ ├── security │ │ │ │ ├── application-authentication.xml │ │ │ │ ├── authenticators.xml │ │ │ │ ├── cipher-text.properties │ │ │ │ ├── cipher-tool.properties │ │ │ │ └── client-truststore.jks │ │ │ ├── siddhi │ │ │ │ └── siddhi.extension │ │ │ ├── sso-idp-config.xml │ │ │ ├── tenant-mgt.xml │ │ │ ├── thrift-client-config.xml │ │ │ └── user-mgt.xml │ │ │ ├── license │ │ │ └── LICENSE │ │ │ ├── notice │ │ │ └── NOTICE │ │ │ ├── partitions │ │ │ └── partitions.xml │ │ │ └── temp-artifacts │ │ │ ├── carbon │ │ │ ├── module.xml │ │ │ └── scripts │ │ │ │ ├── registry │ │ │ │ ├── artifacts.js │ │ │ │ ├── registry-osgi.js │ │ │ │ ├── registry-ws.js │ │ │ │ └── registry.js │ │ │ │ ├── server │ │ │ │ ├── config.js │ │ │ │ ├── osgi.js │ │ │ │ ├── server.js │ │ │ │ └── tenant.js │ │ │ │ └── user │ │ │ │ ├── registry-space.js │ │ │ │ ├── space.js │ │ │ │ ├── user-manager.js │ │ │ │ └── user.js │ │ │ ├── org.jaggeryjs.hostobjects.xhr_0.9.0.ALPHA4_wso2v1.jar │ │ │ ├── org.wso2.store.sso.common_1.0.0.jar │ │ │ ├── org.wso2.stratos.identity.saml2.sso.mgt_2.2.0.jar │ │ │ └── sso │ │ │ ├── module.xml │ │ │ └── scripts │ │ │ └── sso.client.js │ ├── integration │ │ ├── pom.xml │ │ ├── src │ │ │ └── test │ │ │ │ ├── java │ │ │ │ └── org │ │ │ │ │ └── apache │ │ │ │ │ └── stratos │ │ │ │ │ └── integration │ │ │ │ │ └── tests │ │ │ │ │ └── application │ │ │ │ │ ├── ApplicationBurstingTest.java │ │ │ │ │ └── ApplicationUpdateTest.java │ │ │ │ └── resources │ │ │ │ ├── common │ │ │ │ └── log4j.properties │ │ │ │ ├── group-startup-order-test │ │ │ │ ├── application-policies │ │ │ │ │ └── application-policy-application-bursting-test.json │ │ │ │ ├── applications │ │ │ │ │ └── app-bursting-single-cartriddge-group.json │ │ │ │ ├── cartridges-groups │ │ │ │ │ └── esb-php-group-application-bursting-test.json │ │ │ │ ├── deployment-policies │ │ │ │ │ └── deployment-policy-application-bursting-test.json │ │ │ │ └── startup-order-termination-behavior │ │ │ │ │ ├── RegionOne.json │ │ │ │ │ ├── application-martin.json │ │ │ │ │ ├── application-policy-1.json │ │ │ │ │ ├── application-s-g-c1-c2-c3-s.json │ │ │ │ │ ├── application.json │ │ │ │ │ ├── c1.json │ │ │ │ │ ├── c2.json │ │ │ │ │ ├── c3.json │ │ │ │ │ ├── c4.json │ │ │ │ │ ├── c5.json │ │ │ │ │ ├── cartridge-groups-s-g-c1-c2-c3-s.json │ │ │ │ │ ├── cartridge-groups-working.json │ │ │ │ │ ├── cartridge-groups.json │ │ │ │ │ ├── cartridge-groups.json.back │ │ │ │ │ ├── deploy.sh │ │ │ │ │ ├── economy-policy.json │ │ │ │ │ ├── static-1.json │ │ │ │ │ ├── wso2carbon 2.log │ │ │ │ │ ├── wso2carbon-working 2.log │ │ │ │ │ ├── wso2carbon-working.log │ │ │ │ │ └── wso2carbon.log │ │ │ │ └── tenant │ │ │ │ ├── tenant1.json │ │ │ │ └── tenant2.json │ │ ├── test-common │ │ │ ├── pom.xml │ │ │ └── src │ │ │ │ └── main │ │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── integration │ │ │ │ └── common │ │ │ │ ├── RestConstants.java │ │ │ │ ├── ServerLogClient.java │ │ │ │ ├── StratosTestServerManager.java │ │ │ │ ├── TopologyHandler.java │ │ │ │ ├── Util.java │ │ │ │ ├── extensions │ │ │ │ └── StratosServerExtension.java │ │ │ │ └── rest │ │ │ │ ├── ErrorResponse.java │ │ │ │ ├── HttpResponse.java │ │ │ │ ├── HttpResponseHandler.java │ │ │ │ ├── IntegrationMockClient.java │ │ │ │ ├── RestClient.java │ │ │ │ └── WebClientWrapper.java │ │ └── test-integration │ │ │ ├── pom.xml │ │ │ ├── run-smoke-test.sh │ │ │ └── src │ │ │ └── test │ │ │ ├── java │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── stratos │ │ │ │ └── integration │ │ │ │ └── tests │ │ │ │ ├── StratosIntegrationTest.java │ │ │ │ ├── adc │ │ │ │ └── GitHookTestCase.java │ │ │ │ ├── application │ │ │ │ ├── ApplicationBurstingTestCase.java │ │ │ │ ├── ApplicationStartupOrderTestCase.java │ │ │ │ ├── ApplicationUpdateTestCase.java │ │ │ │ ├── GroupStartupOrderTestCase.java │ │ │ │ ├── GroupTerminationBehaviorTestCase.java │ │ │ │ ├── MetadataServiceTestCase.java │ │ │ │ ├── PartitionOneAfterAnotherClusterTestCase.java │ │ │ │ ├── PartitionRoundRobinClusterTestCase.java │ │ │ │ ├── SampleApplicationStartupTestCase.java │ │ │ │ ├── SampleApplicationsTestCase.java │ │ │ │ └── SingleClusterScalingTestCase.java │ │ │ │ ├── cartridge │ │ │ │ ├── CartridgeGroupTestCase.java │ │ │ │ └── CartridgeTestCase.java │ │ │ │ ├── iaas │ │ │ │ ├── IaaSProviderTestCase.java │ │ │ │ └── IaasProviderAttributeTestCase.java │ │ │ │ ├── policies │ │ │ │ ├── ApplicationPolicyTestCase.java │ │ │ │ ├── AutoscalingPolicyTestCase.java │ │ │ │ ├── DeploymentPolicyTestCase.java │ │ │ │ └── NetworkPartitionTestCase.java │ │ │ │ ├── server │ │ │ │ └── StratosServerRestartTestCase.java │ │ │ │ └── users │ │ │ │ ├── TenantTestCase.java │ │ │ │ └── UserTestCase.java │ │ │ └── resources │ │ │ ├── application-bursting-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-application-bursting-test.json │ │ │ ├── applications │ │ │ │ └── application-bursting-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-application-bursting-test.json │ │ │ ├── cartridges-groups │ │ │ │ └── esb-php-group-application-bursting-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ ├── esb-application-bursting-test.json │ │ │ │ │ ├── php-application-bursting-test.json │ │ │ │ │ └── tomcat-application-bursting-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-application-bursting-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ ├── network-partition-application-bursting-test-1.json │ │ │ │ └── network-partition-application-bursting-test-2.json │ │ │ ├── application-policy-test │ │ │ ├── application-policies │ │ │ │ ├── application-policy-application-policy-test-1.json │ │ │ │ ├── application-policy-application-policy-test-2.json │ │ │ │ └── application-policy-application-policy-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ ├── network-partition-application-policy-test-1.json │ │ │ │ └── network-partition-application-policy-test-2.json │ │ │ ├── application-startup-order-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-application-startup-order-test.json │ │ │ ├── applications │ │ │ │ └── application-startup-order-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-application-startup-order-test.json │ │ │ ├── cartridges-groups │ │ │ │ ├── app-group-application-startup-order-test.json │ │ │ │ └── db-group-application-startup-order-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ ├── esb-application-startup-order-test.json │ │ │ │ │ ├── mysql-application-startup-order-test.json │ │ │ │ │ ├── php-application-startup-order-test.json │ │ │ │ │ ├── postgres-application-startup-order-test.json │ │ │ │ │ └── tomcat-application-startup-order-test.json │ │ │ ├── deployment-policies │ │ │ │ ├── deployment-policy-1-application-startup-order-test.json │ │ │ │ └── deployment-policy-2-application-startup-order-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ ├── network-partition-1-application-startup-order-test.json │ │ │ │ └── network-partition-2-application-startup-order-test.json │ │ │ ├── application-update-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-application-update-test.json │ │ │ ├── applications │ │ │ │ ├── g-sc-G123-1-application-update-test-v1.json │ │ │ │ └── g-sc-G123-1-application-update-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-application-update-test.json │ │ │ ├── cartridges-groups │ │ │ │ └── cartridge-nested-application-update-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ ├── c1-application-update-test.json │ │ │ │ │ ├── c2-application-update-test.json │ │ │ │ │ └── c3-application-update-test.json │ │ │ ├── deployment-policies │ │ │ │ ├── deployment-policy-application-update-test-v1.json │ │ │ │ └── deployment-policy-application-update-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ ├── network-partition-application-update-test-1-v1.json │ │ │ │ ├── network-partition-application-update-test-1.json │ │ │ │ └── network-partition-application-update-test-2.json │ │ │ ├── automation.xml │ │ │ ├── automationSchema.xsd │ │ │ ├── autoscaling-policy-test │ │ │ └── autoscaling-policies │ │ │ │ ├── autoscaling-policy-autoscaling-policy-test-1.json │ │ │ │ ├── autoscaling-policy-autoscaling-policy-test-2.json │ │ │ │ ├── autoscaling-policy-autoscaling-policy-test-v1.json │ │ │ │ └── autoscaling-policy-autoscaling-policy-test.json │ │ │ ├── cartridge-group-test │ │ │ ├── cartridges-groups │ │ │ │ ├── g4-g5-g6-cartridge-group-test-v1.json │ │ │ │ ├── g4-g5-g6-cartridge-group-test.json │ │ │ │ ├── group-1-cartridge-group-test.json │ │ │ │ └── group-2-cartridge-group-test.json │ │ │ └── cartridges │ │ │ │ └── mock │ │ │ │ ├── c4-cartridge-group-test.json │ │ │ │ ├── c5-cartridge-group-test.json │ │ │ │ └── c6-cartridge-group-test.json │ │ │ ├── cartridge-iaas-attribute-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-iaasprovider-attribute-test.json │ │ │ ├── applications │ │ │ │ └── app-iaasprovider-attribute-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-iaasprovider-attribute-test.json │ │ │ ├── cartridges │ │ │ │ ├── cartridge-iaasprovider-attribute-test-updated.json │ │ │ │ └── cartridge-iaasprovider-attribute-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-iaasprovider-attribute-test.json │ │ │ └── network-partitions │ │ │ │ └── network-partition-iaasprovider-attribute-test.json │ │ │ ├── cartridge-test │ │ │ └── cartridges │ │ │ │ └── mock │ │ │ │ ├── c0-cartridge-test-v1.json │ │ │ │ ├── c0-cartridge-test.json │ │ │ │ ├── c1-cartridge-test.json │ │ │ │ └── c2-cartridge-test.json │ │ │ ├── common │ │ │ ├── JMSOutputAdaptor.xml │ │ │ ├── autoscaler.xml │ │ │ ├── cartridge-config.properties │ │ │ ├── cloud-controller.xml │ │ │ ├── identity.xml │ │ │ ├── jndi.properties │ │ │ ├── log4j.properties │ │ │ ├── mock-iaas.xml │ │ │ ├── scaling.drl │ │ │ └── thrift-client-config.xml │ │ │ ├── deployment-policy-test │ │ │ ├── deployment-policies │ │ │ │ ├── deployment-policy-deployment-policy-test-1.json │ │ │ │ ├── deployment-policy-deployment-policy-test-2.json │ │ │ │ ├── deployment-policy-deployment-policy-test-v1.json │ │ │ │ └── deployment-policy-deployment-policy-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ ├── network-partition-deployment-policy-test-1-v1.json │ │ │ │ ├── network-partition-deployment-policy-test-1.json │ │ │ │ └── network-partition-deployment-policy-test-2.json │ │ │ ├── filters.txt │ │ │ ├── git-hook-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-git-hook-test.json │ │ │ ├── applications │ │ │ │ └── git-hook-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-git-hook-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ └── c1-git-hook-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-git-hook-test.json │ │ │ ├── hook-req.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ └── network-partition-git-hook-test.json │ │ │ ├── group-startup-order-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-group-startup-order-test.json │ │ │ ├── applications │ │ │ │ └── group-startup-order-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-group-startup-order-test.json │ │ │ ├── cartridges-groups │ │ │ │ ├── group6-group-startup-order-test.json │ │ │ │ └── group8-group-startup-order-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ ├── esb-group-startup-order-test.json │ │ │ │ │ ├── php-group-startup-order-test.json │ │ │ │ │ ├── stratos-lb-group-startup-order-test.json │ │ │ │ │ ├── tomcat-group-startup-order-test.json │ │ │ │ │ ├── tomcat1-group-startup-order-test.json │ │ │ │ │ ├── tomcat2-group-startup-order-test.json │ │ │ │ │ └── tomcat3-group-startup-order-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-group-startup-order-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ └── network-partition-group-startup-order-test-1.json │ │ │ ├── group-termination-behavior-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-group-termination-behavior-test.json │ │ │ ├── applications │ │ │ │ └── group-termination-behavior-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-group-termination-behavior-test.json │ │ │ ├── cartridges-groups │ │ │ │ └── cartridge-groups-group-termination-behavior-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ ├── c1-group-termination-behavior-test.json │ │ │ │ │ ├── c2-group-termination-behavior-test.json │ │ │ │ │ ├── c3-group-termination-behavior-test.json │ │ │ │ │ └── c4-group-termination-behavior-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-group-termination-behavior-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ └── network-partition-group-termination-behavior-test-1.json │ │ │ ├── instrumentation.txt │ │ │ ├── keystores │ │ │ └── products │ │ │ │ ├── client-truststore.jks │ │ │ │ ├── userRP.jks │ │ │ │ └── wso2carbon.jks │ │ │ ├── log4j.properties │ │ │ ├── metadata-service-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-metadata-service-test.json │ │ │ ├── applications │ │ │ │ ├── application-metadata-service-test-1.json │ │ │ │ └── application-metadata-service-test-2.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-metadata-service-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ └── c1-application-metadata-service-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-metadata-service-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ └── network-partition-metadata-service-test.json │ │ │ ├── network-partition-test │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ ├── network-partition-network-partition-test-1.json │ │ │ │ ├── network-partition-network-partition-test-2.json │ │ │ │ ├── network-partition-network-partition-test-v1.json │ │ │ │ └── network-partition-network-partition-test.json │ │ │ ├── partition-round-robin-cluster-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-partition-round-robin-test.json │ │ │ ├── applications │ │ │ │ └── partition-round-robin-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-partition-round-robin-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ └── c7-partition-round-robin-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-partition-round-robin-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ └── network-partition-partition-round-robin-test.json │ │ │ ├── sample-application-startup-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-sample-application-startup-test.json │ │ │ ├── applications │ │ │ │ └── sample-application-startup-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-sample-application-startup-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ └── c1-sample-application-startup-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-sample-application-startup-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ └── network-partition-sample-application-startup-test.json │ │ │ ├── sample-applications-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-sample-applications-test.json │ │ │ ├── applications │ │ │ │ ├── g-sc-G123-1-sample-applications-test-v1.json │ │ │ │ ├── g-sc-G123-1-sample-applications-test.json │ │ │ │ ├── sample-applications-test-1.json │ │ │ │ └── sample-applications-test-2.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-sample-applications-test.json │ │ │ ├── cartridges-groups │ │ │ │ └── cartridge-nested-sample-applications-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ ├── c1-sample-applications-test.json │ │ │ │ │ ├── c2-sample-applications-test.json │ │ │ │ │ └── c3-sample-applications-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-sample-applications-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ ├── network-partition-sample-applications-test-1.json │ │ │ │ └── network-partition-sample-applications-test-2.json │ │ │ ├── single-cluster-scaling-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-single-cluster-scaling-test.json │ │ │ ├── applications │ │ │ │ └── single-cluster-scaling-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-single-cluster-scaling-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ └── c7-single-cluster-scaling-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-single-cluster-scaling-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ └── network-partition-single-cluster-scaling-test.json │ │ │ ├── stratos-server-restart-test │ │ │ ├── application-policies │ │ │ │ └── application-policy-stratos-server-restart-test.json │ │ │ ├── applications │ │ │ │ └── stratos-server-restart-test.json │ │ │ ├── autoscaling-policies │ │ │ │ └── autoscaling-policy-stratos-server-restart-test.json │ │ │ ├── cartridges │ │ │ │ └── mock │ │ │ │ │ └── c1-stratos-server-restart-test.json │ │ │ ├── deployment-policies │ │ │ │ └── deployment-policy-stratos-server-restart-test.json │ │ │ └── network-partitions │ │ │ │ └── mock │ │ │ │ └── network-partition-stratos-server-restart-test.json │ │ │ ├── test-suite-all.xml │ │ │ ├── test-suite-smoke.xml │ │ │ └── user-test │ │ │ ├── tenant-1.json │ │ │ ├── user-1-v1.json │ │ │ └── user-1.json │ └── p2-profile-gen │ │ ├── carbon.product │ │ └── pom.xml │ └── pom.xml ├── samples ├── README.md ├── application-policies │ ├── application-policy-1.json │ ├── application-policy-2.json │ ├── application-policy-3.json │ ├── application-policy-4.json │ ├── application-policy-5.json │ └── multi-cloud-application-policy.json ├── applications │ ├── complex │ │ ├── php-tomcat-group-postgres-mysql-group-esb │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ │ └── application.json │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── add-domain-mappings.sh │ │ │ │ ├── add-network-partition.sh │ │ │ │ ├── deploy.sh │ │ │ │ ├── get-application-runtime.sh │ │ │ │ ├── list-domain-mappings.sh │ │ │ │ ├── list-network-partition.sh │ │ │ │ ├── undeploy.sh │ │ │ │ └── update-deployment-policy.sh │ │ │ │ └── mock │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ ├── tomcat-single-signon │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ │ └── application.json │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── ec2 │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── kubernetes │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── mock │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ └── openstack │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ └── wordpress-app │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ └── application.json │ │ │ └── scripts │ │ │ ├── common │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── ec2 │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── kubernetes │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── mock │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ └── openstack │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ ├── nested │ │ ├── complex-app-with-lb │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ │ └── application.json │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── ec2 │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── kubernetes │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── mock │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ └── openstack │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ ├── esb-php-nested-with-esb-php-nested-with-mysql-php-app │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ │ └── application.json │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── ec2 │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── kubernetes │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── mock │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ └── openstack │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ ├── five-levels-nested-groups-app │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ │ └── application.json │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── ec2 │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── kubernetes │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── mock │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ └── openstack │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ ├── single-level-nested-group-app │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ │ └── application.json │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── deploy.sh │ │ │ │ ├── undeploy.sh │ │ │ │ ├── update-deployment-policy.sh │ │ │ │ └── update-network-partition.sh │ │ │ │ ├── ec2 │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── kubernetes │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── mock │ │ │ │ ├── deploy.sh │ │ │ │ ├── undeploy.sh │ │ │ │ └── update-network-partition.sh │ │ │ │ └── openstack │ │ │ │ ├── deploy.sh │ │ │ │ ├── undeploy.sh │ │ │ │ └── update-network-partition.sh │ │ └── single-level-nested-groups-app │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ ├── application.json │ │ │ ├── autoscaling-policy.json │ │ │ └── deployment-policy.json │ │ │ └── scripts │ │ │ ├── common │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── ec2 │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── kubernetes │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── mock │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ └── openstack │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ ├── scaling │ │ ├── app-bursting-pattern │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ │ ├── application-signup.json │ │ │ │ ├── application.json │ │ │ │ └── domain-mappings.json │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── ec2 │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── kubernetes │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── mock │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ └── openstack │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ ├── dependent-scaling │ │ │ ├── sample-cartridges │ │ │ │ ├── README.md │ │ │ │ ├── artifacts │ │ │ │ │ └── application.json │ │ │ │ └── scripts │ │ │ │ │ ├── common │ │ │ │ │ ├── deploy.sh │ │ │ │ │ └── undeploy.sh │ │ │ │ │ ├── ec2 │ │ │ │ │ ├── deploy.sh │ │ │ │ │ └── undeploy.sh │ │ │ │ │ ├── kubernetes │ │ │ │ │ ├── deploy.sh │ │ │ │ │ └── undeploy.sh │ │ │ │ │ ├── mock │ │ │ │ │ ├── deploy.sh │ │ │ │ │ └── undeploy.sh │ │ │ │ │ └── openstack │ │ │ │ │ ├── deploy.sh │ │ │ │ │ └── undeploy.sh │ │ │ └── sample-groups │ │ │ │ ├── README.md │ │ │ │ ├── artifacts │ │ │ │ └── application.json │ │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── ec2 │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── kubernetes │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── mock │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ └── openstack │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ └── group-scaling │ │ │ ├── group-scaling-app │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ │ └── application.json │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── ec2 │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── kubernetes │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── mock │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ └── openstack │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ ├── group-scaling-v1 │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ │ └── application.json │ │ │ └── scripts │ │ │ │ ├── common │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── ec2 │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── kubernetes │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ ├── mock │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ │ └── openstack │ │ │ │ ├── deploy.sh │ │ │ │ └── undeploy.sh │ │ │ └── single-group-group-scaling │ │ │ ├── README.md │ │ │ ├── artifacts │ │ │ └── application.json │ │ │ └── scripts │ │ │ ├── common │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── ec2 │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── kubernetes │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── mock │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ └── openstack │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ └── simple │ │ ├── single-cartridge-app-multi-cloud │ │ ├── README.md │ │ ├── artifacts │ │ │ └── application.json │ │ └── scripts │ │ │ ├── common │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ └── multi │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ ├── single-cartridge-app │ │ ├── README.md │ │ ├── artifacts │ │ │ ├── application-signup.json │ │ │ ├── application.json │ │ │ └── domain-mappings.json │ │ └── scripts │ │ │ ├── common │ │ │ ├── add-domain-mappings.sh │ │ │ ├── add-network-partition.sh │ │ │ ├── deploy.sh │ │ │ ├── get-application-runtime.sh │ │ │ ├── list-domain-mappings.sh │ │ │ ├── list-network-partition.sh │ │ │ ├── undeploy.sh │ │ │ ├── update-deployment-policy.sh │ │ │ └── update-network-partition.sh │ │ │ ├── ec2 │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── gce │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── kubernetes │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ ├── mock │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ │ └── openstack │ │ │ ├── deploy.sh │ │ │ └── undeploy.sh │ │ └── single-group-app │ │ ├── README.md │ │ ├── artifacts │ │ └── application.json │ │ └── scripts │ │ ├── common │ │ ├── deploy.sh │ │ └── undeploy.sh │ │ ├── ec2 │ │ ├── deploy.sh │ │ └── undeploy.sh │ │ ├── kubernetes │ │ ├── deploy.sh │ │ └── undeploy.sh │ │ ├── mock │ │ ├── deploy.sh │ │ └── undeploy.sh │ │ └── openstack │ │ ├── deploy.sh │ │ └── undeploy.sh ├── autoscaling-policies │ ├── autoscaling-policy-1.json │ ├── autoscaling-policy-c1.json │ ├── autoscaling-policy-c2.json │ ├── autoscaling-policy-c3.json │ └── autoscaling-policy-c4.json ├── cartridge-groups │ ├── app-group.json │ ├── db-group.json │ ├── esb-php-group.json │ ├── esb-php-nested-with-esb-php-nested-with-mysql-php.json │ ├── group1.json │ ├── group1b.json │ ├── group6c.json │ ├── group6c3.json │ ├── group6c4.json │ ├── group6c5.json │ ├── group6c6.json │ ├── group6c7.json │ ├── group8c.json │ ├── group8c3.json │ ├── mysql-php-group.json │ ├── n-level-nesting.json │ ├── tomcat-group.json │ └── tomcat2-group.json ├── cartridges │ ├── ec2 │ │ ├── c1.json │ │ ├── c2.json │ │ ├── c3.json │ │ ├── c4.json │ │ ├── esb.json │ │ ├── php.json │ │ ├── tomcat.json │ │ ├── tomcat1.json │ │ └── tomcat2.json │ ├── gce │ │ └── php.json │ ├── kubernetes │ │ ├── c1.json │ │ ├── c2.json │ │ ├── c3.json │ │ ├── c4.json │ │ ├── php-secret.json │ │ ├── php.json │ │ └── tomcat.json │ ├── mock │ │ ├── c1.json │ │ ├── c2.json │ │ ├── c3.json │ │ ├── c4.json │ │ ├── esb.json │ │ ├── mysql.json │ │ ├── php.json │ │ ├── postgres.json │ │ ├── stratos-lb.json │ │ ├── tomcat.json │ │ ├── tomcat1.json │ │ ├── tomcat2.json │ │ ├── tomcat3.json │ │ └── wso2-is.json │ ├── multi │ │ └── php.json │ └── openstack │ │ ├── c1.json │ │ ├── c2.json │ │ ├── c3.json │ │ ├── c4.json │ │ ├── esb.json │ │ ├── php.json │ │ ├── tomcat.json │ │ ├── tomcat1.json │ │ └── tomcat2.json ├── deployment-policies │ ├── deployment-policy-1.json │ ├── deployment-policy-2.json │ ├── deployment-policy-3.json │ ├── deployment-policy-4.json │ └── multi-cloud-deployment-policy.json ├── kubernetes-clusters │ ├── kubernetes-cluster-1.json │ ├── kubernetes-cluster-2.json │ └── kubernetes-cluster-ec2.json └── network-partitions │ ├── ec2 │ ├── network-partition-1.json │ └── network-partition-2.json │ ├── gce │ └── network-partition-1.json │ ├── kubernetes │ ├── network-partition-1.json │ ├── network-partition-2.json │ └── network-partition-3.json │ ├── mock │ ├── network-partition-1.json │ ├── network-partition-2.json │ ├── network-partition-3.json │ └── network-partition-4.json │ ├── multi │ ├── ap-southeast-1-nw-partition.json │ ├── ap-southeast-2-nw-partition.json │ └── openstack-nw-partition.json │ └── openstack │ ├── network-partition-1.json │ └── network-partition-2.json ├── service-stubs ├── org.apache.stratos.autoscaler.service.stub │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── AutoscalerService.wsdl ├── org.apache.stratos.cloud.controller.service.stub │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── CloudControllerService.wsdl ├── org.apache.stratos.manager.service.stub │ ├── pom.xml │ └── src │ │ └── main │ │ └── resources │ │ └── StratosManagerService.wsdl └── pom.xml └── tools ├── .gitmodules ├── code-quality └── Apache-Stratos-Sonar-Quality-Profile.xml ├── config-scripts ├── README.md ├── ec2 │ └── config.sh ├── gce │ └── config.sh └── openstack │ └── config.sh ├── docker-images ├── cartridge-docker-images │ ├── README.md │ ├── base-image │ │ ├── Dockerfile │ │ ├── files │ │ │ └── run │ │ └── packs │ │ │ └── .gitignore │ ├── build.sh │ └── service-images │ │ ├── php │ │ ├── Dockerfile │ │ ├── files │ │ │ ├── 000-default.conf │ │ │ └── apache2 │ │ │ │ ├── apache2.conf │ │ │ │ └── sites-available │ │ │ │ ├── default │ │ │ │ └── default-ssl │ │ └── plugins │ │ │ ├── PhpServerStarterPlugin.py │ │ │ └── PhpServerStarterPlugin.yapsy-plugin │ │ ├── tomcat-saml-sso │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── files │ │ │ ├── create-admin-user.sh │ │ │ └── env │ │ └── packs │ │ │ └── plugins │ │ │ ├── TomcatServerStarterPlugin.py │ │ │ ├── TomcatServerStarterPlugin.yapsy-plugin │ │ │ ├── TomcatWSO2ISMetadataPublisher.py │ │ │ └── TomcatWSO2ISMetadataPublisher.yapsy-plugin │ │ ├── tomcat │ │ ├── Dockerfile │ │ ├── files │ │ │ ├── create-admin-user.sh │ │ │ └── env │ │ ├── packs │ │ │ └── .gitignore │ │ └── plugins │ │ │ ├── TomcatServerStarterPlugin.py │ │ │ └── TomcatServerStarterPlugin.yapsy-plugin │ │ └── wso2is-saml-sso │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── files │ │ ├── carbon.xml │ │ ├── catalina-server.xml │ │ └── env │ │ └── packs │ │ └── plugins │ │ ├── WSO2ISMetaDataHandler.py │ │ └── WSO2ISMetaDataHandler.yapsy-plugin └── stratos-docker-images │ ├── README.md │ ├── activemq │ ├── Dockerfile │ ├── docker-build.sh │ └── docker-run.sh │ ├── bind │ ├── Dockerfile │ ├── README │ ├── docker-build.sh │ ├── run │ ├── run-example.sh │ └── zone_template │ ├── build-all.sh │ ├── mysql │ ├── Dockerfile │ ├── README.md │ ├── docker-build.sh │ ├── files │ │ └── .gitignore │ ├── my.cnf │ └── run │ ├── puppetmaster │ ├── Dockerfile │ ├── docker-build.sh │ ├── files │ │ └── .gitignore │ ├── run │ └── run-example.sh │ ├── puppettestnode │ ├── Dockerfile │ ├── docker-build.sh │ ├── run │ └── run-example.sh │ ├── push-all.sh │ ├── remove_stratos_images.sh │ ├── run-example.sh │ ├── run-nsenter.sh │ ├── stop_stratos_containers.sh │ └── stratos │ ├── Dockerfile │ ├── docker-build.sh │ ├── files │ └── .gitignore │ └── run ├── init-scripts ├── README.md ├── ec2 │ ├── centos │ │ └── init.sh │ └── ubuntu │ │ └── init.sh ├── gce │ └── init.sh ├── openstack │ ├── centos │ │ └── init.sh │ └── ubuntu │ │ └── init.sh └── vcloud │ └── init.sh ├── puppet3-agent ├── puppetinstall │ └── puppetinstall └── stratos_sendinfo.rb ├── puppet3 ├── auth.conf ├── autosign.conf ├── fileserver.conf ├── manifests │ ├── nodes.pp │ ├── nodes │ │ ├── base.pp │ │ ├── default.pp │ │ ├── haproxy.pp │ │ ├── jboss.pp │ │ ├── lb.pp │ │ ├── mysql.pp │ │ ├── nodejs.pp │ │ ├── php.pp │ │ ├── ruby.pp │ │ ├── tomcat.pp │ │ └── wordpress.pp │ └── site.pp ├── modules │ ├── agent │ │ ├── files │ │ │ ├── README.txt │ │ │ └── activemq │ │ │ │ └── README.txt │ │ ├── lib │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ └── difference.rb │ │ ├── manifests │ │ │ ├── init.pp │ │ │ ├── initialize.pp │ │ │ ├── push_templates.pp │ │ │ ├── remove_templates.pp │ │ │ └── start.pp │ │ └── templates │ │ │ ├── bin │ │ │ └── stratos.sh.erb │ │ │ ├── conf │ │ │ ├── jndi.properties.erb │ │ │ ├── log4j.properties.erb │ │ │ ├── mqtttopic.properties.erb │ │ │ └── templates │ │ │ │ └── jndi.properties.template.erb │ │ │ └── extensions │ │ │ ├── artifacts-copy.sh.erb │ │ │ ├── artifacts-updated.sh.erb │ │ │ ├── clean.sh.erb │ │ │ ├── complete-tenant.sh.erb │ │ │ ├── complete-topology.sh.erb │ │ │ ├── domain-mapping-added.sh.erb │ │ │ ├── domain-mapping-removed.sh.erb │ │ │ ├── instance-activated.sh.erb │ │ │ ├── instance-started.sh.erb │ │ │ ├── member-activated.sh.erb │ │ │ ├── member-started.sh.erb │ │ │ ├── member-suspended.sh.erb │ │ │ ├── member-terminated.sh.erb │ │ │ ├── mount-volumes.sh.erb │ │ │ └── start-servers.sh.erb │ ├── appserver │ │ ├── LICENSE │ │ ├── Modulefile │ │ ├── README │ │ ├── files │ │ │ ├── configs │ │ │ │ ├── README.txt │ │ │ │ └── repository │ │ │ │ │ └── components │ │ │ │ │ └── lib │ │ │ │ │ └── README.txt │ │ │ └── patches │ │ │ │ ├── README.txt │ │ │ │ └── repository │ │ │ │ └── components │ │ │ │ └── patches │ │ │ │ └── README.txt │ │ ├── lib │ │ │ └── facter │ │ │ │ └── java_home.rb │ │ ├── manifests │ │ │ ├── clean.pp │ │ │ ├── deploy.pp │ │ │ ├── init.pp │ │ │ ├── initialize.pp │ │ │ ├── params.pp │ │ │ ├── push_templates.pp │ │ │ └── start.pp │ │ └── templates │ │ │ ├── agent │ │ │ └── extensions │ │ │ │ ├── artifacts-copy.sh.erb │ │ │ │ ├── artifacts-updated.sh.erb │ │ │ │ ├── clean.sh.erb │ │ │ │ ├── complete-tenant.sh.erb │ │ │ │ ├── complete-topology.sh.erb │ │ │ │ ├── domain-mapping-added.sh.erb │ │ │ │ ├── domain-mapping-removed.sh.erb │ │ │ │ ├── instance-activated.sh.erb │ │ │ │ ├── instance-started.sh.erb │ │ │ │ ├── member-activated.sh.erb │ │ │ │ ├── member-started.sh.erb │ │ │ │ ├── member-suspended.sh.erb │ │ │ │ ├── member-terminated.sh.erb │ │ │ │ ├── mount-volumes.sh.erb │ │ │ │ └── start-servers.sh.erb │ │ │ └── conf │ │ │ ├── axis2 │ │ │ └── axis2.xml.erb │ │ │ ├── carbon.xml.erb │ │ │ ├── datasources │ │ │ ├── master-datasources.xml.erb │ │ │ └── master-datasources │ │ │ │ └── _remote.erb │ │ │ ├── log4j.properties.erb │ │ │ ├── registry.xml.erb │ │ │ ├── registry │ │ │ └── _remote.erb │ │ │ ├── security │ │ │ └── authenticators.xml.erb │ │ │ ├── tomcat │ │ │ └── catalina-server.xml.erb │ │ │ ├── user-mgt.xml.erb │ │ │ └── user-mgt │ │ │ ├── _roldap.erb │ │ │ └── _rwldap.erb │ ├── haproxy │ │ ├── files │ │ │ └── README.txt │ │ ├── manifests │ │ │ ├── init.pp │ │ │ ├── initialize.pp │ │ │ ├── push_templates.pp │ │ │ └── start.pp │ │ └── templates │ │ │ ├── bin │ │ │ └── haproxy-extension.sh.erb │ │ │ └── conf │ │ │ └── jndi.properties.erb │ ├── java │ │ ├── manifests │ │ │ └── init.pp │ │ └── templates │ │ │ └── java_home.sh.erb │ ├── jboss │ │ ├── files │ │ │ └── README.txt │ │ ├── manifests │ │ │ ├── as.pp │ │ │ ├── config.pp │ │ │ ├── extra_jars.pp │ │ │ ├── hornetq.pp │ │ │ ├── importssl.pp │ │ │ ├── init.pp │ │ │ ├── install.pp │ │ │ ├── service.pp │ │ │ └── user.pp │ │ └── templates │ │ │ ├── agent │ │ │ └── extensions │ │ │ │ └── artifacts-updated.sh.erb │ │ │ ├── hornetq │ │ │ └── run.erb │ │ │ └── jboss-as │ │ │ ├── jboss.properties.erb │ │ │ ├── run.erb │ │ │ └── standalone-full.xml.erb │ ├── lb │ │ ├── files │ │ │ ├── README.txt │ │ │ └── configs │ │ │ │ └── bin │ │ │ │ └── stratos.sh │ │ ├── manifests │ │ │ ├── clean.pp │ │ │ ├── deploy.pp │ │ │ ├── importssl.pp │ │ │ ├── init.pp │ │ │ ├── initialize.pp │ │ │ ├── params.pp │ │ │ ├── push_templates.pp │ │ │ └── start.pp │ │ └── templates │ │ │ ├── bin │ │ │ └── stratos.sh.erb │ │ │ └── conf │ │ │ ├── axis2 │ │ │ └── axis2.xml.erb │ │ │ ├── jndi.properties.erb │ │ │ ├── loadbalancer.conf.erb │ │ │ └── templates │ │ │ └── jndi.properties.template.erb │ ├── mysql │ │ ├── manifests │ │ │ └── init.pp │ │ └── templates │ │ │ ├── 000-default.erb │ │ │ ├── agent │ │ │ └── extensions │ │ │ │ └── instance-started.sh.erb │ │ │ ├── instance-activated.sh.erb │ │ │ ├── instance-started.sh.erb │ │ │ ├── my.cnf.erb │ │ │ ├── mysql_root_password_setter.sh.erb │ │ │ ├── phpMyAdmin.conf.erb │ │ │ └── publish-metadata.py.erb │ ├── nodejs │ │ ├── manifests │ │ │ └── init.pp │ │ └── templates │ │ │ └── agent │ │ │ └── extensions │ │ │ └── start-servers.sh.erb │ ├── php │ │ ├── files │ │ │ ├── 90forceyes │ │ │ └── agent │ │ │ │ └── plugins │ │ │ │ ├── PhpServerStarterPlugin.py │ │ │ │ └── PhpServerStarterPlugin.yapsy-plugin │ │ ├── lib │ │ │ └── facter │ │ │ │ └── stratos_facts.rb │ │ ├── manifests │ │ │ ├── importssl.pp │ │ │ └── init.pp │ │ └── templates │ │ │ ├── agent │ │ │ └── extensions │ │ │ │ └── artifacts-updated.sh.erb │ │ │ ├── apache2 │ │ │ ├── apache2.conf.erb │ │ │ └── sites-available │ │ │ │ ├── default-ssl.erb │ │ │ │ └── default.erb │ │ │ └── httpd │ │ │ └── httpd.conf.erb │ ├── python_agent │ │ ├── files │ │ │ └── README.txt │ │ ├── lib │ │ │ └── puppet │ │ │ │ └── parser │ │ │ │ └── functions │ │ │ │ └── difference.rb │ │ ├── manifests │ │ │ ├── copy_plugins.pp │ │ │ ├── init.pp │ │ │ ├── initialize.pp │ │ │ ├── push_templates.pp │ │ │ ├── remove_templates.pp │ │ │ └── start.pp │ │ └── templates │ │ │ ├── agent.conf.erb │ │ │ ├── extensions │ │ │ ├── artifacts-copy.sh.erb │ │ │ ├── artifacts-updated.sh.erb │ │ │ ├── clean.sh.erb │ │ │ ├── complete-tenant.sh.erb │ │ │ ├── complete-topology.sh.erb │ │ │ ├── domain-mapping-added.sh.erb │ │ │ ├── domain-mapping-removed.sh.erb │ │ │ ├── instance-activated.sh.erb │ │ │ ├── instance-started.sh.erb │ │ │ ├── member-activated.sh.erb │ │ │ ├── member-started.sh.erb │ │ │ ├── member-suspended.sh.erb │ │ │ ├── member-terminated.sh.erb │ │ │ ├── mount-volumes.sh.erb │ │ │ └── start-servers.sh.erb │ │ │ └── logging.ini.erb │ ├── ruby │ │ ├── manifests │ │ │ └── init.pp │ │ └── templates │ │ │ ├── agent │ │ │ └── extensions │ │ │ │ └── instance-started.sh.erb │ │ │ └── ruby-start.sh.erb │ ├── stratos_base │ │ └── manifests │ │ │ └── init.pp │ ├── tomcat │ │ ├── manifests │ │ │ └── init.pp │ │ └── templates │ │ │ ├── server.xml.erb │ │ │ └── tomcat.erb │ └── wordpress │ │ ├── manifests │ │ └── init.pp │ │ └── templates │ │ └── httpd │ │ └── httpd.conf.erb └── puppet.conf ├── services ├── centos │ ├── README │ └── daemon_service └── ubuntu │ ├── README │ └── daemon_service └── stratos-installer ├── LICENSE.txt ├── README.md ├── clean.sh ├── conf └── setup.conf ├── ec2.sh ├── gce.sh ├── kubernetes.sh ├── mock_iaas.sh ├── openstack.sh ├── resources ├── application-mysql.sql ├── mysql.sql └── security-mysql.sql ├── setup.sh ├── start-servers.sh ├── templates ├── activemq │ └── jndi.properties ├── autoscaler.xml ├── cartridge-config.properties ├── cloud-controller.xml ├── datasources │ ├── master-datasources.xml │ └── stratos-datasources.xml ├── identity.xml ├── jndi.properties ├── security │ └── application-authentication.xml └── wso2mb │ └── jndi.properties └── vcloud.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/README.md -------------------------------------------------------------------------------- /components/org.apache.stratos.autoscaler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.autoscaler/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.autoscaler/src/test/resources/autoscaler.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.autoscaler/src/test/resources/autoscaler.drl -------------------------------------------------------------------------------- /components/org.apache.stratos.autoscaler/src/test/resources/autoscaler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.autoscaler/src/test/resources/autoscaler.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.autoscaler/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.autoscaler/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /components/org.apache.stratos.autoscaler/src/test/resources/partition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.autoscaler/src/test/resources/partition.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.autoscaler/src/test/resources/partitions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.autoscaler/src/test/resources/partitions.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.cartridge.agent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cartridge.agent/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/README.md -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/main/assembly/src.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/main/assembly/src.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/main/resources/Resources.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/main/resources/Resources.properties -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/main/resources/wso2carbon.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/main/resources/wso2carbon.jks -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/test/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/test/python/.gitignore -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/test/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/test/python/README.md -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/test/python/__files/body_cookie.json: -------------------------------------------------------------------------------- 1 | {"Success":{ "sessionId": "BD425955D0F64102B3C67B39D0C946F0"}} -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/test/python/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/test/python/__init__.py -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/test/python/mappings/cookie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/test/python/mappings/cookie.json -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/test/python/mappings/tenant-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/test/python/mappings/tenant-list.json -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/test/python/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/test/python/test_common.py -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/test/python/test_interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/test/python/test_interactive.py -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/test/python/test_noninteractive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/test/python/test_noninteractive.py -------------------------------------------------------------------------------- /components/org.apache.stratos.cli/src/test/python/wiremock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cli/src/test/python/wiremock.py -------------------------------------------------------------------------------- /components/org.apache.stratos.cloud.controller/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.cloud.controller/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.common/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.custom.handlers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.custom.handlers/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.kubernetes.client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.kubernetes.client/README.md -------------------------------------------------------------------------------- /components/org.apache.stratos.kubernetes.client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.kubernetes.client/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.load.balancer.common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.load.balancer.common/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.load.balancer.extension.api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.load.balancer.extension.api/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.load.balancer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.load.balancer/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/.gitignore -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/LICENSE -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/README.md -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/app.js -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/applications.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/applications.jag -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/applications_form.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/applications_form.jag -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/config/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/config/console.js -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/config/console.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/config/console.json -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/configure.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/configure.jag -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/configure_form.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/configure_form.jag -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/errorhtml/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/errorhtml/error.html -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/index.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/index.jag -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/jaggery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/jaggery.conf -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/login.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/login.jag -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/modules/pinch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/modules/pinch.min.js -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/themes/theme0/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/themes/theme0/theme.js -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/users.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/users.jag -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/users_form.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/users_form.jag -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/console/wizard.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/console/wizard.jag -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/modules/console/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/modules/console/module.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.console/sso/views/login.jag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.console/sso/views/login.jag -------------------------------------------------------------------------------- /components/org.apache.stratos.manager.styles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager.styles/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.manager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.manager/src/main/resources/policies.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager/src/main/resources/policies.xsd -------------------------------------------------------------------------------- /components/org.apache.stratos.manager/src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.manager/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /components/org.apache.stratos.messaging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.messaging/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.messaging/src/test/resources/jndi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.messaging/src/test/resources/jndi.properties -------------------------------------------------------------------------------- /components/org.apache.stratos.metadata.client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.metadata.client/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.metadata.service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.metadata.service/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.mock.iaas.api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.mock.iaas.api/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.mock.iaas.client/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.mock.iaas.client/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.mock.iaas/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.mock.iaas/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.mock.iaas/src/test/resources/jndi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.mock.iaas/src/test/resources/jndi.properties -------------------------------------------------------------------------------- /components/org.apache.stratos.mock.iaas/src/test/resources/mock-iaas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.mock.iaas/src/test/resources/mock-iaas.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cartridge.agent/.gitignore: -------------------------------------------------------------------------------- 1 | cartridge-agent.log 2 | -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cartridge.agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cartridge.agent/README.md -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cartridge.agent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cartridge.agent/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cartridge.agent/src/main/python/cartridge.agent/cartridge.agent/terminator.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/README.md: -------------------------------------------------------------------------------- 1 | #Python based CLI for Apache Stratos 2 | -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/pom.xml -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/.gitignore -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/README.md -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/cli/__init__.py -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/cli/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/cli/cli.py -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/cli/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/cli/config.py -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/cli/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/cli/exception.py -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/cli/logutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/cli/logutils.py -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/cli/main.py -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/cli/restclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/cli/restclient.py -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/cli/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/cli/utils.py -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/tests/CLITest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/tests/CLITest.py -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/tests/__init__.py -------------------------------------------------------------------------------- /components/org.apache.stratos.python.cli/src/main/python/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.python.cli/src/main/python/tox.ini -------------------------------------------------------------------------------- /components/org.apache.stratos.rest.endpoint/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/org.apache.stratos.rest.endpoint/pom.xml -------------------------------------------------------------------------------- /components/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/components/pom.xml -------------------------------------------------------------------------------- /dependencies/fabric8/kubernetes-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/fabric8/kubernetes-api/README.md -------------------------------------------------------------------------------- /dependencies/fabric8/kubernetes-api/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/fabric8/kubernetes-api/pom.xml -------------------------------------------------------------------------------- /dependencies/fabric8/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/fabric8/pom.xml -------------------------------------------------------------------------------- /dependencies/guice-assistedinject/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/guice-assistedinject/pom.xml -------------------------------------------------------------------------------- /dependencies/guice-multibindings/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/guice-multibindings/pom.xml -------------------------------------------------------------------------------- /dependencies/guice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/guice/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/README.txt -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/main/clojure/org/jclouds/aws/ec2.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/main/clojure/org/jclouds/aws/ec2.clj -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/clojure/org/jclouds/aws/ec2_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/clojure/org/jclouds/aws/ec2_test.clj -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/alestic_canonical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/alestic_canonical.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/amzn_images.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/amzn_images.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/describe_images_cc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/describe_images_cc.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/describe_instances_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/describe_instances_1.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/describe_instances_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/describe_instances_2.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/describe_instances_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/describe_instances_3.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/describe_spot_instance.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/describe_spot_instance.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/monitoring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/monitoring.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/request_spot_instances.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/request_spot_instances.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/rightscale_images.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/rightscale_images.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/run_instances_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/run_instances_1.xml -------------------------------------------------------------------------------- /dependencies/jclouds/aws-ec2/src/test/resources/vostok.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/aws-ec2/src/test/resources/vostok.xml -------------------------------------------------------------------------------- /dependencies/jclouds/cloudstack/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/cloudstack/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/ec2/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/ec2/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/google-jclouds-labs/google-cloud-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/google-jclouds-labs/google-cloud-storage/README.md -------------------------------------------------------------------------------- /dependencies/jclouds/google-jclouds-labs/google-cloud-storage/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/google-jclouds-labs/google-cloud-storage/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/google-jclouds-labs/google-compute-engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/google-jclouds-labs/google-compute-engine/README.md -------------------------------------------------------------------------------- /dependencies/jclouds/google-jclouds-labs/google-compute-engine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/google-jclouds-labs/google-compute-engine/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/google-jclouds-labs/googlecloud/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/google-jclouds-labs/googlecloud/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/google-jclouds-labs/oauth/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/google-jclouds-labs/oauth/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/google-jclouds-labs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/google-jclouds-labs/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/jclouds-blobstore/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/jclouds-blobstore/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/jclouds-bouncycastle/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/jclouds-bouncycastle/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/jclouds-compute/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/jclouds-compute/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/jclouds-core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/jclouds-core/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/jclouds-enterprise/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/jclouds-enterprise/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/jclouds-joda/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/jclouds-joda/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/jclouds-netty/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/jclouds-netty/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/jclouds-sshj/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/jclouds-sshj/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/openstack-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/openstack-common/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/openstack-keystone/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/openstack-keystone/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/openstack-neutron/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/openstack-neutron/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/openstack-nova/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/openstack-nova/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/pom.xml -------------------------------------------------------------------------------- /dependencies/jclouds/sts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/jclouds/sts/pom.xml -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/pom.xml -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/java/org/wso2/carbon/ui/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/java/org/wso2/carbon/ui/Utils.java -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/FileDownloadService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/FileDownloadService.wsdl -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/FileUploadService.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/FileUploadService.wsdl -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/LoggedUserInfoAdmin.wsdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/LoggedUserInfoAdmin.wsdl -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/c.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/c.tld -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/fmt.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/fmt.tld -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/fn.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/fn.tld -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/json.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/json.tld -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/sql.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/sql.tld -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/x.tld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/tlds/x.tld -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/WEB-INF/web.xml -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/css/global.css -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/error.jsp -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/1px.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/1px.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/add.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/atom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/atom.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/copy.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/edit.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/help.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/move.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/move.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/oops.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/oops.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/rss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/rss.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/star.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/user.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/images/view.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/index.jsp -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/WSRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/WSRequest.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/cookies.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/excanvas.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/jquery.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/main.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/template.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/js/widgets.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/admin/login.jsp -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/ajax/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/ajax/js/all.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/ajax/js/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/ajax/js/prototype.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/ajax/js/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/ajax/js/readme.txt -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/dialog/css/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/dialog/css/dialog.css -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/dialog/img/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/dialog/img/error.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/dialog/img/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/dialog/img/info.gif -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/dialog/js/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/dialog/js/dialog.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/docs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/docs/about.html -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/docs/images/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/docs/images/login.png -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/edit_area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/edit_area.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/highlight.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/keyboard.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/bg.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/cs.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/de.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/dk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/dk.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/en.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/eo.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/es.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/fi.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/fr.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/hr.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/it.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/ja.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/mk.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/nl.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/pl.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/pt.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/ru.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/langs/sk.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/plugins/test/test2.js: -------------------------------------------------------------------------------- 1 | alert("test2.js is loaded from test plugin"); 2 | -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/editarea/regexp.js -------------------------------------------------------------------------------- /dependencies/org.wso2.carbon.ui/src/main/resources/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/org.wso2.carbon.ui/src/main/resources/web/index.html -------------------------------------------------------------------------------- /dependencies/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/pom.xml -------------------------------------------------------------------------------- /dependencies/rocoto/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/rocoto/pom.xml -------------------------------------------------------------------------------- /dependencies/sshj/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/dependencies/sshj/pom.xml -------------------------------------------------------------------------------- /doap_Stratos.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/doap_Stratos.rdf -------------------------------------------------------------------------------- /extensions/cep/modules/distribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/cep/modules/distribution/README.md -------------------------------------------------------------------------------- /extensions/cep/modules/distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/cep/modules/distribution/pom.xml -------------------------------------------------------------------------------- /extensions/cep/modules/distribution/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/cep/modules/distribution/src/assembly/bin.xml -------------------------------------------------------------------------------- /extensions/cep/modules/distribution/src/main/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/cep/modules/distribution/src/main/license/LICENSE -------------------------------------------------------------------------------- /extensions/cep/modules/distribution/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/cep/modules/distribution/src/main/notice/NOTICE -------------------------------------------------------------------------------- /extensions/cep/modules/stratos-cep-extension/wso2cep-3.0.0/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/cep/modules/stratos-cep-extension/wso2cep-3.0.0/pom.xml -------------------------------------------------------------------------------- /extensions/cep/modules/stratos-cep-extension/wso2cep-3.1.0/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/cep/modules/stratos-cep-extension/wso2cep-3.1.0/pom.xml -------------------------------------------------------------------------------- /extensions/cep/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/cep/pom.xml -------------------------------------------------------------------------------- /extensions/das/modules/artifacts/metering-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/artifacts/metering-dashboard/README.md -------------------------------------------------------------------------------- /extensions/das/modules/artifacts/metering-dashboard/capps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/artifacts/metering-dashboard/capps/pom.xml -------------------------------------------------------------------------------- /extensions/das/modules/artifacts/metering-dashboard/ues-patch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/artifacts/metering-dashboard/ues-patch/README.md -------------------------------------------------------------------------------- /extensions/das/modules/artifacts/monitoring-dashboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/artifacts/monitoring-dashboard/README.md -------------------------------------------------------------------------------- /extensions/das/modules/artifacts/monitoring-dashboard/capps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/artifacts/monitoring-dashboard/capps/pom.xml -------------------------------------------------------------------------------- /extensions/das/modules/distribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/distribution/README.md -------------------------------------------------------------------------------- /extensions/das/modules/distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/distribution/pom.xml -------------------------------------------------------------------------------- /extensions/das/modules/distribution/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/distribution/src/assembly/bin.xml -------------------------------------------------------------------------------- /extensions/das/modules/distribution/src/main/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/distribution/src/main/license/LICENSE -------------------------------------------------------------------------------- /extensions/das/modules/distribution/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/distribution/src/main/notice/NOTICE -------------------------------------------------------------------------------- /extensions/das/modules/stratos-das-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/stratos-das-extension/README.md -------------------------------------------------------------------------------- /extensions/das/modules/stratos-das-extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/modules/stratos-das-extension/pom.xml -------------------------------------------------------------------------------- /extensions/das/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/das/pom.xml -------------------------------------------------------------------------------- /extensions/load-balancer/modules/aws-extension/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/aws-extension/INSTALL.md -------------------------------------------------------------------------------- /extensions/load-balancer/modules/aws-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/aws-extension/README.md -------------------------------------------------------------------------------- /extensions/load-balancer/modules/aws-extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/aws-extension/pom.xml -------------------------------------------------------------------------------- /extensions/load-balancer/modules/aws-extension/src/main/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/aws-extension/src/main/assembly/bin.xml -------------------------------------------------------------------------------- /extensions/load-balancer/modules/aws-extension/src/main/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/aws-extension/src/main/license/LICENSE -------------------------------------------------------------------------------- /extensions/load-balancer/modules/aws-extension/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/aws-extension/src/main/notice/NOTICE -------------------------------------------------------------------------------- /extensions/load-balancer/modules/haproxy-extension/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/haproxy-extension/INSTALL.md -------------------------------------------------------------------------------- /extensions/load-balancer/modules/haproxy-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/haproxy-extension/README.md -------------------------------------------------------------------------------- /extensions/load-balancer/modules/haproxy-extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/haproxy-extension/pom.xml -------------------------------------------------------------------------------- /extensions/load-balancer/modules/haproxy-extension/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/haproxy-extension/src/main/notice/NOTICE -------------------------------------------------------------------------------- /extensions/load-balancer/modules/lvs-extension/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/lvs-extension/INSTALL.md -------------------------------------------------------------------------------- /extensions/load-balancer/modules/lvs-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/lvs-extension/README.md -------------------------------------------------------------------------------- /extensions/load-balancer/modules/lvs-extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/lvs-extension/pom.xml -------------------------------------------------------------------------------- /extensions/load-balancer/modules/lvs-extension/src/main/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/lvs-extension/src/main/assembly/bin.xml -------------------------------------------------------------------------------- /extensions/load-balancer/modules/lvs-extension/src/main/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/lvs-extension/src/main/license/LICENSE -------------------------------------------------------------------------------- /extensions/load-balancer/modules/lvs-extension/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/lvs-extension/src/main/notice/NOTICE -------------------------------------------------------------------------------- /extensions/load-balancer/modules/nginx-extension/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/nginx-extension/INSTALL.md -------------------------------------------------------------------------------- /extensions/load-balancer/modules/nginx-extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/nginx-extension/README.md -------------------------------------------------------------------------------- /extensions/load-balancer/modules/nginx-extension/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/nginx-extension/pom.xml -------------------------------------------------------------------------------- /extensions/load-balancer/modules/nginx-extension/src/main/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/nginx-extension/src/main/assembly/bin.xml -------------------------------------------------------------------------------- /extensions/load-balancer/modules/nginx-extension/src/main/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/nginx-extension/src/main/license/LICENSE -------------------------------------------------------------------------------- /extensions/load-balancer/modules/nginx-extension/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/modules/nginx-extension/src/main/notice/NOTICE -------------------------------------------------------------------------------- /extensions/load-balancer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/load-balancer/pom.xml -------------------------------------------------------------------------------- /extensions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/extensions/pom.xml -------------------------------------------------------------------------------- /features/autoscaler/org.apache.stratos.autoscaler.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/autoscaler/org.apache.stratos.autoscaler.feature/pom.xml -------------------------------------------------------------------------------- /features/autoscaler/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/autoscaler/pom.xml -------------------------------------------------------------------------------- /features/cep/org.apache.stratos.event.processor.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/cep/org.apache.stratos.event.processor.feature/pom.xml -------------------------------------------------------------------------------- /features/cep/org.apache.stratos.event.processor.server.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/cep/org.apache.stratos.event.processor.server.feature/pom.xml -------------------------------------------------------------------------------- /features/cep/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/cep/pom.xml -------------------------------------------------------------------------------- /features/cloud-controller/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/cloud-controller/pom.xml -------------------------------------------------------------------------------- /features/common/org.apache.stratos.common.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/common/org.apache.stratos.common.feature/pom.xml -------------------------------------------------------------------------------- /features/common/org.apache.stratos.common.server.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/common/org.apache.stratos.common.server.feature/pom.xml -------------------------------------------------------------------------------- /features/common/org.apache.stratos.common.server.feature/resources/p2.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/common/org.apache.stratos.common.server.feature/resources/p2.inf -------------------------------------------------------------------------------- /features/common/org.apache.stratos.custom.handlers.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/common/org.apache.stratos.custom.handlers.feature/pom.xml -------------------------------------------------------------------------------- /features/common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/common/pom.xml -------------------------------------------------------------------------------- /features/load-balancer/org.apache.stratos.load.balancer.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/load-balancer/org.apache.stratos.load.balancer.feature/pom.xml -------------------------------------------------------------------------------- /features/load-balancer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/load-balancer/pom.xml -------------------------------------------------------------------------------- /features/manager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/manager/pom.xml -------------------------------------------------------------------------------- /features/manager/stratos-mgt/org.apache.stratos.manager.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/manager/stratos-mgt/org.apache.stratos.manager.feature/pom.xml -------------------------------------------------------------------------------- /features/manager/stratos-mgt/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/manager/stratos-mgt/pom.xml -------------------------------------------------------------------------------- /features/manager/styles/org.apache.stratos.manager.styles.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/manager/styles/org.apache.stratos.manager.styles.feature/pom.xml -------------------------------------------------------------------------------- /features/messaging/org.apache.stratos.messaging.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/messaging/org.apache.stratos.messaging.feature/pom.xml -------------------------------------------------------------------------------- /features/messaging/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/messaging/pom.xml -------------------------------------------------------------------------------- /features/mock-iaas/org.apache.stratos.mock.iaas.api.feature/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/mock-iaas/org.apache.stratos.mock.iaas.api.feature/pom.xml -------------------------------------------------------------------------------- /features/mock-iaas/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/mock-iaas/pom.xml -------------------------------------------------------------------------------- /features/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/features/pom.xml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/pom.xml -------------------------------------------------------------------------------- /products/cartridge-agent/modules/distribution/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/distribution/INSTALL.txt -------------------------------------------------------------------------------- /products/cartridge-agent/modules/distribution/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/distribution/README.txt -------------------------------------------------------------------------------- /products/cartridge-agent/modules/distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/distribution/pom.xml -------------------------------------------------------------------------------- /products/cartridge-agent/modules/distribution/src/main/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/distribution/src/main/assembly/bin.xml -------------------------------------------------------------------------------- /products/cartridge-agent/modules/distribution/src/main/bin/stratos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/distribution/src/main/bin/stratos.sh -------------------------------------------------------------------------------- /products/cartridge-agent/modules/distribution/src/main/extensions/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/distribution/src/main/extensions/clean.sh -------------------------------------------------------------------------------- /products/cartridge-agent/modules/distribution/src/main/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/distribution/src/main/license/LICENSE -------------------------------------------------------------------------------- /products/cartridge-agent/modules/distribution/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/distribution/src/main/notice/NOTICE -------------------------------------------------------------------------------- /products/cartridge-agent/modules/scripts/ec2/cartridge-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/scripts/ec2/cartridge-agent.sh -------------------------------------------------------------------------------- /products/cartridge-agent/modules/scripts/ec2/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/scripts/ec2/clean.sh -------------------------------------------------------------------------------- /products/cartridge-agent/modules/scripts/ec2/get-launch-params.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/scripts/ec2/get-launch-params.rb -------------------------------------------------------------------------------- /products/cartridge-agent/modules/scripts/openstack/php/cartridge-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/scripts/openstack/php/cartridge-agent.sh -------------------------------------------------------------------------------- /products/cartridge-agent/modules/scripts/openstack/php/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/scripts/openstack/php/clean.sh -------------------------------------------------------------------------------- /products/cartridge-agent/modules/scripts/openstack/php/healthcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/modules/scripts/openstack/php/healthcheck.sh -------------------------------------------------------------------------------- /products/cartridge-agent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/cartridge-agent/pom.xml -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/INSTALL.txt -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/README.txt -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/pom.xml -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/src/main/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/src/main/assembly/bin.xml -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/src/main/bin/stratos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/src/main/bin/stratos.bat -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/src/main/bin/stratos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/src/main/bin/stratos.sh -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/src/main/conf/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/src/main/conf/axis2.xml -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/src/main/conf/jndi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/src/main/conf/jndi.properties -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/src/main/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/src/main/conf/log4j.properties -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/src/main/conf/nhttp.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/src/main/conf/nhttp.properties -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/src/main/conf/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/src/main/conf/user-mgt.xml -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/src/main/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/src/main/license/LICENSE -------------------------------------------------------------------------------- /products/load-balancer/modules/distribution/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/distribution/src/main/notice/NOTICE -------------------------------------------------------------------------------- /products/load-balancer/modules/p2-profile-gen/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/modules/p2-profile-gen/pom.xml -------------------------------------------------------------------------------- /products/load-balancer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/load-balancer/pom.xml -------------------------------------------------------------------------------- /products/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/pom.xml -------------------------------------------------------------------------------- /products/python-cartridge-agent/modules/distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/python-cartridge-agent/modules/distribution/pom.xml -------------------------------------------------------------------------------- /products/python-cartridge-agent/modules/integration/.gitignore: -------------------------------------------------------------------------------- 1 | cartridge-agent.log 2 | -------------------------------------------------------------------------------- /products/python-cartridge-agent/modules/integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/python-cartridge-agent/modules/integration/pom.xml -------------------------------------------------------------------------------- /products/python-cartridge-agent/modules/integration/test-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/python-cartridge-agent/modules/integration/test-common/pom.xml -------------------------------------------------------------------------------- /products/python-cartridge-agent/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/python-cartridge-agent/pom.xml -------------------------------------------------------------------------------- /products/python-cli/modules/distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/python-cli/modules/distribution/pom.xml -------------------------------------------------------------------------------- /products/python-cli/modules/distribution/src/main/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/python-cli/modules/distribution/src/main/assembly/bin.xml -------------------------------------------------------------------------------- /products/python-cli/modules/distribution/src/main/bin/stratos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/python-cli/modules/distribution/src/main/bin/stratos.sh -------------------------------------------------------------------------------- /products/python-cli/modules/distribution/src/main/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/python-cli/modules/distribution/src/main/license/LICENSE -------------------------------------------------------------------------------- /products/python-cli/modules/distribution/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/python-cli/modules/distribution/src/main/notice/NOTICE -------------------------------------------------------------------------------- /products/python-cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/python-cli/pom.xml -------------------------------------------------------------------------------- /products/stratos-cli/modules/distribution/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos-cli/modules/distribution/INSTALL.txt -------------------------------------------------------------------------------- /products/stratos-cli/modules/distribution/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos-cli/modules/distribution/README.txt -------------------------------------------------------------------------------- /products/stratos-cli/modules/distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos-cli/modules/distribution/pom.xml -------------------------------------------------------------------------------- /products/stratos-cli/modules/distribution/src/main/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos-cli/modules/distribution/src/main/assembly/bin.xml -------------------------------------------------------------------------------- /products/stratos-cli/modules/distribution/src/main/bin/stratos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos-cli/modules/distribution/src/main/bin/stratos.bat -------------------------------------------------------------------------------- /products/stratos-cli/modules/distribution/src/main/bin/stratos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos-cli/modules/distribution/src/main/bin/stratos.sh -------------------------------------------------------------------------------- /products/stratos-cli/modules/distribution/src/main/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos-cli/modules/distribution/src/main/conf/log4j.properties -------------------------------------------------------------------------------- /products/stratos-cli/modules/distribution/src/main/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos-cli/modules/distribution/src/main/license/LICENSE -------------------------------------------------------------------------------- /products/stratos-cli/modules/distribution/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos-cli/modules/distribution/src/main/notice/NOTICE -------------------------------------------------------------------------------- /products/stratos-cli/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos-cli/pom.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/INSTALL.txt -------------------------------------------------------------------------------- /products/stratos/modules/distribution/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/README.txt -------------------------------------------------------------------------------- /products/stratos/modules/distribution/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/pom.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/assembly/bin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/assembly/bin.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/assembly/filter.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/assembly/filter.properties -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/bin/stratos.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/bin/stratos.bat -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/bin/stratos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/bin/stratos.sh -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/autoscaler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/autoscaler.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/axis2/axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/axis2/axis2.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/axis2/axis2_client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/axis2/axis2_client.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/axis2/tenant-axis2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/axis2/tenant-axis2.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/carbon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/carbon.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/drools/maxcheck.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/drools/maxcheck.drl -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/drools/mincheck.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/drools/mincheck.drl -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/drools/scaling.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/drools/scaling.drl -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/etc/launch.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/etc/launch.ini -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/event-broker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/event-broker.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/identity.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/jndi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/jndi.properties -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/log4j.properties -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/mock-iaas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/mock-iaas.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/mqtttopic.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/mqtttopic.properties -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/registry.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/sso-idp-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/sso-idp-config.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/tenant-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/tenant-mgt.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/conf/user-mgt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/conf/user-mgt.xml -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/license/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/license/LICENSE -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/notice/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/notice/NOTICE -------------------------------------------------------------------------------- /products/stratos/modules/distribution/src/main/partitions/partitions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/distribution/src/main/partitions/partitions.xml -------------------------------------------------------------------------------- /products/stratos/modules/integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/integration/pom.xml -------------------------------------------------------------------------------- /products/stratos/modules/integration/test-common/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/integration/test-common/pom.xml -------------------------------------------------------------------------------- /products/stratos/modules/integration/test-integration/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/integration/test-integration/pom.xml -------------------------------------------------------------------------------- /products/stratos/modules/integration/test-integration/run-smoke-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/integration/test-integration/run-smoke-test.sh -------------------------------------------------------------------------------- /products/stratos/modules/integration/test-integration/src/test/resources/instrumentation.txt: -------------------------------------------------------------------------------- 1 | org.apache.stratos.* 2 | -------------------------------------------------------------------------------- /products/stratos/modules/p2-profile-gen/carbon.product: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/p2-profile-gen/carbon.product -------------------------------------------------------------------------------- /products/stratos/modules/p2-profile-gen/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/modules/p2-profile-gen/pom.xml -------------------------------------------------------------------------------- /products/stratos/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/products/stratos/pom.xml -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/application-policies/application-policy-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/application-policies/application-policy-1.json -------------------------------------------------------------------------------- /samples/application-policies/application-policy-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/application-policies/application-policy-2.json -------------------------------------------------------------------------------- /samples/application-policies/application-policy-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/application-policies/application-policy-3.json -------------------------------------------------------------------------------- /samples/application-policies/application-policy-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/application-policies/application-policy-4.json -------------------------------------------------------------------------------- /samples/application-policies/application-policy-5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/application-policies/application-policy-5.json -------------------------------------------------------------------------------- /samples/application-policies/multi-cloud-application-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/application-policies/multi-cloud-application-policy.json -------------------------------------------------------------------------------- /samples/applications/complex/tomcat-single-signon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/tomcat-single-signon/README.md -------------------------------------------------------------------------------- /samples/applications/complex/tomcat-single-signon/scripts/common/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/tomcat-single-signon/scripts/common/deploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/tomcat-single-signon/scripts/ec2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/tomcat-single-signon/scripts/ec2/deploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/tomcat-single-signon/scripts/ec2/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/tomcat-single-signon/scripts/ec2/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/tomcat-single-signon/scripts/mock/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/tomcat-single-signon/scripts/mock/deploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/tomcat-single-signon/scripts/mock/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/tomcat-single-signon/scripts/mock/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/README.md -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/artifacts/application.json -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/scripts/common/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/scripts/common/deploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/scripts/common/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/scripts/common/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/scripts/ec2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/scripts/ec2/deploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/scripts/ec2/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/scripts/ec2/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/scripts/kubernetes/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/scripts/kubernetes/deploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/scripts/kubernetes/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/scripts/kubernetes/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/scripts/mock/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/scripts/mock/deploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/scripts/mock/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/scripts/mock/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/scripts/openstack/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/scripts/openstack/deploy.sh -------------------------------------------------------------------------------- /samples/applications/complex/wordpress-app/scripts/openstack/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/complex/wordpress-app/scripts/openstack/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/nested/complex-app-with-lb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/complex-app-with-lb/README.md -------------------------------------------------------------------------------- /samples/applications/nested/complex-app-with-lb/artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/complex-app-with-lb/artifacts/application.json -------------------------------------------------------------------------------- /samples/applications/nested/complex-app-with-lb/scripts/common/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/complex-app-with-lb/scripts/common/deploy.sh -------------------------------------------------------------------------------- /samples/applications/nested/complex-app-with-lb/scripts/common/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/complex-app-with-lb/scripts/common/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/nested/complex-app-with-lb/scripts/ec2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/complex-app-with-lb/scripts/ec2/deploy.sh -------------------------------------------------------------------------------- /samples/applications/nested/complex-app-with-lb/scripts/ec2/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/complex-app-with-lb/scripts/ec2/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/nested/complex-app-with-lb/scripts/mock/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/complex-app-with-lb/scripts/mock/deploy.sh -------------------------------------------------------------------------------- /samples/applications/nested/complex-app-with-lb/scripts/mock/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/complex-app-with-lb/scripts/mock/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/nested/five-levels-nested-groups-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/five-levels-nested-groups-app/README.md -------------------------------------------------------------------------------- /samples/applications/nested/single-level-nested-group-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/single-level-nested-group-app/README.md -------------------------------------------------------------------------------- /samples/applications/nested/single-level-nested-groups-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/nested/single-level-nested-groups-app/README.md -------------------------------------------------------------------------------- /samples/applications/scaling/app-bursting-pattern/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/scaling/app-bursting-pattern/README.md -------------------------------------------------------------------------------- /samples/applications/scaling/app-bursting-pattern/scripts/common/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/scaling/app-bursting-pattern/scripts/common/deploy.sh -------------------------------------------------------------------------------- /samples/applications/scaling/app-bursting-pattern/scripts/ec2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/scaling/app-bursting-pattern/scripts/ec2/deploy.sh -------------------------------------------------------------------------------- /samples/applications/scaling/app-bursting-pattern/scripts/ec2/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/scaling/app-bursting-pattern/scripts/ec2/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/scaling/app-bursting-pattern/scripts/mock/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/scaling/app-bursting-pattern/scripts/mock/deploy.sh -------------------------------------------------------------------------------- /samples/applications/scaling/app-bursting-pattern/scripts/mock/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/scaling/app-bursting-pattern/scripts/mock/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/scaling/dependent-scaling/sample-cartridges/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/scaling/dependent-scaling/sample-cartridges/README.md -------------------------------------------------------------------------------- /samples/applications/scaling/dependent-scaling/sample-groups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/scaling/dependent-scaling/sample-groups/README.md -------------------------------------------------------------------------------- /samples/applications/scaling/group-scaling/group-scaling-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/scaling/group-scaling/group-scaling-app/README.md -------------------------------------------------------------------------------- /samples/applications/scaling/group-scaling/group-scaling-v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/scaling/group-scaling/group-scaling-v1/README.md -------------------------------------------------------------------------------- /samples/applications/simple/single-cartridge-app-multi-cloud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-cartridge-app-multi-cloud/README.md -------------------------------------------------------------------------------- /samples/applications/simple/single-cartridge-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-cartridge-app/README.md -------------------------------------------------------------------------------- /samples/applications/simple/single-cartridge-app/scripts/common/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-cartridge-app/scripts/common/deploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-cartridge-app/scripts/ec2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-cartridge-app/scripts/ec2/deploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-cartridge-app/scripts/ec2/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-cartridge-app/scripts/ec2/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-cartridge-app/scripts/gce/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-cartridge-app/scripts/gce/deploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-cartridge-app/scripts/gce/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-cartridge-app/scripts/gce/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-cartridge-app/scripts/mock/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-cartridge-app/scripts/mock/deploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-cartridge-app/scripts/mock/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-cartridge-app/scripts/mock/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/README.md -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/artifacts/application.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/artifacts/application.json -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/scripts/common/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/scripts/common/deploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/scripts/common/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/scripts/common/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/scripts/ec2/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/scripts/ec2/deploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/scripts/ec2/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/scripts/ec2/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/scripts/kubernetes/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/scripts/kubernetes/deploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/scripts/mock/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/scripts/mock/deploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/scripts/mock/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/scripts/mock/undeploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/scripts/openstack/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/scripts/openstack/deploy.sh -------------------------------------------------------------------------------- /samples/applications/simple/single-group-app/scripts/openstack/undeploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/applications/simple/single-group-app/scripts/openstack/undeploy.sh -------------------------------------------------------------------------------- /samples/autoscaling-policies/autoscaling-policy-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/autoscaling-policies/autoscaling-policy-1.json -------------------------------------------------------------------------------- /samples/autoscaling-policies/autoscaling-policy-c1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/autoscaling-policies/autoscaling-policy-c1.json -------------------------------------------------------------------------------- /samples/autoscaling-policies/autoscaling-policy-c2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/autoscaling-policies/autoscaling-policy-c2.json -------------------------------------------------------------------------------- /samples/autoscaling-policies/autoscaling-policy-c3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/autoscaling-policies/autoscaling-policy-c3.json -------------------------------------------------------------------------------- /samples/autoscaling-policies/autoscaling-policy-c4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/autoscaling-policies/autoscaling-policy-c4.json -------------------------------------------------------------------------------- /samples/cartridge-groups/app-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/app-group.json -------------------------------------------------------------------------------- /samples/cartridge-groups/db-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/db-group.json -------------------------------------------------------------------------------- /samples/cartridge-groups/esb-php-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/esb-php-group.json -------------------------------------------------------------------------------- /samples/cartridge-groups/group1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/group1.json -------------------------------------------------------------------------------- /samples/cartridge-groups/group1b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/group1b.json -------------------------------------------------------------------------------- /samples/cartridge-groups/group6c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/group6c.json -------------------------------------------------------------------------------- /samples/cartridge-groups/group6c3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/group6c3.json -------------------------------------------------------------------------------- /samples/cartridge-groups/group6c4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/group6c4.json -------------------------------------------------------------------------------- /samples/cartridge-groups/group6c5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/group6c5.json -------------------------------------------------------------------------------- /samples/cartridge-groups/group6c6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/group6c6.json -------------------------------------------------------------------------------- /samples/cartridge-groups/group6c7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/group6c7.json -------------------------------------------------------------------------------- /samples/cartridge-groups/group8c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/group8c.json -------------------------------------------------------------------------------- /samples/cartridge-groups/group8c3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/group8c3.json -------------------------------------------------------------------------------- /samples/cartridge-groups/mysql-php-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/mysql-php-group.json -------------------------------------------------------------------------------- /samples/cartridge-groups/n-level-nesting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/n-level-nesting.json -------------------------------------------------------------------------------- /samples/cartridge-groups/tomcat-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/tomcat-group.json -------------------------------------------------------------------------------- /samples/cartridge-groups/tomcat2-group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridge-groups/tomcat2-group.json -------------------------------------------------------------------------------- /samples/cartridges/ec2/c1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/ec2/c1.json -------------------------------------------------------------------------------- /samples/cartridges/ec2/c2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/ec2/c2.json -------------------------------------------------------------------------------- /samples/cartridges/ec2/c3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/ec2/c3.json -------------------------------------------------------------------------------- /samples/cartridges/ec2/c4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/ec2/c4.json -------------------------------------------------------------------------------- /samples/cartridges/ec2/esb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/ec2/esb.json -------------------------------------------------------------------------------- /samples/cartridges/ec2/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/ec2/php.json -------------------------------------------------------------------------------- /samples/cartridges/ec2/tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/ec2/tomcat.json -------------------------------------------------------------------------------- /samples/cartridges/ec2/tomcat1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/ec2/tomcat1.json -------------------------------------------------------------------------------- /samples/cartridges/ec2/tomcat2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/ec2/tomcat2.json -------------------------------------------------------------------------------- /samples/cartridges/gce/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/gce/php.json -------------------------------------------------------------------------------- /samples/cartridges/kubernetes/c1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/kubernetes/c1.json -------------------------------------------------------------------------------- /samples/cartridges/kubernetes/c2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/kubernetes/c2.json -------------------------------------------------------------------------------- /samples/cartridges/kubernetes/c3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/kubernetes/c3.json -------------------------------------------------------------------------------- /samples/cartridges/kubernetes/c4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/kubernetes/c4.json -------------------------------------------------------------------------------- /samples/cartridges/kubernetes/php-secret.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/kubernetes/php-secret.json -------------------------------------------------------------------------------- /samples/cartridges/kubernetes/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/kubernetes/php.json -------------------------------------------------------------------------------- /samples/cartridges/kubernetes/tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/kubernetes/tomcat.json -------------------------------------------------------------------------------- /samples/cartridges/mock/c1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/c1.json -------------------------------------------------------------------------------- /samples/cartridges/mock/c2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/c2.json -------------------------------------------------------------------------------- /samples/cartridges/mock/c3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/c3.json -------------------------------------------------------------------------------- /samples/cartridges/mock/c4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/c4.json -------------------------------------------------------------------------------- /samples/cartridges/mock/esb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/esb.json -------------------------------------------------------------------------------- /samples/cartridges/mock/mysql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/mysql.json -------------------------------------------------------------------------------- /samples/cartridges/mock/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/php.json -------------------------------------------------------------------------------- /samples/cartridges/mock/postgres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/postgres.json -------------------------------------------------------------------------------- /samples/cartridges/mock/stratos-lb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/stratos-lb.json -------------------------------------------------------------------------------- /samples/cartridges/mock/tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/tomcat.json -------------------------------------------------------------------------------- /samples/cartridges/mock/tomcat1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/tomcat1.json -------------------------------------------------------------------------------- /samples/cartridges/mock/tomcat2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/tomcat2.json -------------------------------------------------------------------------------- /samples/cartridges/mock/tomcat3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/tomcat3.json -------------------------------------------------------------------------------- /samples/cartridges/mock/wso2-is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/mock/wso2-is.json -------------------------------------------------------------------------------- /samples/cartridges/multi/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/multi/php.json -------------------------------------------------------------------------------- /samples/cartridges/openstack/c1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/openstack/c1.json -------------------------------------------------------------------------------- /samples/cartridges/openstack/c2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/openstack/c2.json -------------------------------------------------------------------------------- /samples/cartridges/openstack/c3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/openstack/c3.json -------------------------------------------------------------------------------- /samples/cartridges/openstack/c4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/openstack/c4.json -------------------------------------------------------------------------------- /samples/cartridges/openstack/esb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/openstack/esb.json -------------------------------------------------------------------------------- /samples/cartridges/openstack/php.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/openstack/php.json -------------------------------------------------------------------------------- /samples/cartridges/openstack/tomcat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/openstack/tomcat.json -------------------------------------------------------------------------------- /samples/cartridges/openstack/tomcat1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/openstack/tomcat1.json -------------------------------------------------------------------------------- /samples/cartridges/openstack/tomcat2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/cartridges/openstack/tomcat2.json -------------------------------------------------------------------------------- /samples/deployment-policies/deployment-policy-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/deployment-policies/deployment-policy-1.json -------------------------------------------------------------------------------- /samples/deployment-policies/deployment-policy-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/deployment-policies/deployment-policy-2.json -------------------------------------------------------------------------------- /samples/deployment-policies/deployment-policy-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/deployment-policies/deployment-policy-3.json -------------------------------------------------------------------------------- /samples/deployment-policies/deployment-policy-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/deployment-policies/deployment-policy-4.json -------------------------------------------------------------------------------- /samples/deployment-policies/multi-cloud-deployment-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/deployment-policies/multi-cloud-deployment-policy.json -------------------------------------------------------------------------------- /samples/kubernetes-clusters/kubernetes-cluster-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/kubernetes-clusters/kubernetes-cluster-1.json -------------------------------------------------------------------------------- /samples/kubernetes-clusters/kubernetes-cluster-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/kubernetes-clusters/kubernetes-cluster-2.json -------------------------------------------------------------------------------- /samples/kubernetes-clusters/kubernetes-cluster-ec2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/kubernetes-clusters/kubernetes-cluster-ec2.json -------------------------------------------------------------------------------- /samples/network-partitions/ec2/network-partition-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/ec2/network-partition-1.json -------------------------------------------------------------------------------- /samples/network-partitions/ec2/network-partition-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/ec2/network-partition-2.json -------------------------------------------------------------------------------- /samples/network-partitions/gce/network-partition-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/gce/network-partition-1.json -------------------------------------------------------------------------------- /samples/network-partitions/kubernetes/network-partition-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/kubernetes/network-partition-1.json -------------------------------------------------------------------------------- /samples/network-partitions/kubernetes/network-partition-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/kubernetes/network-partition-2.json -------------------------------------------------------------------------------- /samples/network-partitions/kubernetes/network-partition-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/kubernetes/network-partition-3.json -------------------------------------------------------------------------------- /samples/network-partitions/mock/network-partition-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/mock/network-partition-1.json -------------------------------------------------------------------------------- /samples/network-partitions/mock/network-partition-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/mock/network-partition-2.json -------------------------------------------------------------------------------- /samples/network-partitions/mock/network-partition-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/mock/network-partition-3.json -------------------------------------------------------------------------------- /samples/network-partitions/mock/network-partition-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/mock/network-partition-4.json -------------------------------------------------------------------------------- /samples/network-partitions/multi/ap-southeast-1-nw-partition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/multi/ap-southeast-1-nw-partition.json -------------------------------------------------------------------------------- /samples/network-partitions/multi/ap-southeast-2-nw-partition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/multi/ap-southeast-2-nw-partition.json -------------------------------------------------------------------------------- /samples/network-partitions/multi/openstack-nw-partition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/multi/openstack-nw-partition.json -------------------------------------------------------------------------------- /samples/network-partitions/openstack/network-partition-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/openstack/network-partition-1.json -------------------------------------------------------------------------------- /samples/network-partitions/openstack/network-partition-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/samples/network-partitions/openstack/network-partition-2.json -------------------------------------------------------------------------------- /service-stubs/org.apache.stratos.autoscaler.service.stub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/service-stubs/org.apache.stratos.autoscaler.service.stub/pom.xml -------------------------------------------------------------------------------- /service-stubs/org.apache.stratos.cloud.controller.service.stub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/service-stubs/org.apache.stratos.cloud.controller.service.stub/pom.xml -------------------------------------------------------------------------------- /service-stubs/org.apache.stratos.manager.service.stub/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/service-stubs/org.apache.stratos.manager.service.stub/pom.xml -------------------------------------------------------------------------------- /service-stubs/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/service-stubs/pom.xml -------------------------------------------------------------------------------- /tools/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/.gitmodules -------------------------------------------------------------------------------- /tools/code-quality/Apache-Stratos-Sonar-Quality-Profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/code-quality/Apache-Stratos-Sonar-Quality-Profile.xml -------------------------------------------------------------------------------- /tools/config-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/config-scripts/README.md -------------------------------------------------------------------------------- /tools/config-scripts/ec2/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/config-scripts/ec2/config.sh -------------------------------------------------------------------------------- /tools/config-scripts/gce/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/config-scripts/gce/config.sh -------------------------------------------------------------------------------- /tools/config-scripts/openstack/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/config-scripts/openstack/config.sh -------------------------------------------------------------------------------- /tools/docker-images/cartridge-docker-images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/cartridge-docker-images/README.md -------------------------------------------------------------------------------- /tools/docker-images/cartridge-docker-images/base-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/cartridge-docker-images/base-image/Dockerfile -------------------------------------------------------------------------------- /tools/docker-images/cartridge-docker-images/base-image/files/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/cartridge-docker-images/base-image/files/run -------------------------------------------------------------------------------- /tools/docker-images/cartridge-docker-images/base-image/packs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/cartridge-docker-images/base-image/packs/.gitignore -------------------------------------------------------------------------------- /tools/docker-images/cartridge-docker-images/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/cartridge-docker-images/build.sh -------------------------------------------------------------------------------- /tools/docker-images/cartridge-docker-images/service-images/php/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/cartridge-docker-images/service-images/php/Dockerfile -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/README.md -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/activemq/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/activemq/Dockerfile -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/activemq/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/activemq/docker-build.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/activemq/docker-run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/activemq/docker-run.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/bind/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/bind/Dockerfile -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/bind/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/bind/README -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/bind/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/bind/docker-build.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/bind/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/bind/run -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/bind/run-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/bind/run-example.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/bind/zone_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/bind/zone_template -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/build-all.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/mysql/Dockerfile -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/mysql/README.md -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/mysql/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/mysql/docker-build.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/mysql/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/mysql/files/.gitignore -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/mysql/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/mysql/my.cnf -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/mysql/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/mysql/run -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/puppetmaster/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/puppetmaster/Dockerfile -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/puppetmaster/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/puppetmaster/docker-build.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/puppetmaster/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/puppetmaster/files/.gitignore -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/puppetmaster/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/puppetmaster/run -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/puppetmaster/run-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/puppetmaster/run-example.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/puppettestnode/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/puppettestnode/Dockerfile -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/puppettestnode/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/puppettestnode/docker-build.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/puppettestnode/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/puppettestnode/run -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/puppettestnode/run-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/puppettestnode/run-example.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/push-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/push-all.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/remove_stratos_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/remove_stratos_images.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/run-example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/run-example.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/run-nsenter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/run-nsenter.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/stop_stratos_containers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/stop_stratos_containers.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/stratos/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/stratos/Dockerfile -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/stratos/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/stratos/docker-build.sh -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/stratos/files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/stratos/files/.gitignore -------------------------------------------------------------------------------- /tools/docker-images/stratos-docker-images/stratos/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/docker-images/stratos-docker-images/stratos/run -------------------------------------------------------------------------------- /tools/init-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/init-scripts/README.md -------------------------------------------------------------------------------- /tools/init-scripts/ec2/centos/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/init-scripts/ec2/centos/init.sh -------------------------------------------------------------------------------- /tools/init-scripts/ec2/ubuntu/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/init-scripts/ec2/ubuntu/init.sh -------------------------------------------------------------------------------- /tools/init-scripts/gce/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/init-scripts/gce/init.sh -------------------------------------------------------------------------------- /tools/init-scripts/openstack/centos/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/init-scripts/openstack/centos/init.sh -------------------------------------------------------------------------------- /tools/init-scripts/openstack/ubuntu/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/init-scripts/openstack/ubuntu/init.sh -------------------------------------------------------------------------------- /tools/init-scripts/vcloud/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/init-scripts/vcloud/init.sh -------------------------------------------------------------------------------- /tools/puppet3-agent/puppetinstall/puppetinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3-agent/puppetinstall/puppetinstall -------------------------------------------------------------------------------- /tools/puppet3-agent/stratos_sendinfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3-agent/stratos_sendinfo.rb -------------------------------------------------------------------------------- /tools/puppet3/auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/auth.conf -------------------------------------------------------------------------------- /tools/puppet3/autosign.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/autosign.conf -------------------------------------------------------------------------------- /tools/puppet3/fileserver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/fileserver.conf -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/base.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/base.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/default.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/default.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/haproxy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/haproxy.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/jboss.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/jboss.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/lb.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/lb.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/mysql.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/mysql.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/nodejs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/nodejs.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/php.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/php.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/ruby.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/ruby.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/tomcat.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/tomcat.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/nodes/wordpress.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/nodes/wordpress.pp -------------------------------------------------------------------------------- /tools/puppet3/manifests/site.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/manifests/site.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/files/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/files/README.txt -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/files/activemq/README.txt: -------------------------------------------------------------------------------- 1 | please add all the client jars 2 | -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/lib/puppet/parser/functions/difference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/lib/puppet/parser/functions/difference.rb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/manifests/initialize.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/manifests/initialize.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/manifests/push_templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/manifests/push_templates.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/manifests/remove_templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/manifests/remove_templates.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/manifests/start.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/manifests/start.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/bin/stratos.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/bin/stratos.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/conf/jndi.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/conf/jndi.properties.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/conf/log4j.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/conf/log4j.properties.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/conf/mqtttopic.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/conf/mqtttopic.properties.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/artifacts-copy.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/artifacts-copy.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/artifacts-updated.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/artifacts-updated.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/clean.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/clean.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/complete-tenant.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/complete-tenant.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/complete-topology.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/complete-topology.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/instance-activated.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/instance-activated.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/instance-started.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/instance-started.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/member-activated.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/member-activated.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/member-started.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/member-started.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/member-suspended.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/member-suspended.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/member-terminated.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/member-terminated.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/mount-volumes.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/mount-volumes.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/agent/templates/extensions/start-servers.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/agent/templates/extensions/start-servers.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/LICENSE -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/Modulefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/Modulefile -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/README -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/files/configs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/files/configs/README.txt -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/files/configs/repository/components/lib/README.txt: -------------------------------------------------------------------------------- 1 | Copy mysql connect jar here 2 | -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/files/patches/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/files/patches/README.txt -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/files/patches/repository/components/patches/README.txt: -------------------------------------------------------------------------------- 1 | Copy patches here 2 | -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/lib/facter/java_home.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/lib/facter/java_home.rb -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/manifests/clean.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/manifests/clean.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/manifests/deploy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/manifests/deploy.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/manifests/initialize.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/manifests/initialize.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/manifests/params.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/manifests/push_templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/manifests/push_templates.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/manifests/start.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/manifests/start.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/templates/agent/extensions/clean.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/templates/agent/extensions/clean.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/templates/conf/axis2/axis2.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/templates/conf/axis2/axis2.xml.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/templates/conf/carbon.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/templates/conf/carbon.xml.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/templates/conf/log4j.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/templates/conf/log4j.properties.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/templates/conf/registry.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/templates/conf/registry.xml.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/templates/conf/registry/_remote.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/templates/conf/registry/_remote.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/templates/conf/user-mgt.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/templates/conf/user-mgt.xml.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/templates/conf/user-mgt/_roldap.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/templates/conf/user-mgt/_roldap.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/appserver/templates/conf/user-mgt/_rwldap.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/appserver/templates/conf/user-mgt/_rwldap.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/haproxy/files/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/haproxy/files/README.txt -------------------------------------------------------------------------------- /tools/puppet3/modules/haproxy/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/haproxy/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/haproxy/manifests/initialize.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/haproxy/manifests/initialize.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/haproxy/manifests/push_templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/haproxy/manifests/push_templates.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/haproxy/manifests/start.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/haproxy/manifests/start.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/haproxy/templates/bin/haproxy-extension.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/haproxy/templates/bin/haproxy-extension.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/haproxy/templates/conf/jndi.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/haproxy/templates/conf/jndi.properties.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/java/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/java/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/java/templates/java_home.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/java/templates/java_home.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/files/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/files/README.txt -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/manifests/as.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/manifests/as.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/manifests/config.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/manifests/config.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/manifests/extra_jars.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/manifests/extra_jars.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/manifests/hornetq.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/manifests/hornetq.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/manifests/importssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/manifests/importssl.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/manifests/install.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/manifests/install.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/manifests/service.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/manifests/service.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/manifests/user.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/manifests/user.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/templates/hornetq/run.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/templates/hornetq/run.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/templates/jboss-as/jboss.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/templates/jboss-as/jboss.properties.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/templates/jboss-as/run.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/templates/jboss-as/run.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/jboss/templates/jboss-as/standalone-full.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/jboss/templates/jboss-as/standalone-full.xml.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/files/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/files/README.txt -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/files/configs/bin/stratos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/files/configs/bin/stratos.sh -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/manifests/clean.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/manifests/clean.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/manifests/deploy.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/manifests/deploy.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/manifests/importssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/manifests/importssl.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/manifests/initialize.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/manifests/initialize.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/manifests/params.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/manifests/params.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/manifests/push_templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/manifests/push_templates.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/manifests/start.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/manifests/start.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/templates/bin/stratos.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/templates/bin/stratos.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/templates/conf/axis2/axis2.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/templates/conf/axis2/axis2.xml.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/templates/conf/jndi.properties.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/templates/conf/jndi.properties.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/lb/templates/conf/loadbalancer.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/lb/templates/conf/loadbalancer.conf.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/mysql/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/mysql/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/mysql/templates/000-default.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/mysql/templates/000-default.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/mysql/templates/instance-activated.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/mysql/templates/instance-activated.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/mysql/templates/instance-started.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/mysql/templates/instance-started.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/mysql/templates/my.cnf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/mysql/templates/my.cnf.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/mysql/templates/mysql_root_password_setter.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/mysql/templates/mysql_root_password_setter.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/mysql/templates/phpMyAdmin.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/mysql/templates/phpMyAdmin.conf.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/mysql/templates/publish-metadata.py.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/mysql/templates/publish-metadata.py.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/nodejs/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/nodejs/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/php/files/90forceyes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/php/files/90forceyes -------------------------------------------------------------------------------- /tools/puppet3/modules/php/files/agent/plugins/PhpServerStarterPlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/php/files/agent/plugins/PhpServerStarterPlugin.py -------------------------------------------------------------------------------- /tools/puppet3/modules/php/lib/facter/stratos_facts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/php/lib/facter/stratos_facts.rb -------------------------------------------------------------------------------- /tools/puppet3/modules/php/manifests/importssl.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/php/manifests/importssl.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/php/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/php/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/php/templates/apache2/apache2.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/php/templates/apache2/apache2.conf.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/php/templates/apache2/sites-available/default.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/php/templates/apache2/sites-available/default.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/php/templates/httpd/httpd.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/php/templates/httpd/httpd.conf.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/python_agent/files/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/python_agent/files/README.txt -------------------------------------------------------------------------------- /tools/puppet3/modules/python_agent/manifests/copy_plugins.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/python_agent/manifests/copy_plugins.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/python_agent/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/python_agent/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/python_agent/manifests/initialize.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/python_agent/manifests/initialize.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/python_agent/manifests/push_templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/python_agent/manifests/push_templates.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/python_agent/manifests/remove_templates.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/python_agent/manifests/remove_templates.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/python_agent/manifests/start.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/python_agent/manifests/start.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/python_agent/templates/agent.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/python_agent/templates/agent.conf.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/python_agent/templates/extensions/clean.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/python_agent/templates/extensions/clean.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/python_agent/templates/logging.ini.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/python_agent/templates/logging.ini.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/ruby/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/ruby/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/ruby/templates/ruby-start.sh.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/ruby/templates/ruby-start.sh.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/stratos_base/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/stratos_base/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/tomcat/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/tomcat/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/tomcat/templates/server.xml.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/tomcat/templates/server.xml.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/tomcat/templates/tomcat.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/tomcat/templates/tomcat.erb -------------------------------------------------------------------------------- /tools/puppet3/modules/wordpress/manifests/init.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/wordpress/manifests/init.pp -------------------------------------------------------------------------------- /tools/puppet3/modules/wordpress/templates/httpd/httpd.conf.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/modules/wordpress/templates/httpd/httpd.conf.erb -------------------------------------------------------------------------------- /tools/puppet3/puppet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/puppet3/puppet.conf -------------------------------------------------------------------------------- /tools/services/centos/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/services/centos/README -------------------------------------------------------------------------------- /tools/services/centos/daemon_service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/services/centos/daemon_service -------------------------------------------------------------------------------- /tools/services/ubuntu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/services/ubuntu/README -------------------------------------------------------------------------------- /tools/services/ubuntu/daemon_service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/services/ubuntu/daemon_service -------------------------------------------------------------------------------- /tools/stratos-installer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/LICENSE.txt -------------------------------------------------------------------------------- /tools/stratos-installer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/README.md -------------------------------------------------------------------------------- /tools/stratos-installer/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/clean.sh -------------------------------------------------------------------------------- /tools/stratos-installer/conf/setup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/conf/setup.conf -------------------------------------------------------------------------------- /tools/stratos-installer/ec2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/ec2.sh -------------------------------------------------------------------------------- /tools/stratos-installer/gce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/gce.sh -------------------------------------------------------------------------------- /tools/stratos-installer/kubernetes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/kubernetes.sh -------------------------------------------------------------------------------- /tools/stratos-installer/mock_iaas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/mock_iaas.sh -------------------------------------------------------------------------------- /tools/stratos-installer/openstack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/openstack.sh -------------------------------------------------------------------------------- /tools/stratos-installer/resources/application-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/resources/application-mysql.sql -------------------------------------------------------------------------------- /tools/stratos-installer/resources/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/resources/mysql.sql -------------------------------------------------------------------------------- /tools/stratos-installer/resources/security-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/resources/security-mysql.sql -------------------------------------------------------------------------------- /tools/stratos-installer/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/setup.sh -------------------------------------------------------------------------------- /tools/stratos-installer/start-servers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/start-servers.sh -------------------------------------------------------------------------------- /tools/stratos-installer/templates/activemq/jndi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/templates/activemq/jndi.properties -------------------------------------------------------------------------------- /tools/stratos-installer/templates/autoscaler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/templates/autoscaler.xml -------------------------------------------------------------------------------- /tools/stratos-installer/templates/cartridge-config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/templates/cartridge-config.properties -------------------------------------------------------------------------------- /tools/stratos-installer/templates/cloud-controller.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/templates/cloud-controller.xml -------------------------------------------------------------------------------- /tools/stratos-installer/templates/datasources/master-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/templates/datasources/master-datasources.xml -------------------------------------------------------------------------------- /tools/stratos-installer/templates/datasources/stratos-datasources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/templates/datasources/stratos-datasources.xml -------------------------------------------------------------------------------- /tools/stratos-installer/templates/identity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/templates/identity.xml -------------------------------------------------------------------------------- /tools/stratos-installer/templates/jndi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/templates/jndi.properties -------------------------------------------------------------------------------- /tools/stratos-installer/templates/security/application-authentication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/templates/security/application-authentication.xml -------------------------------------------------------------------------------- /tools/stratos-installer/templates/wso2mb/jndi.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/templates/wso2mb/jndi.properties -------------------------------------------------------------------------------- /tools/stratos-installer/vcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/stratos/HEAD/tools/stratos-installer/vcloud.sh --------------------------------------------------------------------------------