Migrate sal-rest-docgen to MD-SAL APIs
[netconf.git] / restconf / sal-rest-docgen / src / main / java / org / opendaylight / netconf / sal / rest / doc / impl / MountPointSwaggerGeneratorDraft02.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.netconf.sal.rest.doc.impl;
9
10 import java.util.Optional;
11 import org.opendaylight.mdsal.dom.api.DOMMountPointService;
12 import org.opendaylight.mdsal.dom.api.DOMSchemaService;
13 import org.opendaylight.netconf.sal.rest.doc.mountpoints.MountPointSwagger;
14
15 /**
16  * MountPoint generator implementation for bierman draft02.
17  *
18  * @author Thomas Pantelis
19  */
20 public class MountPointSwaggerGeneratorDraft02 extends BaseYangSwaggerGeneratorDraft02 implements AutoCloseable {
21
22     private final MountPointSwagger mountPointSwagger;
23
24     public MountPointSwaggerGeneratorDraft02(final DOMSchemaService schemaService,
25             final DOMMountPointService mountService) {
26         super(Optional.of(schemaService));
27         mountPointSwagger = new MountPointSwagger(schemaService, mountService, this);
28         mountPointSwagger.init();
29     }
30
31     public MountPointSwagger getMountPointSwagger() {
32         return mountPointSwagger;
33     }
34
35     @Override
36     public void close() {
37         mountPointSwagger.close();
38     }
39 }