Adds support for the orchestration type.

This commit is contained in:
Zack Shoylev 2015-06-10 12:31:02 -05:00
parent d804e73467
commit 25ec655d74
1 changed files with 5 additions and 0 deletions

View File

@ -71,6 +71,11 @@ public final class ServiceType {
*/ */
public static final String CDN = "rax:cdn"; public static final String CDN = "rax:cdn";
/**
* Orchestration (Openstack Heat)
*/
public static final String ORCHESTRATION = "orchestration";
private ServiceType() { private ServiceType() {
throw new AssertionError("intentionally unimplemented"); throw new AssertionError("intentionally unimplemented");
} }