5b6ed88f3129295c6f3075098cf019392ab07a1a
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / route / impl / src / main / java / com / highstreet / technologies / odl / app / impl / tools / FC2Executor.java
1 /*
2  * Copyright © 2015 ZTE 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 com.highstreet.technologies.odl.app.impl.tools;
9
10 import com.highstreet.technologies.odl.app.impl.delegates.LtpInOdlCreator;
11 import org.opendaylight.controller.md.sal.common.api.data.ReadFailedException;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.route.rev150105.fc_desc.Fc;
13
14 /**
15  * Created by odl on 17-6-3.
16  */
17 public class FC2Executor
18 {
19     public NeExecutor to(Fc fc, Integer vlanid, LtpInOdlCreator ltpCreator) throws ReadFailedException
20     {
21         return new NeExecutor(fc, vlanid, ltpCreator);
22     }
23 }