package org.onap.sdc.dcae.composition.restmodels.ruleeditor; import java.util.Set; import com.google.common.collect.ImmutableList; public class EventTypesByVersionUI { public static final ImmutableList DEFAULT_EVENTS = ImmutableList.of("commonEventHeader"); private String version; private Set eventTypes; EventTypesByVersionUI(){} public EventTypesByVersionUI(String version, Set eventTypes) { super(); this.version = version; this.eventTypes = eventTypes; } public String getVersion() { return version; } public Set getEventTypes() { return eventTypes; } public void setVersion(String version) { this.version = version; } public void setEventTypes(Set eventTypes) { this.eventTypes = eventTypes; } }