summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/minicore/src/main/java/org/apache/tuscany/core/resolver/AutowireResolver.java
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/rfeng/minicore/src/main/java/org/apache/tuscany/core/resolver/AutowireResolver.java')
-rw-r--r--sandbox/rfeng/minicore/src/main/java/org/apache/tuscany/core/resolver/AutowireResolver.java64
1 files changed, 0 insertions, 64 deletions
diff --git a/sandbox/rfeng/minicore/src/main/java/org/apache/tuscany/core/resolver/AutowireResolver.java b/sandbox/rfeng/minicore/src/main/java/org/apache/tuscany/core/resolver/AutowireResolver.java
deleted file mode 100644
index 8502f8d5f8..0000000000
--- a/sandbox/rfeng/minicore/src/main/java/org/apache/tuscany/core/resolver/AutowireResolver.java
+++ /dev/null
@@ -1,64 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-package org.apache.tuscany.core.resolver;
-
-import java.net.URI;
-
-import org.apache.tuscany.spi.model.ComponentDefinition;
-import org.apache.tuscany.spi.model.CompositeComponentType;
-import org.apache.tuscany.spi.model.Implementation;
-import org.apache.tuscany.spi.model.ServiceContract;
-import org.apache.tuscany.spi.resolver.ResolutionException;
-
-/**
- * Implementations are responsible for resolving autowire targets in an SCA Domain. It is assumed that autowire
- * resolution occurs after resource resolution as service interface classes may be laoded
- *
- * @version $Rev$ $Date$
- */
-public interface AutowireResolver {
-
- /**
- * Resolves autowires for a component definition and its decendents
- *
- * @param parentDefinition the parent
- * @param definition the component definition to resolve autowires for
- * @throws ResolutionException
- */
- void resolve(ComponentDefinition<Implementation<CompositeComponentType<?, ?, ?>>> parentDefinition,
- ComponentDefinition<? extends Implementation<?>> definition) throws ResolutionException;
-
- /**
- * Resolves autowires for a composite component type and its decendents
- *
- * @param compositeType the component type to resolve autowires for
- * @throws ResolutionException
- */
- @SuppressWarnings({"unchecked"})
- public void resolve(CompositeComponentType<?, ?, ?> compositeType) throws ResolutionException;
-
- /**
- * Adds the uri of a host system service that can be an autowire target
- *
- * @param contract the service contract of the system service
- * @param uri the component uri
- */
- void addHostUri(ServiceContract contract, URI uri);
-
-}