Uses of Class
org.apache.muse.ws.addressing.soap.SoapFault

Packages that use SoapFault
org.apache.muse.core   
org.apache.muse.core.descriptor   
org.apache.muse.core.platform   
org.apache.muse.core.platform.osgi.descriptor   
org.apache.muse.core.platform.osgi.routing   
org.apache.muse.core.proxy   
org.apache.muse.core.routing   
org.apache.muse.core.serializer   
org.apache.muse.tools.inspector   
org.apache.muse.ws.addressing   
org.apache.muse.ws.addressing.soap   
org.apache.muse.ws.dm.muws   
org.apache.muse.ws.dm.muws.adv.impl   
org.apache.muse.ws.dm.muws.ext.faults   
org.apache.muse.ws.dm.muws.impl   
org.apache.muse.ws.dm.muws.remote   
org.apache.muse.ws.metadata.impl   
org.apache.muse.ws.metadata.remote   
org.apache.muse.ws.notification   
org.apache.muse.ws.notification.faults   
org.apache.muse.ws.notification.impl   
org.apache.muse.ws.notification.remote   
org.apache.muse.ws.resource.basefaults   
org.apache.muse.ws.resource.ext.faults   
org.apache.muse.ws.resource.faults   
org.apache.muse.ws.resource.impl   
org.apache.muse.ws.resource.lifetime.faults   
org.apache.muse.ws.resource.lifetime.impl   
org.apache.muse.ws.resource.metadata   
org.apache.muse.ws.resource.metadata.ext   
org.apache.muse.ws.resource.metadata.faults   
org.apache.muse.ws.resource.metadata.impl   
org.apache.muse.ws.resource.properties.get.faults   
org.apache.muse.ws.resource.properties.get.impl   
org.apache.muse.ws.resource.properties.impl   
org.apache.muse.ws.resource.properties.query.faults   
org.apache.muse.ws.resource.properties.query.impl   
org.apache.muse.ws.resource.properties.schema.faults   
org.apache.muse.ws.resource.properties.set.faults   
org.apache.muse.ws.resource.properties.set.impl   
org.apache.muse.ws.resource.remote   
org.apache.muse.ws.resource.sg.faults   
org.apache.muse.ws.resource.sg.impl   
org.apache.muse.ws.resource.sg.remote   
 

Uses of SoapFault in org.apache.muse.core
 

Methods in org.apache.muse.core that return SoapFault
 SoapFault InitializationFailure.getCauseOfFailure()
           
 

Methods in org.apache.muse.core that throw SoapFault
 void ResourceManager.addResource(EndpointReference epr, Resource resource)
          Add a resource to the manager, associated with the given EPR.
 void SimpleResourceManager.addResource(EndpointReference epr, Resource resource)
           
 Resource ResourceManager.createResource(String contextPath)
          Finds the resource type definition associated with the given context path (defined in muse.xml), instantiates an instance of the resource class, and sets the basic values (EPR, initialization parameters, etc.) and Muse components (Environment, log file, etc.) that it needs to operate.
 Resource SimpleResourceManager.createResource(String contextPath)
           
protected  void AbstractFilePersistence.createResourceFile(EndpointReference epr, Resource resource)
          Creates the proper file name for the given resource instance and then delegates creation of the file's contents to the abstract method of the same name.
protected abstract  void AbstractFilePersistence.createResourceFile(EndpointReference epr, Resource resource, File resourceFile)
          This method should be overridden by concrete file-based persistence classes to create the given file and fill it with the appropriate XML content.
protected  void AbstractFilePersistence.destroyResourceFile(EndpointReference epr)
          Finds the file associated with the given resource EPR and removes it from the file system.
 void Initialization.initialize()
           
 void SimpleResource.initialize()
           
 void SimpleResourceManager.initialize()
           
 void AbstractCapability.initialize()
           
protected  void SimpleResource.initializeCapabilities()
          This method can be overridden to provide additional capability initialization logic that applies generally to all capabilities.
 void Capability.initializeCompleted()
          This method is called by the containing Resource after all other capabilities have been initialized via initialize().
 void AbstractCapability.initializeCompleted()
           
 Object AbstractResourceClient.invoke(ProxyHandler handler, Object[] parameters)
          This is a convenience method that uses the given ProxyHandler to serialize the parameters (and deserialize the response) before calling invoke(String, Element).
 Object AbstractResourceClient.invoke(ProxyHandler handler, Object[] parameters, Element[] extraHeaders)
          This is a convenience method that uses the given ProxyHandler to serialize the parameters (and deserialize the response) before calling invoke(String, Element).
 Element AbstractResourceClient.invoke(String action, Element soapBody)
          A generic method invocation mechanism - this can be used by other proxy methods as well as users in order to send arbitrary requests to a resource.
 Element AbstractResourceClient.invoke(String action, Element soapBody, Element[] extraHeaders)
          A generic method invocation mechanism - this can be used by other proxy methods as well as users in order to send arbitrary requests to a resource.
 void Capability.prepareShutdown()
          This method is called prior to shutdown() and allows the capability to do any shutdown tasks that require the presence of certain other capabilities.
 void AbstractCapability.prepareShutdown()
           
 void Persistence.reload()
          Reads any data that was persisted by the class back into memory and provides it to the proper components (resource or capability).
 void AbstractFilePersistence.reload()
          This implementation re-loads all saved instances of the resource types found in the ResourceManager.
protected abstract  Resource AbstractFilePersistence.reloadResource(String contextPath, Element resourceXML)
          This method should be overridden by concrete file-based persistence classes to update a resource instance with the saved data from the XML fragment.
protected  void AbstractFilePersistence.reloadResources(String contextPath, File resourceTypeDir)
          This method finds all of the files in the resource type's persistence directory and reloads them one at a time.
 void ResourceManager.removeResource(EndpointReference epr)
          Removes the EPR-resource pair from the manager.
 void SimpleResourceManager.removeResource(EndpointReference epr)
           
 void ResourceManagerListener.resourceAdded(EndpointReference epr, Resource resource)
           
 void ResourceManagerListener.resourceRemoved(EndpointReference epr)
           
 void Shutdown.shutdown()
           
 void SimpleResource.shutdown()
          

This implementation double-checks to make sure the resource hasn't already been destroyed and then nulls-out all references to internal data structures (this will highlight bugs caused by stale references and prevent "undefined behavior").
 void SimpleResourceManager.shutdown()
          This implementation loops through all existing resource instances and tells them to shutdown().
 void AbstractCapability.shutdown()
           
protected  void SimpleResource.shutdownCapabilities()
          This method can be overridden to provide additional capability shutdown logic that applies generally to all capabilities.
 

Uses of SoapFault in org.apache.muse.core.descriptor
 

Methods in org.apache.muse.core.descriptor that throw SoapFault
protected  Collection SimpleResourceDescriptor.createCapabilityDefinitions(Element xml, Environment env, WsdlConfig wsdlConfig)
           
protected  PersistenceDefinition SimpleCapabilityDescriptor.createPersistence(Element xml, Environment env)
           
protected  PersistenceDefinition SimpleRouterDescriptor.createPersistence(Element xml, Environment env)
           
protected  Collection SimpleDeploymentDescriptor.createResourceDefinitions(Element xml, Environment env)
           
protected  RouterDefinition SimpleDeploymentDescriptor.createRouterDefinition(Element xml, Environment env)
           
 Collection SimpleDeploymentDescriptor.createSerializerDefinitions(Element xml, Environment env)
           
 void DeploymentDescriptor.load(Document descriptorDoc, Environment environment)
           
 void SimpleDeploymentDescriptor.load(Document xml, Environment environment)
           
 void InitParamDescriptor.load(Element elementContainingInitParams)
           
 void SimpleResourceDescriptor.load(Element xml, Environment environment)
           
 void ResourceDescriptor.load(Element resourceXML, Environment environment)
           
 void CapabilityDescriptor.load(Element capabilityXML, Environment environment)
           
 void PersistenceDescriptor.load(Element persistenceXML, Environment env)
           
 void RouterDescriptor.load(Element routerXML, Environment environment)
           
 void SerializerDescriptor.load(Element serializerXML, Environment environment)
           
 void SimpleCapabilityDescriptor.load(Element xml, Environment environment)
           
 void SimplePersistenceDescriptor.load(Element persistenceXML, Environment env)
           
 void SimpleRouterDescriptor.load(Element xml, Environment environment)
           
 void RouterPersistenceDescriptor.load(Element persistenceXML, Environment env)
           
 

