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

com.github.hermannpencole.nifi.config.model.GroupProcessorsEntity Maven / Gradle / Ivy

package com.github.hermannpencole.nifi.config.model;

import com.github.hermannpencole.nifi.swagger.client.model.ControllerServiceDTO;
import com.github.hermannpencole.nifi.swagger.client.model.ProcessorDTO;
import com.google.gson.annotations.SerializedName;

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

/**
 * Created by SFRJ2737 on 2017-05-26.
 */
public class GroupProcessorsEntity {

    @SerializedName("processors")
    private List processors = new ArrayList<>();

    @SerializedName("groupProcessorsEntity")
    private List groupProcessorsEntity = new ArrayList<>();

    @SerializedName("controllerServices")
    private List controllerServicesDTO = new ArrayList<>();

    @SerializedName("connections")
    private List connectionPorts = new ArrayList<>();

    @SerializedName("namedConnections")
    private List connections = new ArrayList<>();

    @SerializedName("name")
    private String name;


    public List getProcessors() {
        return processors;
    }

    public void setProcessors(List processors) {
        this.processors = processors;
    }

    public List getGroupProcessorsEntity() {
        return groupProcessorsEntity;
    }

    /**
     * set the groupProcessorsEntity
     * @param groupProcessorsEntity the groupProcessorsEntity
     */
    public void setGroupProcessorsEntity(List groupProcessorsEntity) {
        this.groupProcessorsEntity = groupProcessorsEntity;
    }

    public List getControllerServicesDTO() {
        return controllerServicesDTO;
    }

    public void setControllerServicesDTO(List controllerServicesDTO) {
        this.controllerServicesDTO = controllerServicesDTO;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }


    public List getConnectionPorts() {
        return connectionPorts;
    }

    public void setConnectionPorts(List connectionPorts) {
        this.connectionPorts = connectionPorts;
    }

    public List getConnections() {
        return connections;
    }

    public void setConnections(List connections) {
        this.connections = connections;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy