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

com.espertech.esperio.http.EsperHttpRequestCacheEntry Maven / Gradle / Ivy

package com.espertech.esperio.http;

import com.espertech.esper.event.EventBeanManufacturer;
import com.espertech.esper.event.WriteablePropertyDescriptor;
import com.espertech.esper.util.SimpleTypeParser;

public class EsperHttpRequestCacheEntry {

    private final EventBeanManufacturer eventBeanManufacturer;
    private final WriteablePropertyDescriptor[] writableProperties;
    private final SimpleTypeParser[] parsers;

    public EsperHttpRequestCacheEntry(EventBeanManufacturer eventBeanManufacturer, WriteablePropertyDescriptor[] writableProperties, SimpleTypeParser[] parsers) {
        this.eventBeanManufacturer = eventBeanManufacturer;
        this.writableProperties = writableProperties;
        this.parsers = parsers;
    }

    public EventBeanManufacturer getEventBeanManufacturer() {
        return eventBeanManufacturer;
    }

    public WriteablePropertyDescriptor[] getWritableProperties() {
        return writableProperties;
    }

    public SimpleTypeParser[] getParsers() {
        return parsers;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy