org.mustangproject.SchemedID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library Show documentation
Show all versions of library Show documentation
FOSS Java library to read, write and validate european electronic invoices and orders in the UN/CEFACT Cross Industry Invoice based formats Factur-X/ZUGFeRD, XRechnung and Order-X in your invoice PDFs.
package org.mustangproject;
public class SchemedID {
protected String scheme;
protected String id;
public String getScheme() {
return scheme;
}
public SchemedID setScheme(String scheme) {
this.scheme = scheme;
return this;
}
public String getID() {
return id;
}
public SchemedID setId(String id) {
this.id = id;
return this;
}
public SchemedID() {
}
public SchemedID(String scheme, String id) {
setScheme(scheme);
setId(id);
}
@Override
public String toString() {
return "SchemedID{scheme='" + scheme + "', id='" + id + "'}";
}
}