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

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

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 commonFieldIndex;

    public EventSchemaEx() {
        this.schema = new EventSchema();
        this.commonFieldIndex = 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 getCommonFieldIndex() {
        return this.commonFieldIndex;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy