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

io.katharsis.request.dto.LinkageData Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.katharsis.request.dto;

public class LinkageData {
    private String type;
    private String id;

    public LinkageData() {
    }

    public LinkageData(@SuppressWarnings("SameParameterValue") String type, String id) {
        this.type = type;
        this.id = id;
    }

    public String getType() {
        return type;
    }

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

    public String getId() {
        return id;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy