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

klass.model.meta.domain.dto.ProjectionElementDTO 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 abstract class ProjectionElementDTO
{
    private Long id;
    @NotNull
    private String name;

    private List children;
    private ProjectionElementDTO parent;

    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 List getChildren()
    {
        return this.children;
    }

    public void setChildren(List children)
    {
        this.children = children;
    }

    public ProjectionElementDTO getParent()
    {
        return this.parent;
    }

    public void setParent(ProjectionElementDTO parent)
    {
        this.parent = parent;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy