io.konga.metadata.definition.Linked Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of konga-metadata Show documentation
Show all versions of konga-metadata Show documentation
Konga Metadata is the Java Metadata Generator for Konga projects. It leverages an annotation framework along with a reflective JSON generator to get your metadata - defined within your model POJOs directly. See more about this project at http://konga.io/.
The newest version!
package io.konga.metadata.definition;
public class Linked {
private String[] to;
private String via;
public String[] getTo() {
return to;
}
public void setTo(String[] to) {
this.to = to;
}
public String getVia() {
return via;
}
public void setVia(String via) {
this.via = via;
}
}