Renamed package references missed previously Project: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/commit/660f1681 Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/tree/660f1681 Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/diff/660f1681
Branch: refs/heads/0.8.0-incubating Commit: 660f16819123e786f3a5ff01f1ff443aa7c08d3c Parents: ddff980 Author: Aled Sage <[email protected]> Authored: Wed Aug 19 18:10:50 2015 +0100 Committer: Aled Sage <[email protected]> Committed: Wed Aug 19 18:22:10 2015 +0100 ---------------------------------------------------------------------- docs/_extra/big_examples/global-web-fabric/index.md | 16 ++++++++-------- .../test-app-with-enrichers-slightly-simpler.yaml | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/660f1681/docs/_extra/big_examples/global-web-fabric/index.md ---------------------------------------------------------------------- diff --git a/docs/_extra/big_examples/global-web-fabric/index.md b/docs/_extra/big_examples/global-web-fabric/index.md index 6897ffe..8ddbadc 100644 --- a/docs/_extra/big_examples/global-web-fabric/index.md +++ b/docs/_extra/big_examples/global-web-fabric/index.md @@ -100,7 +100,7 @@ This will extend the Brooklyn `AbstractApplication`: package brooklyn.demo; import static com.google.common.base.Preconditions.checkNotNull; -import org.apache.brooklyn.entity.core.AbstractApplication; +import org.apache.brooklyn.core.entity.AbstractApplication; public class GlobalWebFabricExample extends AbstractApplication { @Override @@ -202,13 +202,13 @@ import static com.google.common.base.Preconditions.checkNotNull; import org.slf4j.Logger; import org.slf4j.LoggerFactory; -import brooklyn.config.StringConfigMap; -import org.apache.brooklyn.entity.core.AbstractApplication; -import org.apache.brooklyn.entity.core.Attributes; -import brooklyn.entity.dns.geoscaling.GeoscalingDnsService; -import brooklyn.entity.group.DynamicFabric; -import brooklyn.entity.proxy.AbstractController; -import brooklyn.entity.proxying.EntitySpec; +import org.apache.brooklyn.config.StringConfigMap; +import org.apache.brooklyn.core.entity.AbstractApplication; +import org.apache.brooklyn.core.entity.Attributes; +import org.apache.brooklyn.entity.dns.geoscaling.GeoscalingDnsService; +import org.apache.brooklyn.entity.group.DynamicFabric; +import org.apache.brooklyn.entity.proxy.AbstractController; +import org.apache.brooklyn.entity.proxying.EntitySpec; import org.apache.brooklyn.entity.webapp.ElasticJavaWebAppService; import PortRanges; {% endhighlight %} http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/660f1681/docs/guide/yaml/example_yaml/test-app-with-enrichers-slightly-simpler.yaml ---------------------------------------------------------------------- diff --git a/docs/guide/yaml/example_yaml/test-app-with-enrichers-slightly-simpler.yaml b/docs/guide/yaml/example_yaml/test-app-with-enrichers-slightly-simpler.yaml index 3c9b4ad..b35c2ff 100644 --- a/docs/guide/yaml/example_yaml/test-app-with-enrichers-slightly-simpler.yaml +++ b/docs/guide/yaml/example_yaml/test-app-with-enrichers-slightly-simpler.yaml @@ -26,7 +26,7 @@ services: # instead of (or in addition to) this map brooklyn.config: sensorMapping: - $brooklyn:sensor("url"): $brooklyn:sensor("org.apache.brooklyn.entity.core.Attributes", "main.uri") + $brooklyn:sensor("url"): $brooklyn:sensor("org.apache.brooklyn.core.entity.Attributes", "main.uri") brooklyn.enrichers: - type: brooklyn.enricher.basic.Aggregator # aggregate `url` sensors from children into a list @@ -46,7 +46,7 @@ services: # pick one uri as the main one to use brooklyn.config: enricher.sourceSensor: $brooklyn:sensor("urls.list") - enricher.targetSensor: $brooklyn:sensor("org.apache.brooklyn.entity.core.Attributes", "main.uri") + enricher.targetSensor: $brooklyn:sensor("org.apache.brooklyn.core.entity.Attributes", "main.uri") quote: false maximum: 1 brooklyn.enrichers:
