package com.dacrt.SBIABackend.dto;

import java.util.List;

import javax.validation.constraints.NotNull;

public class ProcessResponseDto {
	@NotNull
	private Integer id;

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

	public ProcessResponseDto() {
		super();
	}

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

	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 UnidadResponseRelatedDto getUnit() {
		return unit;
	}

	public void setUnit(UnidadResponseRelatedDto unit) {
		this.unit = unit;
	}

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

	
}
