Methods Summary |
---|
public void | addRegistryConnectionResources(java.lang.String jndiName, java.lang.String description, java.lang.String type, java.util.Map properties)Adds registry specific resources to the domain.
Adds a connector connection pool and then proceeds to add a connector
resource
WebServiceMgrBackEnd.getManager().
addRegistryConnectionResources(jndiName, description, type, properties);
|
public final java.lang.String | getGroup()Returns the Group information of this MBean.
return( AMX.GROUP_OTHER );
|
public java.util.Map | getWebServiceEndpointInfo(java.lang.Object name)Return WebServiceInfo for a web service.
if ( name instanceof String)
{
return TypeCast.asMap(
WebServiceMgrBackEnd.getManager().getWebServiceInfoMap((String)name) );
}
else
{
throw new IllegalArgumentException();
}
|
public java.util.Map | getWebServiceEndpointKeys()Returns a Map containing web services and the fully qualified name for
each web service. This fully qualified name must be used to get more
details about this web service.
final Map<?,?> m = WebServiceMgrBackEnd.getManager().getWebServicesMap();
final Map<Object,String> result =
TypeCast.checkMap( m, Object.class, String.class );
return result;
|
public java.util.Set | getWebServiceEndpointObjectNameSet(java.lang.Object webServiceInfoKey, java.lang.String sName)Returns the set of WebServiceEndpoint runtime mbeans for the specified
Web Service Endpoint name on the specified server instance.
String objNamePat = WebServiceMgrBackEnd.getManager().
getWebServiceEndpointObjectNames(webServiceInfoKey, sName);
if (objNamePat == null) {
return new HashSet<ObjectName>();
} else {
return getQueryMgr().queryPropsObjectNameSet(objNamePat);
}
|
public java.lang.String[] | listRegistryLocations()Returns list of configured web service registry access points.
return WebServiceMgrBackEnd.getManager().listRegistryLocations();
|
public void | publishToRegistry(java.lang.String[] registryLocations, java.lang.Object webServiceEndpointKey, java.util.Map optional)Publishes the WSDL of webService to the registries specified by the
JNDI Names
WebServiceMgrBackEnd.getManager().
publishToRegistry(registryLocations, webServiceEndpointKey,
optional);
|
public void | removeRegistryConnectionResources(java.lang.String jndiNameOfRegistry)Removes the registry specific resources from the domain.
Peeks at the connector-resource element to obtain the
connector-connection-pool name. Using this pool name, removes the
connector-connection-pool, proceeds further to remove the
connector-resource
WebServiceMgrBackEnd.getManager().removeRegistryConnectionResources(jndiNameOfRegistry);
|
public void | unpublishFromRegistry(java.lang.String[] registryLocations, java.lang.Object webServiceEndpointKey)Unpublish WSDL of the specified webservice from the registries specified
via their JNDI names
WebServiceMgrBackEnd.getManager().
unpublishFromRegistry(registryLocations,
webServiceEndpointKey);
|