diff options
Diffstat (limited to 'adapters/mso-vnf-adapter/WebContent/WEB-INF/web.xml')
-rw-r--r-- | adapters/mso-vnf-adapter/WebContent/WEB-INF/web.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/adapters/mso-vnf-adapter/WebContent/WEB-INF/web.xml b/adapters/mso-vnf-adapter/WebContent/WEB-INF/web.xml index 3a50781b22..e69486e1fd 100644 --- a/adapters/mso-vnf-adapter/WebContent/WEB-INF/web.xml +++ b/adapters/mso-vnf-adapter/WebContent/WEB-INF/web.xml @@ -79,6 +79,19 @@ <role-name>SiteControl-Client</role-name> </auth-constraint> </security-constraint> + <security-constraint> + <web-resource-collection> + <web-resource-name>MSO internal Requests</web-resource-name> + <description>Internal Requests</description> + <url-pattern>/rest/logging/*</url-pattern> + <url-pattern>/rest/properties/*</url-pattern> + <http-method>POST</http-method> + <http-method>GET</http-method> + </web-resource-collection> + <auth-constraint> + <role-name>MSO-Client</role-name> + </auth-constraint> + </security-constraint> <login-config> <auth-method>BASIC</auth-method> <realm-name>ApplicationRealm</realm-name> @@ -89,6 +102,9 @@ <security-role> <role-name>SiteControl-Client</role-name> </security-role> + <security-role> + <role-name>MSO-Client</role-name> + </security-role> <filter> <filter-name>LogFilter</filter-name> |