Added Template classes for all the static services.
[ovsdb.git] / openstack / net-virt-providers / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / providers / openflow13 / services / ClassifierService.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.
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  * Authors : Madhu Venugopal
9  */
10 package org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.services;
11
12 import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.AbstractServiceInstance;
13 import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.Service;
14
15 public class ClassifierService extends AbstractServiceInstance {
16     public ClassifierService() {
17         super(Service.CLASSIFIER);
18     }
19
20     public ClassifierService(Service service) {
21         super(service);
22     }
23
24     @Override
25     public boolean isBridgeInPipeline (String nodeId) {
26         return true;
27     }
28 }