de8b97a616d6c40870179cbb6959e8c5ddbbbdb2
[netconf.git] / restconf / restconf-nb-bierman02-noauth / src / main / java / org / opendaylight / restconf / nb / bierman02 / web / noauth / 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.restconf.nb.bierman02.web.noauth;
9
10 import org.opendaylight.netconf.sal.restconf.web.Bierman02WebRegistrar;
11
12 /**
13  * Initializes the bierman-02 endpoint without authentication.
14  *
15  * @author Thomas Pantelis
16  */
17 public class WebInitializer {
18     public WebInitializer(Bierman02WebRegistrar registrar) {
19         registrar.registerWithoutAuthentication();
20     }
21 }