Package org.apache.axis2.jaxws.catalog
Interface JAXWSCatalogManager
-
- All Known Implementing Classes:
OASISCatalogManager
public interface JAXWSCatalogManager
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.xml.resolver.Catalog
getCatalog()
Get a catalog instance.String
getCatalogClassName()
Get the current Catalog class name.Vector
getCatalogFiles()
Return the current list of catalog files.boolean
getPreferPublic()
Return the current prefer public setting.org.apache.xml.resolver.Catalog
getPrivateCatalog()
Get a new catalog instance.boolean
getUseStaticCatalog()
Get the current use static catalog setting.int
getVerbosity()
What is the current verbosity?void
setCatalogClassName(String className)
Set the Catalog class name.void
setCatalogFiles(String fileList)
Set the list of catalog files.void
setPreferPublic(boolean preferPublic)
Set the prefer public setting.void
setUseStaticCatalog(boolean useStatic)
Set the use static catalog setting.void
setVerbosity(int verbosity)
Set the current verbosity.
-
-
-
Method Detail
-
getVerbosity
int getVerbosity()
What is the current verbosity?
-
setVerbosity
void setVerbosity(int verbosity)
Set the current verbosity.
-
getCatalogFiles
Vector getCatalogFiles()
Return the current list of catalog files.- Returns:
- A vector of the catalog file names or null if no catalogs are available in the properties.
-
setCatalogFiles
void setCatalogFiles(String fileList)
Set the list of catalog files.
-
getPreferPublic
boolean getPreferPublic()
Return the current prefer public setting.- Returns:
- True if public identifiers are preferred.
-
setPreferPublic
void setPreferPublic(boolean preferPublic)
Set the prefer public setting.
-
getUseStaticCatalog
boolean getUseStaticCatalog()
Get the current use static catalog setting.
-
setUseStaticCatalog
void setUseStaticCatalog(boolean useStatic)
Set the use static catalog setting.
-
getPrivateCatalog
org.apache.xml.resolver.Catalog getPrivateCatalog()
Get a new catalog instance. This method always returns a new instance of the underlying catalog class.
-
getCatalog
org.apache.xml.resolver.Catalog getCatalog()
Get a catalog instance. If this manager uses static catalogs, the same static catalog will always be returned. Otherwise a new catalog will be returned.
-
getCatalogClassName
String getCatalogClassName()
Get the current Catalog class name.
-
setCatalogClassName
void setCatalogClassName(String className)
Set the Catalog class name.
-
-