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

klass.model.meta.domain.dto.CriteriaDTO 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.*;


/**
 * Auto-generated by {@link cool.klass.generator.dto.DataTransferObjectsGenerator}
 */
public abstract class CriteriaDTO
{
    private Long id;

    private AssociationDTO association;
    private BinaryCriteriaDTO ownerOfLeftCriteria;
    private BinaryCriteriaDTO ownerOfRightCriteria;
    private ServiceDTO queryService;
    private ServiceDTO authorizeService;
    private ServiceDTO validateService;
    private ServiceDTO conflictService;

    public Long getId()
    {
        return this.id;
    }

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

    public AssociationDTO getAssociation()
    {
        return this.association;
    }

    public void setAssociation(AssociationDTO association)
    {
        this.association = association;
    }

    public BinaryCriteriaDTO getOwnerOfLeftCriteria()
    {
        return this.ownerOfLeftCriteria;
    }

    public void setOwnerOfLeftCriteria(BinaryCriteriaDTO ownerOfLeftCriteria)
    {
        this.ownerOfLeftCriteria = ownerOfLeftCriteria;
    }

    public BinaryCriteriaDTO getOwnerOfRightCriteria()
    {
        return this.ownerOfRightCriteria;
    }

    public void setOwnerOfRightCriteria(BinaryCriteriaDTO ownerOfRightCriteria)
    {
        this.ownerOfRightCriteria = ownerOfRightCriteria;
    }

    public ServiceDTO getQueryService()
    {
        return this.queryService;
    }

    public void setQueryService(ServiceDTO queryService)
    {
        this.queryService = queryService;
    }

    public ServiceDTO getAuthorizeService()
    {
        return this.authorizeService;
    }

    public void setAuthorizeService(ServiceDTO authorizeService)
    {
        this.authorizeService = authorizeService;
    }

    public ServiceDTO getValidateService()
    {
        return this.validateService;
    }

    public void setValidateService(ServiceDTO validateService)
    {
        this.validateService = validateService;
    }

    public ServiceDTO getConflictService()
    {
        return this.conflictService;
    }

    public void setConflictService(ServiceDTO conflictService)
    {
        this.conflictService = conflictService;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy