org.codehaus.stax2.evt.DTD2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.codehaus.stax2.evt;
import javax.xml.stream.events.DTD;
/**
* Interface that extends basic {@link DTD} with methods that are
* necessary to completely reproduce actual DOCTYPE declaration
* constructs in xml documents.
*/
public interface DTD2
extends DTD
{
public String getRootName();
public String getSystemId();
public String getPublicId();
public String getInternalSubset();
}