Merge branch 'master' of ../controller
[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
15 /**
16  * YANG XPath implementation activator. Publishes a {@link YangXPathParserFactory} implementation on bundle start.
17  *
18  * @author Robert Varga
19  */
20 public final class Activator implements BundleActivator {
21     @Override
22     public void start(final @Nullable BundleContext context) throws Exception {
23         context.registerService(YangXPathParserFactory.class, new AntlrXPathParserFactory(), null);
24     }
25
26     @Override
27     public void stop(final @Nullable BundleContext context) throws Exception {
28         // No-op, framework will unregister our services
29     }
30 }