efb356b1065bda8c662865083f3d81ea4c73a678
[netconf.git] / netconf / yanglib / src / main / java / org / opendaylight / yanglib / impl / WebInitializer.java
1 /*
2  * Copyright (c) 2018 Inocybe Technologies and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yanglib.impl;
9
10 import javax.servlet.ServletException;
11 import javax.ws.rs.core.Application;
12 import org.opendaylight.aaa.web.ServletDetails;
13 import org.opendaylight.aaa.web.WebContext;
14 import org.opendaylight.aaa.web.WebContextSecurer;
15 import org.opendaylight.aaa.web.WebServer;
16 import org.opendaylight.aaa.web.servlet.ServletSupport;
17 import org.opendaylight.yangtools.concepts.Registration;
18
19 /**
20  * Initializes the wep app.
21  *
22  * @author Thomas Pantelis
23  */
24 public final class WebInitializer implements AutoCloseable {
25     private final Registration registration;
26
27     public WebInitializer(final WebServer webServer,  final WebContextSecurer webContextSecurer,
28             final ServletSupport servletSupport, final Application webApp) throws ServletException {
29         final var webContextBuilder = WebContext.builder().contextPath("/yanglib").supportsSessions(true)
30             .addServlet(ServletDetails.builder()
31                 .servlet(servletSupport.createHttpServletBuilder(webApp).build())
32                 .addUrlPattern("/*")
33                 .build());
34
35         webContextSecurer.requireAuthentication(webContextBuilder, "/*");
36
37         registration = webServer.registerWebContext(webContextBuilder.build());
38     }
39
40     @Override
41     public void close() {
42         registration.close();
43     }
44 }