All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.xxdb.streaming.client.cep.EventSchemaEx Maven / Gradle / Ivy

There is a newer version: 3.00.2.2
Show newest version
package com.xxdb.streaming.client.cep;

import java.util.ArrayList;
import java.util.List;

public class EventSchemaEx {

    private EventSchema schema;
    private int timeIndex;
    private List commonKeyIndex;

    public EventSchemaEx() {
        this.schema = new EventSchema();
        this.commonKeyIndex = new ArrayList<>();
    }

    public EventSchema getSchema() {
        return this.schema;
    }

    public void setSchema(EventSchema schema) {
        this.schema = schema;
    }

    public int getTimeIndex() {
        return this.timeIndex;
    }

    public void setTimeIndex(int timeIndex) {
        this.timeIndex = timeIndex;
    }

    public List getCommonKeyIndex() {
        return this.commonKeyIndex;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy