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

org.mustangproject.SchemedID Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.15.0
Show newest version
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 + "'}";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy