aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/a1pesimulator/service/common/EventCustomizer.java
blob: 23096bdc7d869d613b0af28578c7a39fcf5200f4 (plain)
1
2
3
4
5
6
7
8
9
10
package org.onap.a1pesimulator.service.common;

import java.util.function.Function;

import org.onap.a1pesimulator.data.ves.VesEvent;

@FunctionalInterface
public interface EventCustomizer extends Function<VesEvent, VesEvent> {

}