From 31d794be59cb2d1bf264df79f471b0c8d5f5a457 Mon Sep 17 00:00:00 2001 From: lresende Date: Sat, 21 Nov 2009 07:40:26 +0000 Subject: Moving to site trunk git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@882841 13f79535-47bb-0310-9956-ffa450edef68 --- .../tuscany/sca/host/embedded/SCADomain.html | 503 +++++++++++++++++++++ .../sca/host/embedded/class-use/SCADomain.html | 234 ++++++++++ .../tuscany/sca/host/embedded/package-frame.html | 32 ++ .../tuscany/sca/host/embedded/package-summary.html | 154 +++++++ .../tuscany/sca/host/embedded/package-tree.html | 149 ++++++ .../tuscany/sca/host/embedded/package-use.html | 166 +++++++ 6 files changed, 1238 insertions(+) create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/SCADomain.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/class-use/SCADomain.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/package-frame.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/package-summary.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/package-tree.html create mode 100644 site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/package-use.html (limited to 'site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host') diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/SCADomain.html b/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/SCADomain.html new file mode 100644 index 0000000000..46b38092e2 --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/SCADomain.html @@ -0,0 +1,503 @@ + + + + + + +SCADomain + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ +

+ +org.apache.tuscany.sca.host.embedded +
+Class SCADomain

+
+java.lang.Object
+  extended by org.apache.tuscany.sca.host.embedded.SCADomain
+
+
+
Direct Known Subclasses:
SCADomainBean
+
+
+
+
public abstract class SCADomain
extends java.lang.Object
+ + +

+A handle to an SCA domain. +

+ +

+

+
Version:
+
$Rev: 538951 $ $Date: 2007-05-17 15:47:55 +0100 (Thu, 17 May 2007) $
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
SCADomain() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+abstract + + + + +
+<B,R extends CallableReference<B>> +
+R
+
cast(B target) + +
+          Cast a type-safe reference to a CallableReference.
+ voidclose() + +
+          Close the SCA domain.
+static SCADomainconnect(java.lang.String domainURI) + +
+          Returns an SCADomain representing a remote SCA domain.
+abstract + + + + +
+<B> B
+
getService(java.lang.Class<B> businessInterface, + java.lang.String serviceName) + +
+          Returns a proxy for a service provided by a component in the SCA domain.
+abstract + + + + +
+<B> ServiceReference<B>
+
getServiceReference(java.lang.Class<B> businessInterface, + java.lang.String referenceName) + +
+          Returns a ServiceReference for a service provided by a component in the + SCA domain.
+abstract  java.lang.StringgetURI() + +
+          Returns the URI of the SCA Domain.
+static SCADomainnewInstance() + +
+          Returns a new instance of a local SCA domain.
+static SCADomainnewInstance(java.lang.String composite) + +
+          Returns a new instance of a local SCA domain.
+static SCADomainnewInstance(java.lang.String domainURI, + java.lang.String contributionLocation, + java.lang.String... composites) + +
+          Returns a new instance of a local SCA domain.
+static voidremoveInstance(SCADomain domainInstance) + +
+          Removes the specified local SCA Domain instance
+ + + + + + + +
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+SCADomain

+
+public SCADomain()
+
+
+ + + + + + + + +
+Method Detail
+ +

+newInstance

+
+public static SCADomain newInstance()
+
+
Returns a new instance of a local SCA domain. +

+

+ +
Returns:
+
+
+
+ +

+newInstance

+
+public static SCADomain newInstance(java.lang.String composite)
+
+
Returns a new instance of a local SCA domain. The specified deployable + composite will be included in the SCA domain. +

+

+
Parameters:
composite - the deployable composite to include in the SCA domain. +
Returns:
+
+
+
+ +

+newInstance

+
+public static SCADomain newInstance(java.lang.String domainURI,
+                                    java.lang.String contributionLocation,
+                                    java.lang.String... composites)
+
+
Returns a new instance of a local SCA domain. The specified deployable + composites will be included in the SCA domain. +

+

+
Parameters:
domainURI - the URI of the SCA domain
contributionLocation - the location of an SCA contribution
composites - the deployable composites to include in the SCA domain. +
Returns:
+
+
+
+ +

+removeInstance

+
+public static void removeInstance(SCADomain domainInstance)
+
+
Removes the specified local SCA Domain instance +

+

+
Parameters:
domainInstance - the instance to be removed
+
+
+
+ +

+connect

+
+public static SCADomain connect(java.lang.String domainURI)
+
+
Returns an SCADomain representing a remote SCA domain. +

+

+
Parameters:
domainURI - the URI of the SCA domain +
Returns:
+
+
+
+ +

+close

+
+public void close()
+
+
Close the SCA domain. +

+

+
+
+
+
+ +

+getURI

+
+public abstract java.lang.String getURI()
+
+
Returns the URI of the SCA Domain. +

+

+ +
Returns:
the URI of the SCA Domain
+
+
+
+ +

+cast

+
+public abstract <B,R extends CallableReference<B>> R cast(B target)
+                                             throws java.lang.IllegalArgumentException
+
+
Cast a type-safe reference to a CallableReference. Converts a type-safe + reference to an equivalent CallableReference; if the target refers to a + service then a ServiceReference will be returned, if the target refers to + a callback then a CallableReference will be returned. +

+

+
Type Parameters:
B - the Java type of the business interface for the reference
R - the type of reference to be returned
Parameters:
target - a reference proxy provided by the SCA runtime +
Returns:
a CallableReference equivalent for the proxy +
Throws: +
java.lang.IllegalArgumentException - if the supplied instance is not a + reference supplied by the SCA runtime
+
+
+
+ +

+getService

+
+public abstract <B> B getService(java.lang.Class<B> businessInterface,
+                                 java.lang.String serviceName)
+
+
Returns a proxy for a service provided by a component in the SCA domain. +

+

+
Type Parameters:
B - the Java type of the business interface for the service
Parameters:
businessInterface - the interface that will be used to invoke the + service
serviceName - the name of the service +
Returns:
an object that implements the business interface
+
+
+
+ +

+getServiceReference

+
+public abstract <B> ServiceReference<B> getServiceReference(java.lang.Class<B> businessInterface,
+                                                            java.lang.String referenceName)
+
+
Returns a ServiceReference for a service provided by a component in the + SCA domain. +

+

+
Type Parameters:
B - the Java type of the business interface for the service
Parameters:
businessInterface - the interface that will be used to invoke the + service
serviceName - the name of the service +
Returns:
a ServiceReference for the designated service
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/class-use/SCADomain.html b/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/class-use/SCADomain.html new file mode 100644 index 0000000000..da313bfed2 --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/class-use/SCADomain.html @@ -0,0 +1,234 @@ + + + + + + +Uses of Class org.apache.tuscany.sca.host.embedded.SCADomain + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+
+

+Uses of Class
org.apache.tuscany.sca.host.embedded.SCADomain

+
+ + + + + + + + + +
+Packages that use SCADomain
org.apache.tuscany.sca.host.embedded  
+  +

+ + + + + +
+Uses of SCADomain in org.apache.tuscany.sca.host.embedded
+  +

+ + + + + + + + + +
Subclasses of SCADomain in org.apache.tuscany.sca.host.embedded
+ classSCADomainBean + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in org.apache.tuscany.sca.host.embedded that return SCADomain
+static SCADomainSCADomain.connect(java.lang.String domainURI) + +
+          Returns an SCADomain representing a remote SCA domain.
+static SCADomainSCADomain.newInstance() + +
+          Returns a new instance of a local SCA domain.
+static SCADomainSCADomain.newInstance(java.lang.String composite) + +
+          Returns a new instance of a local SCA domain.
+static SCADomainSCADomain.newInstance(java.lang.String domainURI, + java.lang.String contributionLocation, + java.lang.String... composites) + +
+          Returns a new instance of a local SCA domain.
+  +

+ + + + + + + + + +
Methods in org.apache.tuscany.sca.host.embedded with parameters of type SCADomain
+static voidSCADomain.removeInstance(SCADomain domainInstance) + +
+          Removes the specified local SCA Domain instance
+  +

+


+ + + + + + + + + + + + + + + +
+ +
+ + + +
+ + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/package-frame.html b/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/package-frame.html new file mode 100644 index 0000000000..ce1ae630ed --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/package-frame.html @@ -0,0 +1,32 @@ + + + + + + +org.apache.tuscany.sca.host.embedded + + + + + + + + + + + +org.apache.tuscany.sca.host.embedded + + + +
+Classes  + +
+SCADomain +
+ + + + diff --git a/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/package-summary.html b/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/package-summary.html new file mode 100644 index 0000000000..6eb9ead401 --- /dev/null +++ b/site/trunk/site-publish/doc/javadoc/java-sca-0.9/sca-api/org/apache/tuscany/sca/host/embedded/package-summary.html @@ -0,0 +1,154 @@ + + + + + + +org.apache.tuscany.sca.host.embedded + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + +
+

+Package org.apache.tuscany.sca.host.embedded +

+ + + + + + + + + +
+Class Summary
SCADomainA handle to an SCA domain.
+  + +

+

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

+Hierarchy For Package org.apache.tuscany.sca.host.embedded +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+