com.thaiopensource.xml.em.ExternalId Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trang Show documentation
Show all versions of trang Show documentation
Trang, a multi-format schema converter based on RELAX NG.
package com.thaiopensource.xml.em;
public final class ExternalId {
private final String systemId;
private final String publicId;
private final String baseUri;
public ExternalId(String systemId, String publicId, String baseUri) {
this.systemId = systemId;
this.publicId = publicId;
this.baseUri = baseUri;
}
public ExternalId(String systemId) {
this(systemId, null, null);
}
public String getSystemId() {
return systemId;
}
public String getPublicId() {
return publicId;
}
public String getBaseUri() {
return baseUri;
}
}