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.CataloggetCatalog()Get a catalog instance.StringgetCatalogClassName()Get the current Catalog class name.VectorgetCatalogFiles()Return the current list of catalog files.booleangetPreferPublic()Return the current prefer public setting.org.apache.xml.resolver.CataloggetPrivateCatalog()Get a new catalog instance.booleangetUseStaticCatalog()Get the current use static catalog setting.intgetVerbosity()What 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 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.
-
-