Update yang-xpath-api design
[yangtools.git] / yang / yang-xpath-impl / src / main / java / org / opendaylight / yangtools / yang / xpath / impl / Activator.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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.yangtools.yang.xpath.impl;
9
10 import org.eclipse.jdt.annotation.Nullable;
11 import org.opendaylight.yangtools.yang.xpath.api.YangXPathParserFactory;
12 import org.osgi.framework.BundleActivator;
13 import org.osgi.framework.BundleContext;
14 import org.osgi.framework.ServiceRegistration;
15
16 /**
17  * YANG XPath implementation activator. Publishes a {@link YangXPathParserFactory} implementation on bundle start.
18  *
19  * @author Robert Varga
20  */
21 public final class Activator implements BundleActivator {
22     private @Nullable ServiceRegistration<YangXPathParserFactory> registration;
23
24     @Override
25     public void start(final @Nullable BundleContext context) throws Exception {
26         registration = context.registerService(YangXPathParserFactory.class, new AntlrXPathParserFactory(), null);
27     }
28
29     @Override
30     public void stop(final @Nullable BundleContext context) throws Exception {
31         if (registration != null) {
32             registration.unregister();
33             registration = null;
34         }
35     }
36 }