Uses of SoapFault in org.apache.muse.core.platform
 

Methods in org.apache.muse.core.platform that return SoapFault
 SoapFault AbstractIsolationLayer.getCauseOfFailure()
           
 

Methods in org.apache.muse.core.platform that throw SoapFault
 void AbstractIsolationLayer.shutdown()
           
 

Uses of SoapFault in org.apache.muse.core.platform.osgi.descriptor
 

Methods in org.apache.muse.core.platform.osgi.descriptor that throw SoapFault
protected  Collection OSGiDeploymentDescriptor.createResourceDefinitions(Element xml, Environment env)
          creates the set of resource definitions for a deployment descriptor.
protected  RouterDefinition OSGiDeploymentDescriptor.createRouterDefinition(Element xml, Environment env)
          factory method for creating RouterDefinitions
 Collection OSGiDeploymentDescriptor.createSerializerDefinitions(Element xml, Environment env)
           
 String OSGiDeploymentDescriptor.getWsdlPathForContext(Document xml, String context)
           
 void OSGiDeploymentDescriptor.load(Document xml, Environment environment)
          loads the descriptor from the muse.xml document.
 Collection OSGiDeploymentDescriptor.loadContextPaths(Document xml, Environment env)
          Loads the context paths from the muse.xml descriptor
 

Uses of SoapFault in org.apache.muse.core.platform.osgi.routing
 

Methods in org.apache.muse.core.platform.osgi.routing that throw SoapFault
 Resource ResourceRouterDelegate.getResource(EndpointReference epr)
           
 

Uses of SoapFault in org.apache.muse.core.proxy
 

Methods in org.apache.muse.core.proxy that throw SoapFault
protected  Object ReflectionProxyHandler.deserialize(Element xml, Class theClass)
          Deserializes the given DOM Element using the Serializer registered for the given type.
 Object ProxyHandler.fromXML(Element xml)
          Deserializes the given DOM Element into a POJO that can be returned to the invoker of the web service operation.
 Object ReflectionProxyHandler.fromXML(Element xml)
           
protected  Element ReflectionProxyHandler.serialize(Object obj, QName qname)
          Serializes the given object using the Serializer registered for the object's type.
 Element ProxyHandler.toXML(Object[] parameters)
          Serializes the given objects into a DOM Element that can used in a request SOAP Body.
 Element ReflectionProxyHandler.toXML(Object[] parameters)
           
 

Uses of SoapFault in org.apache.muse.core.routing
 

Methods in org.apache.muse.core.routing that throw SoapFault
protected  void RouterFilePersistence.createResourceFile(EndpointReference epr, Resource resource, File resourceFile)
          This method should be overridden by concrete file-based persistence classes to create the given file and fill it with the appropriate XML content.
 Object[] MessageHandler.fromXML(Element xml)
          Deserializes the given DOM Element into a set of POJOs that can be used when invoking a Java method.
 Object[] ReflectionMessageHandler.fromXML(Element xml)
          Deserializes the given DOM Element into a set of POJOs that can be used when invoking a Java method.
protected  Resource SimpleResourceRouter.getTargetResource()
          Queries the Environment to get the WS-A EPR being targeted by the current request and then does a lookup in the ResourceManager with that EPR.
 void SimpleResourceRouter.initialize()
          

This implementation performs initialization using the steps below.
protected  Resource RouterFilePersistence.reloadResource(String contextPath, Element resourceXML)
          This method should be overridden by concrete file-based persistence classes to update a resource instance with the saved data from the XML fragment.
 void RouterFilePersistence.resourceAdded(EndpointReference epr, Resource resource)
          This implementation checks to see if the resource type is one that is being persisted, and if so, creates a file for the instance.
 void RouterFilePersistence.resourceRemoved(EndpointReference epr)
          This implementation checks to see if the resource type is one that is being persisted, and if so, tries to delete the resource's file.
 Element MessageHandler.toXML(Object result)
          Serializes the given object into a DOM Element.
 Element ReflectionMessageHandler.toXML(Object result)
          Serializes the given object into a DOM Element.
 

Uses of SoapFault in org.apache.muse.core.serializer
 

Methods in org.apache.muse.core.serializer that throw SoapFault
 Object Serializer.fromXML(Element xml)
          Deserializes the DOM Element into a POJO whose type this Serializer is responsible for.
 Object UrlSerializer.fromXML(Element xml)
           
 Object UriSerializer.fromXML(Element xml)
           
 Object DateSerializer.fromXML(Element xml)
           
 Object ArraySerializer.fromXML(Element xml)
          Deserializes the DOM Element into a POJO whose type this Serializer is responsible for.
 Element Serializer.toXML(Object obj, QName qname)
          Serializes the given object into a DOM Element, the value wrapped inside a root element with the given name.
 Element ArraySerializer.toXML(Object obj, QName qname)
          Serializes the given object into a DOM Element, the value wrapped inside a root element with the given name.
 

Uses of SoapFault in org.apache.muse.tools.inspector
 

Methods in org.apache.muse.tools.inspector that throw SoapFault
 Object ResourceInspector.invoke(WsResourceClient resource, String operation, Object[] parameters)
          This method will invoke form the proper SOAP request for the given operation and parameters and send it to the resource represented by the given client.
 

Uses of SoapFault in org.apache.muse.ws.addressing
 

Methods in org.apache.muse.ws.addressing that throw SoapFault
protected  void MessageHeaders.throwInvalidAddressingHeaderFault(String message)
           
 

Constructors in org.apache.muse.ws.addressing that throw SoapFault
EndpointReference(Element root)
          This is a convenience constructor that creates a new EPR from the given XML, making a deep copy of it in the process.
EndpointReference(Element root, boolean makeDeepCopyOfXML)
          Creates a new EPR from the given XML definition.
MessageHeaders(Element soapHeaders)
          Creates a valid set of WS-A message headers from the given SOAP Header.
 

Uses of SoapFault in org.apache.muse.ws.addressing.soap
 

Methods in org.apache.muse.ws.addressing.soap that return SoapFault
static SoapFault SoapUtils.convertToFault(Throwable error)
           
 

Uses of SoapFault in org.apache.muse.ws.dm.muws
 

Methods in org.apache.muse.ws.dm.muws that throw SoapFault
 boolean Correlation.matches(EndpointReference epr)
           
 boolean CorrelatableProperties.matches(EndpointReference epr)
           
 boolean Match.matches(EndpointReference epr)
           
 

Uses of SoapFault in org.apache.muse.ws.dm.muws.adv.impl
 

Methods in org.apache.muse.ws.dm.muws.adv.impl that throw SoapFault
 void ServiceGroupEntryAdvertisement.initialize()
           
 void AbstractAdvertisement.initializeCompleted()
           
 void AbstractAdvertisement.resourceAdded(EndpointReference epr, Resource resource)
           
 void ServiceGroupEntryAdvertisement.resourceAdded(EndpointReference epr, Resource resource)
           
 void AbstractAdvertisement.resourceRemoved(EndpointReference epr)
           
 void ServiceGroupEntryAdvertisement.resourceRemoved(EndpointReference epr)
           
protected  void AbstractAdvertisement.sendMessage(EndpointReference sourceEPR, QName topicName, QName situationCategory, Element payload)
           
protected  void AbstractAdvertisement.subscribeInitialConsumer()
           
 

Uses of SoapFault in org.apache.muse.ws.dm.muws.ext.faults
 

Subclasses of SoapFault in org.apache.muse.ws.dm.muws.ext.faults
 class RelationshipCreationFailedFault
           
 

Uses of SoapFault in org.apache.muse.ws.dm.muws.impl
 

Methods in org.apache.muse.ws.dm.muws.impl that throw SoapFault
 Object[] QueryRelationshipsHandler.fromXML(Element xml)
           
 WsResourceClient[] QueryRelationshipsResponse.getRelationshipClients()
           
 void SimpleIdentity.initialize()
           
 void SimpleMetrics.initialize()
           
 void SimpleOperationalStatus.initialize()
           
 void SimpleRelationships.initialize()
           
 void AbstractManageabilityCapability.initializeCompleted()
           
 boolean SimpleCorrelatableProperties.matches(EndpointReference epr)
           
 boolean SimpleMatch.matches(EndpointReference epr)
           
 boolean MatchCorrelation.matches(EndpointReference epr)
           
 boolean AllMatch.matches(EndpointReference epr)
           
 boolean AnyMatch.matches(EndpointReference epr)
           
 boolean XPathCorrelation.matches(EndpointReference epr)
          

This implementation performs a WS-RP QueryResourceProperties call against the given resource using its XPath value.
 void SimpleMetrics.shutdown()
           
 

Constructors in org.apache.muse.ws.dm.muws.impl that throw SoapFault
QueryRelationships(Element xml)
           
 

Uses of SoapFault in org.apache.muse.ws.dm.muws.remote
 

Methods in org.apache.muse.ws.dm.muws.remote that throw SoapFault
 Object MetricsClient.getPropertyAsObjectAndMetrics(QName qname, Class type, Map metrics)
          This method is just like getPropertyAsObject() except that it will fill the given Map with the metrics returned in the property XML.
 Element[] MetricsClient.getResourcePropertyAndMetrics(QName qname, Map metrics)
          This method is just like getResourceProperty() except that it will fill the given Map with the metrics returned in the property XML.
 WsResourceClient[] RelationshipsClient.queryRelationshipsByType(QName[] types)
           
 

Uses of SoapFault in org.apache.muse.ws.metadata.impl
 

Methods in org.apache.muse.ws.metadata.impl that throw SoapFault
 void SimpleMetadataExchange.initialize()
           
 

Uses of SoapFault in org.apache.muse.ws.metadata.remote
 

Methods in org.apache.muse.ws.metadata.remote that throw SoapFault
 Element[] MetadataExchangeClient.getMetadata(String dialect)
           
 Element MetadataExchangeClient.getWSDL()
          This is a convenience method that calls getMetadata(String) with the WSDL dialect.
 

Uses of SoapFault in org.apache.muse.ws.notification
 

Methods in org.apache.muse.ws.notification that throw SoapFault
 void NotificationMessage.addMessageContent(QName qname, Object content)
          This method allows you to add message content that has not yet been serialized into XML.
 Object NotificationMessage.getMessageContent(QName qname, Class type)
          This is a convenience method that does the same task as getMessageContent(QName) but deserializes the message content into a POJO of the given type before returning it.
 void NotificationMessageListener.process(NotificationMessage message)
          This method is invoked ('fired') by the WS-N implementation whenever a message is received that matches the criteria (accepts()) of the listener.
 void SubscriptionManager.publish(NotificationMessage message)
          Sends the given message to the subscription's consumer resource.
 void NotificationProducer.publish(QName topicName, Element content)
          Creates a WS-N notification message with the given topic and message content and sends it to the appropriate subscribers.
 void NotificationProducer.publish(QName topicName, Element[] content)
           
 void NotificationProducer.publish(QName topicName, QName[] contentName, Object[] content)
           
 void NotificationProducer.publish(QName topicName, QName contentName, Object content)
          This is a convenience method that calls publish(QName, Element) after the given content object has been serialized to XML using the Muse serializer framework.
 void NotificationProducer.publish(QName topicName, XmlSerializable content)
          This is a convenience method that calls publish(QName, Element) after the XmlSerializable object has been serialized to XML.
 void NotificationProducer.publish(QName topicName, XmlSerializable[] content)
           
 

Uses of SoapFault in org.apache.muse.ws.notification.faults
 

Subclasses of SoapFault in org.apache.muse.ws.notification.faults
 class InvalidFilterFault
           
 class InvalidMessageContentExpressionFault
           
 class InvalidProducerPropertiesExpressionFault
           
 class InvalidTopicExpressionFault
           
 class MultipleTopicsSpecifiedFault
           
 class NoCurrentMessageOnTopicFault
           
 class NotifyMessageNotSupportedFault
           
 class PauseFailedFault
           
 class ResumeFailedFault
           
 class SubscribeCreationFailedFault
           
 class TopicExpressionDialectUnknownFault
           
 class TopicNotSupportedFault
           
 class UnableToCreatePullPointFault
           
 class UnableToGetMessagesFault
           
 class UnacceptableInitialTerminationTimeFault
           
 class UnrecognizedPolicyRequestFault
           
 class UnsupportedPolicyRequestFault
           
 

Uses of SoapFault in org.apache.muse.ws.notification.impl
 

Methods in org.apache.muse.ws.notification.impl that throw SoapFault
 void SimpleNotificationMessage.addMessageContent(QName qname, Object content)
           
protected  void NotificationProducerFilePersistence.createResourceFile(EndpointReference epr, Resource resource, File resourceFile)
           
 Object[] NotifyHandler.fromXML(Element xml)
           
 Object FilterSerializer.fromXML(Element xml)
           
 Object NotificationMessageSerializer.fromXML(Element xml)
           
 Object[] SubscribeHandler.fromXML(Element xml)
           
 Object SimpleNotificationMessage.getMessageContent(QName qname, Class type)
           
 void SimpleNotificationProducer.initialize()
           
 void SimpleNotificationConsumer.initialize()
           
 void SimplePullPointCreation.initialize()
           
 void SimpleSubscriptionManager.initialize()
           
 void SimplePullPoint.initialize()
           
 void SimpleNotificationProducer.initializeCompleted()
           
 void SimpleNotificationProducer.prepareShutdown()
           
 void SimplePullPoint.process(NotificationMessage message)
           
 void SimpleNotificationProducer.publish(QName topicName, Element content)
           
 void SimpleNotificationProducer.publish(QName topicName, Element[] content)
           
 void SimpleNotificationProducer.publish(QName topicName, QName[] contentNames, Object[] content)
           
 void SimpleNotificationProducer.publish(QName topicName, QName contentName, Object content)
           
 void SimpleNotificationProducer.publish(QName topicName, XmlSerializable content)
           
 void SimpleNotificationProducer.publish(QName topicName, XmlSerializable[] content)
           
protected  Resource NotificationProducerFilePersistence.reloadResource(String contextPath, Element resourceXML)
           
 void NotificationProducerFilePersistence.resourceAdded(EndpointReference epr, Resource resource)
           
 void NotificationProducerFilePersistence.resourceRemoved(EndpointReference epr)
           
 void SimplePullPoint.shutdown()
           
 Element SubscribeHandler.toXML(Object result)
           
 

Constructors in org.apache.muse.ws.notification.impl that throw SoapFault
GetCurrentMessageResponse(Element xml)
           
SimpleNotificationMessage(Element root)
           
 

Uses of SoapFault in org.apache.muse.ws.notification.remote
 

Methods in org.apache.muse.ws.notification.remote that throw SoapFault
 NotificationMessage NotificationProducerClient.getCurrentMessage(QName topicPath)
           
 void NotificationConsumerClient.notify(NotificationMessage message)
           
 void NotificationConsumerClient.notify(NotificationMessage[] messages)
           
 void SubscriptionClient.pauseSubscription()
           
 void SubscriptionClient.resumeSubscription()
           
 SubscriptionClient NotificationProducerClient.subscribe(EndpointReference consumer, Filter filter, Date termination)
           
 

Uses of SoapFault in org.apache.muse.ws.resource.basefaults
 

Subclasses of SoapFault in org.apache.muse.ws.resource.basefaults
 class BaseFault
          BaseFault is Muse's default implementation of the WS-BaseFaults BaseFault type.
 

Uses of SoapFault in org.apache.muse.ws.resource.ext.faults
 

Subclasses of SoapFault in org.apache.muse.ws.resource.ext.faults
 class InvalidMessageFormatFault
           
 class ResourceInitializationFault
           
 class SerializationErrorFault
           
 

Uses of SoapFault in org.apache.muse.ws.resource.faults
 

Subclasses of SoapFault in org.apache.muse.ws.resource.faults
 class ResourceUnavailableFault
           
 class ResourceUnknownFault
           
 

Uses of SoapFault in org.apache.muse.ws.resource.impl
 

Methods in org.apache.muse.ws.resource.impl that throw SoapFault
protected  Resource WsResourceRouter.getTargetResource()
           
 void AbstractWsResourceCapability.initialize()
          

AbstractWsResourceCapability continues the initialization process by inspecting the concrete class to find all of the getters (and, if applicable, setters) for its resource properties.
 void SimpleWsResource.initialize()
          

The SimpleWsResource implementation takes the following steps: Create WSRP state model - createPropertyCollection()
Create WSRP document schema and apply it to the collection.
Create WSRP metadata and apply it to the collection.
Call super.initialize() to initialize capabilities.
 

