Package org.apache.axis2.jaxws.catalog
Interface JAXWSCatalogManager
- All Known Implementing Classes:
OASISCatalogManager
public interface JAXWSCatalogManager
-
Method Summary
Modifier and TypeMethodDescriptionorg.apache.xml.resolver.CatalogGet a catalog instance.Get the current Catalog class name.Return the current list of catalog files.booleanReturn the current prefer public setting.org.apache.xml.resolver.CatalogGet a new catalog instance.booleanGet the current use static catalog setting.intWhat is the current verbosity?voidsetCatalogClassName(String className) Set the Catalog class name.voidsetCatalogFiles(String fileList) Set the list of catalog files.voidsetPreferPublic(boolean preferPublic) Set the prefer public setting.voidsetUseStaticCatalog(boolean useStatic) Set the use static catalog setting.voidsetVerbosity(int verbosity) Set the current verbosity.
-
Method Details
-
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
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
Set the Catalog class name.
-