diff options
author | Jorge Hernandez <jorge.hernandez-herrero@att.com> | 2020-07-21 23:29:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-07-21 23:29:12 +0000 |
commit | ca8d5af8a7fa4d8120b76477f096cdc83638987a (patch) | |
tree | 5db620bf1046991ec86e549cf966838f87faacf8 /policy-core/src/main/java | |
parent | 8821c49a987de518eef2fe79b909be92b8656bc6 (diff) | |
parent | 8382101e6c43578b6c78dfc10bacbd165e413c69 (diff) |
Merge "Support multiple Policy/Controller types using 'controller.type' property"
Diffstat (limited to 'policy-core/src/main/java')
-rw-r--r-- | policy-core/src/main/java/org/onap/policy/drools/properties/DroolsPropertyConstants.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/policy-core/src/main/java/org/onap/policy/drools/properties/DroolsPropertyConstants.java b/policy-core/src/main/java/org/onap/policy/drools/properties/DroolsPropertyConstants.java index f14486bc..197c972d 100644 --- a/policy-core/src/main/java/org/onap/policy/drools/properties/DroolsPropertyConstants.java +++ b/policy-core/src/main/java/org/onap/policy/drools/properties/DroolsPropertyConstants.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * policy-core * ================================================================================ - * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -26,6 +26,8 @@ public class DroolsPropertyConstants { public static final String PROPERTY_CONTROLLER_NAME = "controller.name"; + public static final String PROPERTY_CONTROLLER_TYPE = "controller.type"; + public static final String DEFAULT_CONTROLLER_POLICY_TYPE_VERSION = "1.0.0"; public static final String PROPERTY_CONTROLLER_POLICY_TYPES = "controller.policy.types"; |