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

x7.core.bean.DomainObject Maven / Gradle / Ivy

package x7.core.bean;

import java.io.Serializable;
import java.util.List;

public class DomainObject implements Serializable {

    private static final long serialVersionUID = -1601773516153576783L;

    private Object mainId;
    private T main;
    private List withList;

    public Object getMainId() {
        return mainId;
    }

    public void setMainId(Object mainId) {
        this.mainId = mainId;
    }

    public T getMain() {
        return main;
    }

    public void setMain(T main) {
        this.main = main;
    }

    public List getWithList() {
        return withList;
    }

    public void setWithList(List withList) {
        this.withList = withList;
    }

    @Override
    public String toString() {
        return "DomainObject{" +
                "mainId=" + mainId +
                ", main=" + main +
                ", withList=" + withList +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy