From bdd0a41aed7edf21ec2a65cfa17a86af2ef8c48a Mon Sep 17 00:00:00 2001 From: dims Date: Tue, 17 Jun 2008 00:23:01 +0000 Subject: Move Tuscany from Incubator to top level. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@668359 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/tuscany/sca/invocation/Interceptor.html | 253 ++++++++++ .../tuscany/sca/invocation/InvocationChain.html | 349 +++++++++++++ .../org/apache/tuscany/sca/invocation/Invoker.html | 217 ++++++++ .../org/apache/tuscany/sca/invocation/Message.html | 558 +++++++++++++++++++++ .../tuscany/sca/invocation/MessageFactory.html | 214 ++++++++ .../sca/invocation/class-use/Interceptor.html | 185 +++++++ .../sca/invocation/class-use/InvocationChain.html | 186 +++++++ .../tuscany/sca/invocation/class-use/Invoker.html | 328 ++++++++++++ .../tuscany/sca/invocation/class-use/Message.html | 200 ++++++++ .../sca/invocation/class-use/MessageFactory.html | 140 ++++++ .../tuscany/sca/invocation/package-frame.html | 40 ++ .../tuscany/sca/invocation/package-summary.html | 170 +++++++ .../tuscany/sca/invocation/package-tree.html | 149 ++++++ .../apache/tuscany/sca/invocation/package-use.html | 222 ++++++++ 14 files changed, 3211 insertions(+) create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Interceptor.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/InvocationChain.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Invoker.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Message.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/MessageFactory.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Interceptor.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/InvocationChain.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Invoker.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Message.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/MessageFactory.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-frame.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-summary.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-tree.html create mode 100644 site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-use.html (limited to 'site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation') diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Interceptor.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Interceptor.html new file mode 100644 index 0000000000..2b19f05717 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Interceptor.html @@ -0,0 +1,253 @@ + + + + + + +Interceptor + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.invocation +
+Interface Interceptor

+
+
All Superinterfaces:
Invoker
+
+
+
+
public interface Interceptor
extends Invoker
+ + +

+Synchronous mediation associated with a client- or target- side wire. +

+ +

+

+
Version:
+
$Rev: 539359 $ $Date: 2007-05-18 11:06:21 +0100 (Fri, 18 May 2007) $
+
+
+ +

+ + + + + + + + + + + + + + + + +
+Method Summary
+ InvokergetNext() + +
+          Returns the next invoker or null
+ voidsetNext(Invoker next) + +
+          Sets the next invoker
+ + + + + + + +
Methods inherited from interface org.apache.tuscany.sca.invocation.Invoker
invoke
+  +

+ + + + + + + + +
+Method Detail
+ +

+setNext

+
+void setNext(Invoker next)
+
+
Sets the next invoker +

+

+
+
+
+
Parameters:
next - The next invoker
+
+
+
+ +

+getNext

+
+Invoker getNext()
+
+
Returns the next invoker or null +

+

+
+
+
+ +
Returns:
The next Invoker
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/InvocationChain.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/InvocationChain.html new file mode 100644 index 0000000000..d82a9c4306 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/InvocationChain.html @@ -0,0 +1,349 @@ + + + + + + +InvocationChain + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.invocation +
+Interface InvocationChain

+
+
+
public interface InvocationChain
+ + +

+A wire consists of 1..n invocation chains associated with the operations of its source service contract. +

+ Invocation chains may contain Interceptors that process invocations. +

+ A Message is used to pass data associated with an invocation through the chain. +

+ +

+

+
Version:
+
$Rev: 539359 $ $Date: 2007-05-18 11:06:21 +0100 (Fri, 18 May 2007) $
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voidaddInterceptor(Interceptor interceptor) + +
+          Adds an interceptor to the chain
+ voidaddInterceptor(int index, + Interceptor interceptor) + +
+          Adds an interceptor at the given position in the interceptor stack
+ voidaddInvoker(Invoker invoker) + +
+          Adds an invoker to the chain
+ InvokergetHeadInvoker() + +
+          Returns the first invoker in the chain.
+ OperationgetSourceOperation() + +
+          Returns the source operation for this invocation chain.
+ InvokergetTailInvoker() + +
+          Returns the last invoker in the chain.
+ OperationgetTargetOperation() + +
+          Returns the target operation for this invocation chain.
+  +

+ + + + + + + + +
+Method Detail
+ +

+getTargetOperation

+
+Operation getTargetOperation()
+
+
Returns the target operation for this invocation chain. +

+

+ +
Returns:
The target operation for this invocation chain
+
+
+
+ +

+getSourceOperation

+
+Operation getSourceOperation()
+
+
Returns the source operation for this invocation chain. +

+

+ +
Returns:
The source operation for this invocation chain
+
+
+
+ +

+addInterceptor

+
+void addInterceptor(Interceptor interceptor)
+
+
Adds an interceptor to the chain +

+

+
Parameters:
interceptor - The interceptor to add
+
+
+
+ +

+addInvoker

+
+void addInvoker(Invoker invoker)
+
+
Adds an invoker to the chain +

+

+
Parameters:
invoker - The invoker to add
+
+
+
+ +

+getHeadInvoker

+
+Invoker getHeadInvoker()
+
+
Returns the first invoker in the chain. +

+

+ +
Returns:
The first invoker in the chain
+
+
+
+ +

+getTailInvoker

+
+Invoker getTailInvoker()
+
+
Returns the last invoker in the chain. +

+

+ +
Returns:
The last invoker in the chain
+
+
+
+ +

+addInterceptor

+
+void addInterceptor(int index,
+                    Interceptor interceptor)
+
+
Adds an interceptor at the given position in the interceptor stack +

+

+
Parameters:
index - The position in the interceptor stack to add the interceptor
interceptor - The interceptor to add
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Invoker.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Invoker.html new file mode 100644 index 0000000000..698e58d496 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Invoker.html @@ -0,0 +1,217 @@ + + + + + + +Invoker + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.invocation +
+Interface Invoker

+
+
All Known Subinterfaces:
Interceptor
+
+
+
+
public interface Invoker
+ + +

+Synchronous mediation associated with a client- or target- side wire. +

+ +

+

+
Version:
+
$Rev: 539359 $ $Date: 2007-05-18 11:06:21 +0100 (Fri, 18 May 2007) $
+
+
+ +

+ + + + + + + + + + + + +
+Method Summary
+ Messageinvoke(Message msg) + +
+          Process a synchronous wire
+  +

+ + + + + + + + +
+Method Detail
+ +

+invoke

+
+Message invoke(Message msg)
+
+
Process a synchronous wire +

+

+
Parameters:
msg - The request Message for the wire +
Returns:
The response Message from the wire
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Message.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Message.html new file mode 100644 index 0000000000..801352d0ce --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/Message.html @@ -0,0 +1,558 @@ + + + + + + +Message + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.invocation +
+Interface Message

+
+
+
public interface Message
+ + +

+Represents a request, response, or exception flowing through a wire +

+ +

+

+
Version:
+
$Rev $Date
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ + + + + +
+<T> T
+
getBody() + +
+          Returns the body of the message, which will be the payload or parameters associated with the wire
+ java.lang.StringgetConversationID() + +
+          Get the conversation id
+ ConversationSequencegetConversationSequence() + +
+          Returns the conversational sequence the message is associated with, NONE, START, CONTINUE, or END on TargetInvoker}
+ java.lang.ObjectgetCorrelationID() + +
+          Returns the correlation id of the message or null if one is not available.
+ EndpointReferencegetFrom() + +
+          Get the end point reference of the source reference
+ java.lang.ObjectgetMessageID() + +
+          Returns the id of the message
+ EndpointReferencegetTo() + +
+          Get the end point reference of target service
+ booleanisFault() + +
+          Determines if the message represents a fault/exception
+ + + + + +
+<T> void
+
setBody(T body) + +
+          Sets the body of the message.
+ voidsetConversationID(java.lang.String conversationId) + +
+          Set the conversation id
+ voidsetConversationSequence(ConversationSequence sequence) + +
+          Returns the conversational sequence the message is associated with, NONE, START, CONTINUE, or END
+ voidsetCorrelationID(java.lang.Object correlationId) + +
+          Sets the correlation id of the message.
+ + + + + +
+<T> void
+
setFaultBody(T fault) + +
+          Set the message body with a fault object.
+ voidsetFrom(EndpointReference from) + +
+          Set the end point reference of the reference originating the message
+ voidsetMessageID(java.lang.Object messageId) + +
+          Sets the id of the message
+ voidsetTo(EndpointReference to) + +
+          Set the end point reference of target service
+  +

+ + + + + + + + +
+Method Detail
+ +

+getBody

+
+<T> T getBody()
+
+
Returns the body of the message, which will be the payload or parameters associated with the wire +

+

+ +
Returns:
The body of the message
+
+
+
+ +

+setBody

+
+<T> void setBody(T body)
+
+
Sets the body of the message. +

+

+
Parameters:
body - The body of the message
+
+
+
+ +

+getConversationID

+
+java.lang.String getConversationID()
+
+
Get the conversation id +

+

+ +
Returns:
The conversation ID
+
+
+
+ +

+setConversationID

+
+void setConversationID(java.lang.String conversationId)
+
+
Set the conversation id +

+

+
Parameters:
conversationId - The conversation ID
+
+
+
+ +

+getFrom

+
+EndpointReference getFrom()
+
+
Get the end point reference of the source reference +

+

+ +
Returns:
The end point reference of the reference originating the message
+
+
+
+ +

+setFrom

+
+void setFrom(EndpointReference from)
+
+
Set the end point reference of the reference originating the message +

+

+
Parameters:
from - The end point reference of the reference originating the message
+
+
+
+ +

+getTo

+
+EndpointReference getTo()
+
+
Get the end point reference of target service +

+

+ +
Returns:
The end point reference of the service that the message targets
+
+
+
+ +

+setTo

+
+void setTo(EndpointReference to)
+
+
Set the end point reference of target service +

+

+
Parameters:
to - The end point reference of the service that the message targets
+
+
+
+ +

+getMessageID

+
+java.lang.Object getMessageID()
+
+
Returns the id of the message +

+

+ +
Returns:
The message Id
+
+
+
+ +

+setMessageID

+
+void setMessageID(java.lang.Object messageId)
+
+
Sets the id of the message +

+

+
Parameters:
messageId - The message ID
+
+
+
+ +

+getCorrelationID

+
+java.lang.Object getCorrelationID()
+
+
Returns the correlation id of the message or null if one is not available. Correlation ids are used by transports + for message routing. +

+

+ +
Returns:
The correlation Id
+
+
+
+ +

+setCorrelationID

+
+void setCorrelationID(java.lang.Object correlationId)
+
+
Sets the correlation id of the message. Correlation ids are used by transports for message routing. +

+

+
Parameters:
correlationId - The correlation Id
+
+
+
+ +

+isFault

+
+boolean isFault()
+
+
Determines if the message represents a fault/exception +

+

+ +
Returns:
true If the message body is a fault object, false if the body is a normal payload
+
+
+
+ +

+setFaultBody

+
+<T> void setFaultBody(T fault)
+
+
Set the message body with a fault object. After this method is called, isFault() returns true. +

+

+
Parameters:
fault - The fault object represents an exception
+
+
+
+ +

+getConversationSequence

+
+ConversationSequence getConversationSequence()
+
+
Returns the conversational sequence the message is associated with, NONE, START, CONTINUE, or END on TargetInvoker} +

+

+ +
Returns:
The conversational sequence the message is associated with
+
+
+
+ +

+setConversationSequence

+
+void setConversationSequence(ConversationSequence sequence)
+
+
Returns the conversational sequence the message is associated with, NONE, START, CONTINUE, or END +

+

+
Parameters:
sequence - The conversational sequence
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/MessageFactory.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/MessageFactory.html new file mode 100644 index 0000000000..eb28dd75a8 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/MessageFactory.html @@ -0,0 +1,214 @@ + + + + + + +MessageFactory + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.invocation +
+Interface MessageFactory

+
+
+
public interface MessageFactory
+ + +

+A factory for messages +

+ +

+

+
Version:
+
$Rev $Date
+
+
+ +

+ + + + + + + + + + + + +
+Method Summary
+ MessagecreateMessage() + +
+          Creates a new message.
+  +

+ + + + + + + + +
+Method Detail
+ +

+createMessage

+
+Message createMessage()
+
+
Creates a new message. +

+

+ +
Returns:
The new message
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Interceptor.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Interceptor.html new file mode 100644 index 0000000000..50eb0c7c42 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Interceptor.html @@ -0,0 +1,185 @@ + + + + + + +Uses of Interface org.apache.tuscany.sca.invocation.Interceptor + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Interface
org.apache.tuscany.sca.invocation.Interceptor

+
+ + + + + + + + + +
+Packages that use Interceptor
org.apache.tuscany.sca.invocation  
+  +

+ + + + + +
+Uses of Interceptor in org.apache.tuscany.sca.invocation
+  +

+ + + + + + + + + + + + + +
Methods in org.apache.tuscany.sca.invocation with parameters of type Interceptor
+ voidInvocationChain.addInterceptor(Interceptor interceptor) + +
+          Adds an interceptor to the chain
+ voidInvocationChain.addInterceptor(int index, + Interceptor interceptor) + +
+          Adds an interceptor at the given position in the interceptor stack
+  +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/InvocationChain.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/InvocationChain.html new file mode 100644 index 0000000000..4ef389b190 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/InvocationChain.html @@ -0,0 +1,186 @@ + + + + + + +Uses of Interface org.apache.tuscany.sca.invocation.InvocationChain + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Interface
org.apache.tuscany.sca.invocation.InvocationChain

+
+ + + + + + + + + +
+Packages that use InvocationChain
org.apache.tuscany.sca.runtime  
+  +

+ + + + + +
+Uses of InvocationChain in org.apache.tuscany.sca.runtime
+  +

+ + + + + + + + + + + + + +
Methods in org.apache.tuscany.sca.runtime that return types with arguments of type InvocationChain
+ java.util.List<InvocationChain>RuntimeWire.getCallbackInvocationChains() + +
+          Returns the invocation chains for callback service operations associated + with the wire
+ java.util.List<InvocationChain>RuntimeWire.getInvocationChains() + +
+          Returns the invocation chains for service operations associated with the + wire
+  +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Invoker.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Invoker.html new file mode 100644 index 0000000000..401ef9c01e --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Invoker.html @@ -0,0 +1,328 @@ + + + + + + +Uses of Interface org.apache.tuscany.sca.invocation.Invoker + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Interface
org.apache.tuscany.sca.invocation.Invoker

+
+ + + + + + + + + + + + + + + + + +
+Packages that use Invoker
org.apache.tuscany.sca.invocation  
org.apache.tuscany.sca.provider  
org.apache.tuscany.sca.runtime  
+  +

+ + + + + +
+Uses of Invoker in org.apache.tuscany.sca.invocation
+  +

+ + + + + + + + + +
Subinterfaces of Invoker in org.apache.tuscany.sca.invocation
+ interfaceInterceptor + +
+          Synchronous mediation associated with a client- or target- side wire.
+  +

+ + + + + + + + + + + + + + + + + +
Methods in org.apache.tuscany.sca.invocation that return Invoker
+ InvokerInvocationChain.getHeadInvoker() + +
+          Returns the first invoker in the chain.
+ InvokerInterceptor.getNext() + +
+          Returns the next invoker or null
+ InvokerInvocationChain.getTailInvoker() + +
+          Returns the last invoker in the chain.
+  +

+ + + + + + + + + + + + + +
Methods in org.apache.tuscany.sca.invocation with parameters of type Invoker
+ voidInvocationChain.addInvoker(Invoker invoker) + +
+          Adds an invoker to the chain
+ voidInterceptor.setNext(Invoker next) + +
+          Sets the next invoker
+  +

+ + + + + +
+Uses of Invoker in org.apache.tuscany.sca.provider
+  +

+ + + + + + + + + + + + + + + + + +
Methods in org.apache.tuscany.sca.provider that return Invoker
+ InvokerImplementationProvider.createCallbackInvoker(Operation operation) + +
+          Create an invoker to call back to the given component
+ InvokerReferenceBindingProvider.createInvoker(Operation operation, + boolean isCallback) + +
+          Create an invoker for the reference binding in the invocation chain.
+ InvokerImplementationProvider.createInvoker(RuntimeComponentService service, + Operation operation) + +
+          Create an invoker for the component implementation in the invocation + chain.
+  +

+ + + + + +
+Uses of Invoker in org.apache.tuscany.sca.runtime
+  +

+ + + + + + + + + + + + + + + + + +
Methods in org.apache.tuscany.sca.runtime that return Invoker
+ InvokerRuntimeComponentService.getCallbackInvoker(Binding binding, + Operation operation) + +
+          Get the callback invoker for the given binding and operation
+ InvokerRuntimeComponentService.getInvoker(Binding binding, + Operation operation) + +
+          Get the invoker for the given binding and operation
+ InvokerRuntimeComponentReference.getInvoker(Binding binding, + Operation operation) + +
+          Get the invoker for the given binding and operation
+  +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Message.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Message.html new file mode 100644 index 0000000000..b8f1140e72 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/Message.html @@ -0,0 +1,200 @@ + + + + + + +Uses of Interface org.apache.tuscany.sca.invocation.Message + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Interface
org.apache.tuscany.sca.invocation.Message

