Package org.hibernate.internal.util.xml
Interface Origin
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
OriginImpl
public interface Origin extends Serializable
Describes the origin of an xml document
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
The name of the document origin.String
getType()
Retrieve the type of origin.
-
-
-
Method Detail
-
getType
String getType()
Retrieve the type of origin. This is not a discrete set, but might be something likefile
for file protocol URLs, orresource
for classpath resource lookups.- Returns:
- The origin type.
-
getName
String getName()
The name of the document origin. Interpretation is relative to the type, but might be the resource name or file URL.- Returns:
- The name.
-
-