Details
Description
When I access localhost:8181/cxf?_wadl, all the the endpoints are listed out. I tried setting property org.apache.cxf.endpoint.private to true in blueprint.xml, but still the cxf generated wadl file is accessible.Here is the config
<jaxrs:server id="edisc" address="/cxf">
<jaxrs:serviceBeans>
<ref component-id="applicationWebService" />
</jaxrs:serviceBeans>
<jaxrs:providers>
<ref component-id="jsonProvider" />
</jaxrs:providers>
<jaxrs:properties>
<entry key="org.apache.cxf.endpoint.private" value="true" />
</jaxrs:properties>
</jaxrs:server>