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

com.thaiopensource.resolver.xml.ExternalEntityIdentifier Maven / Gradle / Ivy

There is a newer version: 20220510
Show newest version
package com.thaiopensource.resolver.xml;

/**
 *
 */
public class ExternalEntityIdentifier extends ExternalIdentifier {
  private final String entityName;

  /**
   *
   * @param href
   * @param base
   * @param publicId maybe null
   * @param entityName starts with a % for a parameter entity, may be null
   */
  public ExternalEntityIdentifier(String href, String base, String publicId, String entityName) {
    super(href, base, publicId);
    this.entityName = entityName;
  }

  public String getEntityName() {
    return entityName;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy