Repository: incubator-brooklyn Updated Branches: refs/heads/master e94897849 -> 6467a91d7
Add VanillaWindowsProcess to catalog items Project: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/commit/55fc8a90 Tree: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/tree/55fc8a90 Diff: http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/diff/55fc8a90 Branch: refs/heads/master Commit: 55fc8a90b7a427cffa9e91d2048e8b9530b7ad52 Parents: 8636eb3 Author: Valentin Aitken <[email protected]> Authored: Tue Sep 29 18:40:42 2015 +0300 Committer: Valentin Aitken <[email protected]> Committed: Mon Oct 5 15:49:02 2015 +0300 ---------------------------------------------------------------------- .../brooklyn/entity/software/base/VanillaWindowsProcess.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-brooklyn/blob/55fc8a90/software/base/src/main/java/org/apache/brooklyn/entity/software/base/VanillaWindowsProcess.java ---------------------------------------------------------------------- diff --git a/software/base/src/main/java/org/apache/brooklyn/entity/software/base/VanillaWindowsProcess.java b/software/base/src/main/java/org/apache/brooklyn/entity/software/base/VanillaWindowsProcess.java index f243e38..c0ee181 100644 --- a/software/base/src/main/java/org/apache/brooklyn/entity/software/base/VanillaWindowsProcess.java +++ b/software/base/src/main/java/org/apache/brooklyn/entity/software/base/VanillaWindowsProcess.java @@ -20,6 +20,7 @@ package org.apache.brooklyn.entity.software.base; import java.util.Collection; +import org.apache.brooklyn.api.catalog.Catalog; import org.apache.brooklyn.api.entity.ImplementedBy; import org.apache.brooklyn.api.sensor.AttributeSensor; import org.apache.brooklyn.config.ConfigKey; @@ -29,6 +30,7 @@ import org.apache.brooklyn.util.time.Duration; import com.google.common.collect.ImmutableSet; +@Catalog(name="Vanilla Windows Process", description="A basic Windows entity configured with scripts, e.g. for launch, check-running and stop") @ImplementedBy(VanillaWindowsProcessImpl.class) public interface VanillaWindowsProcess extends AbstractVanillaProcess { // 3389 is RDP; 5985 is WinRM (3389 isn't used by Brooklyn, but useful for the end-user subsequently)
