aboutsummaryrefslogtreecommitdiffstats
path: root/dcae-analytics-model/src/main/java/org/openecomp/dcae/apod/analytics/model/util/json/mixin/config/tca/StreamsSubscribesMixin.java
blob: 1593389ad9264a456d64eda93237ac9fbbc9481e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.dcae.apod.analytics.model.util.json.mixin.config.tca;

import com.fasterxml.jackson.annotation.JsonProperty;
import org.openecomp.dcae.apod.analytics.model.config.tca.TCAHandleIn;

/**
 * Author: rs153v (Rajiv Singla) . Creation Date: 8/25/2017.
 */
public abstract class StreamsSubscribesMixin extends BaseTCAAppConfigModelMixin {

    @JsonProperty("tca_handle_in")
    TCAHandleIn tcaHandleIn;

}