diff options
author | Christophe Closset <christophe.closset@intl.att.com> | 2021-01-05 17:04:59 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2021-01-05 17:04:59 +0000 |
commit | 444d7d803a7264ac2e07bc51df62b3602e0d393d (patch) | |
tree | 16e5e80fbab320f4c49b2596f2fe2ed2ea2a1ff5 /src/main/resources/clds/camel/rest/clds-services.xml | |
parent | eab7cf1a5737862be98ac97afcfff66b8661d596 (diff) | |
parent | 91ff401b0ade08b58f186e80fd7853527ff15c77 (diff) |
Merge "Change the java package name"
Diffstat (limited to 'src/main/resources/clds/camel/rest/clds-services.xml')
-rw-r--r-- | src/main/resources/clds/camel/rest/clds-services.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/resources/clds/camel/rest/clds-services.xml b/src/main/resources/clds/camel/rest/clds-services.xml index ce52f31d6..61e1efbdc 100644 --- a/src/main/resources/clds/camel/rest/clds-services.xml +++ b/src/main/resources/clds/camel/rest/clds-services.xml @@ -1,10 +1,10 @@ <rests xmlns="http://camel.apache.org/schema/spring"> <rest> <get uri="/v1/healthcheck" produces="application/json" - outType="org.onap.clamp.clds.model.CldsHealthCheck"> + outType="org.onap.policy.clamp.clds.model.CldsHealthCheck"> <route> <setBody> - <method ref="org.onap.clamp.clds.service.CldsHealthcheckService" + <method ref="org.onap.policy.clamp.clds.service.CldsHealthcheckService" method="gethealthcheck()" /> </setBody> <when> @@ -18,7 +18,7 @@ </get> <get uri="/v1/user/getUser" produces="text/plain"> - <to uri="bean:org.onap.clamp.authorization.UserService?method=getUser()" /> + <to uri="bean:org.onap.policy.clamp.authorization.UserService?method=getUser()" /> </get> </rest> </rests> |