klass.model.meta.domain.dto.ParameterDTO Maven / Gradle / Ivy
package klass.model.meta.domain.dto;
import java.time.*;
import java.util.*;
import javax.validation.constraints.*;
/**
* Auto-generated by {@link cool.klass.generator.dto.DataTransferObjectsGenerator}
*/
public abstract class ParameterDTO
{
private Long id;
@NotNull
private String name;
@NotNull
private MultiplicityDTO multiplicity;
private List variableReferences;
private UrlParameterDTO urlParameter;
public Long getId()
{
return this.id;
}
public void setId(Long id)
{
this.id = id;
}
public String getName()
{
return this.name;
}
public void setName(String name)
{
this.name = name;
}
public MultiplicityDTO getMultiplicity()
{
return this.multiplicity;
}
public void setMultiplicity(MultiplicityDTO multiplicity)
{
this.multiplicity = multiplicity;
}
public List getVariableReferences()
{
return this.variableReferences;
}
public void setVariableReferences(List variableReferences)
{
this.variableReferences = variableReferences;
}
public UrlParameterDTO getUrlParameter()
{
return this.urlParameter;
}
public void setUrlParameter(UrlParameterDTO urlParameter)
{
this.urlParameter = urlParameter;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy