Updated PoC APIs of Model-driven SAL
[controller.git] / opendaylight / sal / yang-prototype / concepts-lang / src / main / java / org / opendaylight / controller / concepts / lang / AggregateTransformer.java
1 /*
2  * Copyright (c) 2013 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.controller.concepts.lang;
10 import java.util.Collection;
11 /**
12  *
13  * @author Tony Tkacik
14  *
15  * @param <I>
16  * @param <P>
17  */
18 public interface AggregateTransformer<I,P> extends Transformer<I,P> {
19
20     Collection<P> transformAll(Collection<? extends I> inputs);
21 }