+
+ + + + + + + + + +
+Packages that use Message
org.apache.tuscany.sca.invocation  
+  +

+ + + + + +
+Uses of Message in org.apache.tuscany.sca.invocation
+  +

+ + + + + + + + + + + + + +
Methods in org.apache.tuscany.sca.invocation that return Message
+ MessageMessageFactory.createMessage() + +
+          Creates a new message.
+ MessageInvoker.invoke(Message msg) + +
+          Process a synchronous wire
+  +

+ + + + + + + + + +
Methods in org.apache.tuscany.sca.invocation with parameters of type Message
+ MessageInvoker.invoke(Message msg) + +
+          Process a synchronous wire
+  +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/MessageFactory.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/MessageFactory.html new file mode 100644 index 0000000000..341c3b255c --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/class-use/MessageFactory.html @@ -0,0 +1,140 @@ + + + + + + +Uses of Interface org.apache.tuscany.sca.invocation.MessageFactory + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Interface
org.apache.tuscany.sca.invocation.MessageFactory

+
+No usage of org.apache.tuscany.sca.invocation.MessageFactory +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-frame.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-frame.html new file mode 100644 index 0000000000..b07a09a08a --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-frame.html @@ -0,0 +1,40 @@ + + + + + + +org.apache.tuscany.sca.invocation + + + + + + + + + + + +org.apache.tuscany.sca.invocation + + + + +
+Interfaces  + +
+Interceptor +
+InvocationChain +
+Invoker +
+Message +
+MessageFactory
+ + + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-summary.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-summary.html new file mode 100644 index 0000000000..f2b0820aec --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-summary.html @@ -0,0 +1,170 @@ + + + + + + +org.apache.tuscany.sca.invocation + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+

+Package org.apache.tuscany.sca.invocation +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
+Interface Summary
InterceptorSynchronous mediation associated with a client- or target- side wire.
InvocationChainA wire consists of 1..n invocation chains associated with the operations of its source service contract.
InvokerSynchronous mediation associated with a client- or target- side wire.
MessageRepresents a request, response, or exception flowing through a wire
MessageFactoryA factory for messages
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-tree.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-tree.html new file mode 100644 index 0000000000..d9dcfbaf6a --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-tree.html @@ -0,0 +1,149 @@ + + + + + + +org.apache.tuscany.sca.invocation Class Hierarchy + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Hierarchy For Package org.apache.tuscany.sca.invocation +

+
+
+
Package Hierarchies:
All Packages
+
+

+Interface Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-use.html b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-use.html new file mode 100644 index 0000000000..0cf590a8b4 --- /dev/null +++ b/site/site-publish/doc/javadoc/java-sca-0.9/sca-spi/org/apache/tuscany/sca/invocation/package-use.html @@ -0,0 +1,222 @@ + + + + + + +Uses of Package org.apache.tuscany.sca.invocation + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Package
org.apache.tuscany.sca.invocation

+
+ + + + + + + + + + + + + + + + + +
+Packages that use org.apache.tuscany.sca.invocation
org.apache.tuscany.sca.invocation  
org.apache.tuscany.sca.provider  
org.apache.tuscany.sca.runtime  
+  +

+ + + + + + + + + + + + + + +
+Classes in org.apache.tuscany.sca.invocation used by org.apache.tuscany.sca.invocation
Interceptor + +
+          Synchronous mediation associated with a client- or target- side wire.
Invoker + +
+          Synchronous mediation associated with a client- or target- side wire.
Message + +
+          Represents a request, response, or exception flowing through a wire
+  +

+ + + + + + + + +
+Classes in org.apache.tuscany.sca.invocation used by org.apache.tuscany.sca.provider
Invoker + +
+          Synchronous mediation associated with a client- or target- side wire.
+  +

+ + + + + + + + + + + +
+Classes in org.apache.tuscany.sca.invocation used by org.apache.tuscany.sca.runtime
InvocationChain + +
+          A wire consists of 1..n invocation chains associated with the operations of its source service contract.
Invoker + +
+          Synchronous mediation associated with a client- or target- side wire.
+  +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + -- cgit v1.2.3