Merge "Fix codestyle"
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / sal / convertor / ConvertorExecutor.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. 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
9 package org.opendaylight.openflowplugin.openflow.md.core.sal.convertor;
10
11 import java.util.Collection;
12 import java.util.Optional;
13 import org.opendaylight.openflowplugin.openflow.md.core.sal.convertor.common.ConvertorData;
14
15 public interface ConvertorExecutor {
16     /**
17      * Lookup and use convertor by specified type, then converts source and returns converted result
18      *
19      * @param <FROM> the source type
20      * @param <TO>   the result type
21      * @param <DATA> the data type
22      * @param source the source
23      * @param data   convertor data
24      * @return the result (can be empty, if no convertor was found)
25      */
26     <FROM, TO, DATA extends ConvertorData> Optional<TO> convert(final FROM source, final DATA data);
27
28     /**
29      * Lookup and use convertor by specified type, then converts source collection and returns converted result
30      *
31      * @param <FROM> the source type
32      * @param <TO>   the result type
33      * @param <DATA> the data type
34      * @param source the source collection
35      * @param data   convertor data
36      * @return the result (can be empty, if no convertor was found)
37      */
38     <FROM, TO, DATA extends ConvertorData> Optional<TO> convert(final Collection<FROM> source, final DATA data);
39 }