summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-19 20:10:14 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-11-19 20:10:14 +0000
commitdcab3df2d52597bccc5c2f3557489d292be06453 (patch)
tree69c3bcba00c8fd2cb33c251da28a1a0b5a2d471f /java
parent75181b9220c45662591407eabed2ec7738084feb (diff)
Minor formating change on the Deployer Interface
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@882277 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/sca/modules/deployment/src/main/java/org/apache/tuscany/sca/deployment/Deployer.java61
1 files changed, 33 insertions, 28 deletions
diff --git a/java/sca/modules/deployment/src/main/java/org/apache/tuscany/sca/deployment/Deployer.java b/java/sca/modules/deployment/src/main/java/org/apache/tuscany/sca/deployment/Deployer.java
index c510d10e47..dce9a308ce 100644
--- a/java/sca/modules/deployment/src/main/java/org/apache/tuscany/sca/deployment/Deployer.java
+++ b/java/sca/modules/deployment/src/main/java/org/apache/tuscany/sca/deployment/Deployer.java
@@ -68,26 +68,6 @@ public interface Deployer extends LifeCycleListener {
Composite build(List<Contribution> contributions, Map<QName, List<String>> bindingBaseURIs, Monitor monitor)
throws ContributionResolveException, CompositeBuilderException;
- Monitor createMonitor();
-
- /**
- * Create an instance of {@link BuilderContext}
- * @return
- */
- BuilderContext createBuilderContext();
-
- /**
- * Create an instance of {@link ProcessorContext}
- * @return
- */
- ProcessorContext createProcessorContext();
-
- /**
- * Get the {@link ExtensionPointRegistry}
- * @return
- */
- ExtensionPointRegistry getExtensionPointRegistry();
-
/**
* Load an artifact from the given location
* @param uri
@@ -170,6 +150,39 @@ public interface Deployer extends LifeCycleListener {
void saveXMLElement(Object model, XMLStreamWriter writer, Monitor monitor) throws XMLStreamException,
ContributionWriteException;
+ /**
+ * @return
+ */
+ boolean isSchemaValidationEnabled();
+ /**
+ * @param schemaValidationEnabled
+ */
+ void setSchemaValidationEnabled(boolean schemaValidationEnabled);
+
+ /**
+ *
+ * @return
+ */
+ Monitor createMonitor();
+
+ /**
+ * Create an instance of {@link BuilderContext}
+ * @return
+ */
+ BuilderContext createBuilderContext();
+
+ /**
+ * Create an instance of {@link ProcessorContext}
+ * @return
+ */
+ ProcessorContext createProcessorContext();
+
+ /**
+ * Get the {@link ExtensionPointRegistry}
+ * @return
+ */
+ ExtensionPointRegistry getExtensionPointRegistry();
+
/*
* @see org.apache.tuscany.sca.core.LifeCycleListener#start()
*/
@@ -180,12 +193,4 @@ public interface Deployer extends LifeCycleListener {
*/
void stop();
- /**
- * @return
- */
- boolean isSchemaValidationEnabled();
- /**
- * @param schemaValidationEnabled
- */
- void setSchemaValidationEnabled(boolean schemaValidationEnabled);
}