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

com.espertech.esper.runtime.internal.kernel.service.DeployerModulePaths Maven / Gradle / Ivy

There is a newer version: 9.0.0
Show newest version
/*
 ***************************************************************************************
 *  Copyright (C) 2006 EsperTech, Inc. All rights reserved.                            *
 *  http://www.espertech.com/esper                                                     *
 *  http://www.espertech.com                                                           *
 *  ---------------------------------------------------------------------------------- *
 *  The software in this package is published under the terms of the GPL license       *
 *  a copy of which has been included with this distribution in the license.txt file.  *
 ***************************************************************************************
 */
package com.espertech.esper.runtime.internal.kernel.service;

import com.espertech.esper.common.client.EventType;
import com.espertech.esper.common.internal.epl.script.core.NameAndParamNum;

import java.util.List;
import java.util.Map;

public class DeployerModulePaths {
    private final Map deploymentTypes;
    private final List pathEventTypes;
    private final List pathNamedWindows;
    private final List pathTables;
    private final List pathContexts;
    private final List pathVariables;
    private final List pathExprDecl;
    private final List pathScripts;
    private final List pathClassProvideds;

    public DeployerModulePaths(Map deploymentTypes, List pathEventTypes, List pathNamedWindows, List pathTables, List pathContexts, List pathVariables, List pathExprDecl, List pathScripts, List pathClassProvideds) {
        this.deploymentTypes = deploymentTypes;
        this.pathEventTypes = pathEventTypes;
        this.pathNamedWindows = pathNamedWindows;
        this.pathTables = pathTables;
        this.pathContexts = pathContexts;
        this.pathVariables = pathVariables;
        this.pathExprDecl = pathExprDecl;
        this.pathScripts = pathScripts;
        this.pathClassProvideds = pathClassProvideds;
    }

    public Map getDeploymentTypes() {
        return deploymentTypes;
    }

    public List getPathEventTypes() {
        return pathEventTypes;
    }

    public List getPathNamedWindows() {
        return pathNamedWindows;
    }

    public List getPathTables() {
        return pathTables;
    }

    public List getPathContexts() {
        return pathContexts;
    }

    public List getPathVariables() {
        return pathVariables;
    }

    public List getPathExprDecl() {
        return pathExprDecl;
    }

    public List getPathScripts() {
        return pathScripts;
    }

    public List getPathClassProvideds() {
        return pathClassProvideds;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy