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

klass.model.meta.domain.dto.UrlParameterDTO Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
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 class UrlParameterDTO
{
    @NotNull
    private UrlParameterTypeDTO type;

    private UrlDTO url;
    private ParameterDTO parameter;

    public UrlParameterTypeDTO getType()
    {
        return this.type;
    }

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

    public UrlDTO getUrl()
    {
        return this.url;
    }

    public void setUrl(UrlDTO url)
    {
        this.url = url;
    }

    public ParameterDTO getParameter()
    {
        return this.parameter;
    }

    public void setParameter(ParameterDTO parameter)
    {
        this.parameter = parameter;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy