/* * Copyright (C) 2014 Red Hat, Inc. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html * * Authors : Madhu Venugopal */ package org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.services; import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.AbstractServiceInstance; import org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13.Service; public class OutboundNatService extends AbstractServiceInstance { public OutboundNatService() { super(Service.OUTBOUND_NAT); } public OutboundNatService(Service service) { super(service); } @Override public boolean isBridgeInPipeline (String nodeId) { return true; } }