package com.dacrt.SBIABackend.dto;

import java.util.List;

import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.validation.constraints.NotNull;

public class ProceResponseDto {
	@NotNull
	private Integer id;

	@NotNull
	private String name;
	
	private String dsc;
	
	private String ref;
	
	private List<Integer> channels;
	
	@NotNull
	private StatusDto status;
	
	@NotNull
	private List<ServiceoffersDto> serviceoffers;
	
	@NotNull
	private ProcessTypeDto type;
	
	@NotNull
	private ProcessRemoteDto remote;
	
	@NotNull
	private OperationlineDto operationline;
	
	private List<ChannelDto> channelss;

	public ProceResponseDto() {
		super();
	}

	public ProceResponseDto(@NotNull Integer id, @NotNull String name, String dsc, String ref, List<Integer> channels,
			@NotNull StatusDto status, @NotNull List<ServiceoffersDto> serviceoffers, @NotNull ProcessTypeDto type,
			@NotNull ProcessRemoteDto remote, @NotNull OperationlineDto operationline, List<ChannelDto> channelss) {
		super();
		this.id = id;
		this.name = name;
		this.dsc = dsc;
		this.ref = ref;
		this.channels = channels;
		this.status = status;
		this.serviceoffers = serviceoffers;
		this.type = type;
		this.remote = remote;
		this.operationline = operationline;
		this.channelss = channelss;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

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

	public String getDsc() {
		return dsc;
	}

	public void setDsc(String dsc) {
		this.dsc = dsc;
	}

	public String getRef() {
		return ref;
	}

	public void setRef(String ref) {
		this.ref = ref;
	}

	public List<Integer> getChannels() {
		return channels;
	}

	public void setChannels(List<Integer> channels) {
		this.channels = channels;
	}

	public StatusDto getStatus() {
		return status;
	}

	public void setStatus(StatusDto status) {
		this.status = status;
	}

	public List<ServiceoffersDto> getServiceoffers() {
		return serviceoffers;
	}

	public void setServiceoffers(List<ServiceoffersDto> serviceoffers) {
		this.serviceoffers = serviceoffers;
	}

	public ProcessTypeDto getType() {
		return type;
	}

	public void setType(ProcessTypeDto type) {
		this.type = type;
	}

	public ProcessRemoteDto getRemote() {
		return remote;
	}

	public void setRemote(ProcessRemoteDto remote) {
		this.remote = remote;
	}

	public OperationlineDto getOperationline() {
		return operationline;
	}

	public void setOperationline(OperationlineDto operationline) {
		this.operationline = operationline;
	}

	public List<ChannelDto> getChannelss() {
		return channelss;
	}

	public void setChannelss(List<ChannelDto> channelss) {
		this.channelss = channelss;
	}

}