Uses of SoapFault in org.apache.muse.ws.resource.lifetime.faults
 

Subclasses of SoapFault in org.apache.muse.ws.resource.lifetime.faults
 class ResourceNotDestroyedFault
           
 class TerminationTimeChangeRejectedFault
           
 class UnableToSetTerminationTimeFault
           
 

Uses of SoapFault in org.apache.muse.ws.resource.lifetime.impl
 

Methods in org.apache.muse.ws.resource.lifetime.impl that throw SoapFault
 Object[] SetTerminationTimeHandler.fromXML(Element xml)
           
 void SimpleScheduledTermination.initialize()
           
 void SimpleScheduledTermination.shutdown()
           
 

Uses of SoapFault in org.apache.muse.ws.resource.metadata
 

Methods in org.apache.muse.ws.resource.metadata that throw SoapFault
 Collection MetadataDescriptor.getInitialValues(QName property, Class javaType)
           
 Collection MetadataDescriptor.getStaticValues(QName property, Class javaType)
           
 Collection MetadataDescriptor.getValidValues(QName property, Class javaType)
           
 void MetadataDescriptor.setInitialValues(QName property, Collection values)
           
 void MetadataDescriptor.setStaticValues(QName property, Collection values)
           
 void MetadataDescriptor.setValidValues(QName property, Collection values)
           
 

Uses of SoapFault in org.apache.muse.ws.resource.metadata.ext
 

Methods in org.apache.muse.ws.resource.metadata.ext that throw SoapFault
 MetadataDescriptor WsrfMetadataExchangeClient.getRMD()
           
 

Uses of SoapFault in org.apache.muse.ws.resource.metadata.faults
 

Subclasses of SoapFault in org.apache.muse.ws.resource.metadata.faults
 class MetadataValidationFault
           
 

Uses of SoapFault in org.apache.muse.ws.resource.metadata.impl
 

Methods in org.apache.muse.ws.resource.metadata.impl that throw SoapFault
 Collection SimpleMetadataDescriptor.getInitialValues(QName propertyQName, Class javaType)
           
 Collection SimpleMetadataDescriptor.getStaticValues(QName propertyQName, Class javaType)
           
 Collection SimpleMetadataDescriptor.getValidValues(QName propertyQName, Class javaType)
           
 void SimpleMetadataDescriptor.setInitialValues(QName property, Collection values)
           
 void SimpleMetadataDescriptor.setStaticValues(QName property, Collection values)
           
 void SimpleMetadataDescriptor.setValidValues(QName property, Collection values)
           
 

Uses of SoapFault in org.apache.muse.ws.resource.properties.get.faults
 

Subclasses of SoapFault in org.apache.muse.ws.resource.properties.get.faults
 class InvalidResourcePropertyQNameFault
           
 

Uses of SoapFault in org.apache.muse.ws.resource.properties.get.impl
 

Methods in org.apache.muse.ws.resource.properties.get.impl that throw SoapFault
 Object[] GetMultipleHandler.fromXML(Element xml)
           
 Object[] GetHandler.fromXML(Element xml)
           
 void SimpleGetCapability.initialize()
           
 

Uses of SoapFault in org.apache.muse.ws.resource.properties.impl
 

Methods in org.apache.muse.ws.resource.properties.impl that throw SoapFault
static Element WsrpUtils.convertToElement(Object property, Class type, QName qname)
          Uses one of Muse's registered Serializers to convert the given object into an XML element.
static Element[] WsrpUtils.convertToElements(Object[] properties, Class type, QName qname)
          Uses Muse's registered Serializers to convert the given objects into XML elements.
static Object WsrpUtils.convertToObject(Element property, Class type)
          Uses one of Muse's registered Serializers to convert the given Element into an instance of the given type.
static Object WsrpUtils.convertToObjects(Element[] properties, Class type)
          Uses Muse's registered Serializers to convert the given Elements into instances of the given type.
 

Uses of SoapFault in org.apache.muse.ws.resource.properties.query.faults
 

Subclasses of SoapFault in org.apache.muse.ws.resource.properties.query.faults
 class InvalidQueryExpressionFault
           
 class QueryEvaluationErrorFault
           
 class UnknownQueryExpressionDialectFault
           
 

Uses of SoapFault in org.apache.muse.ws.resource.properties.query.impl
 

Methods in org.apache.muse.ws.resource.properties.query.impl that throw SoapFault
 Object[] QueryHandler.fromXML(Element xml)
           
 void SimpleQueryCapability.initialize()
           
 

Uses of SoapFault in org.apache.muse.ws.resource.properties.schema.faults
 

Subclasses of SoapFault in org.apache.muse.ws.resource.properties.schema.faults
 class SchemaValidationFault
           
 

Uses of SoapFault in org.apache.muse.ws.resource.properties.set.faults
 

Subclasses of SoapFault in org.apache.muse.ws.resource.properties.set.faults
 class InvalidModificationFault
           
 class SetResourcePropertyRequestFailedFault
           
 class UnableToModifyResourcePropertyFault
           
 class UnableToPutResourcePropertyDocumentFault
           
 

Uses of SoapFault in org.apache.muse.ws.resource.properties.set.impl
 

Methods in org.apache.muse.ws.resource.properties.set.impl that throw SoapFault
 Object[] SetHandler.fromXML(Element xml)
           
 void SimpleSetCapability.initialize()
           
 

Uses of SoapFault in org.apache.muse.ws.resource.remote
 

Methods in org.apache.muse.ws.resource.remote that throw SoapFault
 void WsResourceClient.deleteResourceProperty(QName qname)
           
 void WsResourceClient.destroy()
           
 Element[] WsResourceClient.getMultipleResourceProperties(QName[] qnames)
           
 Object WsResourceClient.getPropertyAsObject(QName qname, Class type)
          This is a convenience method that calls getResourceProperty() and then parses the XML results into POJOs of the given type using the Muse serializer framework.
 Element[] WsResourceClient.getResourceProperty(QName qname)
           
 Element WsResourceClient.getResourcePropertyDocument()
           
 void WsResourceClient.insertResourceProperty(QName qname, Object[] values)
           
 Element WsResourceClient.putResourcePropertyDocument(Element wsrpDoc)
           
 Node[] WsResourceClient.queryResourceProperties(String query, String dialect)
           
 void WsResourceClient.setResourceProperties(SetRequest request)
           
 Date WsResourceClient.setTerminationTime(Date time)
           
 void WsResourceClient.updateResourceProperty(QName qname, Object[] values)
           
 

Uses of SoapFault in org.apache.muse.ws.resource.sg.faults
 

Subclasses of SoapFault in org.apache.muse.ws.resource.sg.faults
 class AddRefusedFault
           
 class ContentCreationFailedFault
           
 class UnsupportedMemberInterfaceFault
           
 

Uses of SoapFault in org.apache.muse.ws.resource.sg.impl
 

Methods in org.apache.muse.ws.resource.sg.impl that throw SoapFault
protected  void ServiceGroupFilePersistence.createResourceFile(EndpointReference epr, Resource resource, File resourceFile)
           
 Object[] AddHandler.fromXML(Element xml)
           
 void SimpleServiceGroup.initialize()
           
 void SimpleServiceGroupRegistration.initialize()
           
protected  Resource ServiceGroupFilePersistence.reloadResource(String contextPath, Element resourceXML)
           
 void SimpleServiceGroup.resourceAdded(EndpointReference epr, Resource resource)
           
 void ServiceGroupFilePersistence.resourceAdded(EndpointReference epr, Resource resource)
           
 void ServiceGroupFilePersistence.resourceRemoved(EndpointReference epr)
           
 void SimpleEntry.shutdown()
           
 void SimpleServiceGroup.shutdown()
           
 

Uses of SoapFault in org.apache.muse.ws.resource.sg.remote
 

Methods in org.apache.muse.ws.resource.sg.remote that throw SoapFault
 WsResourceClient ServiceGroupClient.add(EndpointReference memberEPR, Date termination)
          Invokes the wsrf-sg:Add operation with an empty wsrf-sg:Content parameter.
 WsResourceClient ServiceGroupClient.add(EndpointReference memberEPR, Date termination, Element content)
           
 WsResourceClient[] ServiceGroupClient.getMembers()
           
 boolean ServiceGroupClient.isMatch(EndpointReference epr)
           
 



Copyright © 2005-2011 Apache Web Services - Muse. All Rights Reserved.