summaryrefslogtreecommitdiffstats
path: root/sandbox/rfeng/minicore/src/main/java/org/apache/tuscany/core/bootstrap/Bootstrapper.java
blob: a52e8e2f833223c3253081bada6412496cd66799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * 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.bootstrap;

import org.apache.tuscany.core.resolver.AutowireResolver;
import org.apache.tuscany.host.MonitorFactory;
import org.apache.tuscany.spi.builder.Connector;
import org.apache.tuscany.spi.component.ComponentManager;
import org.apache.tuscany.spi.component.ScopeRegistry;
import org.apache.tuscany.spi.deployer.Deployer;

/**
 * Interface that abstracts the process used to create a running Tuscany system. Implementation of this may provide
 * different mechanisms for creating the primoridal system components used to boot the core to the level where it can
 * support end-user applications.
 *
 * @version $Rev$ $Date$
 */
public interface Bootstrapper {
    /**
     * Return the MonitorFactory being used by the implementation to provide monitor interfaces for the primordial
     * components.
     *
     * @return the MonitorFactory being used by the bootstrapper
     */
    MonitorFactory getMonitorFactory();

    /**
     * Create a Deployer that can be used to deploy the system definition. This will most likely only support a small
     * subset of the available programming model.
     *
     * @return a new primordial Deployer
     */
    Deployer createDeployer();

    /**
     * Create a ScopeRegistry that supports the Scopes supported for primordial components
     *
     * @return a new primordial ScopeRegistry
     */
    ScopeRegistry getScopeRegistry();

    /**
     * Create a Connector that can wire together primordial components.
     *
     * @return a new primordial Connector
     */
    Connector getConnector();

    /**
     * Returns the AutowireResolver that resolves autowire targets
     *
     * @return the AutowireResolver that resolves autowire targets
     */
    AutowireResolver getAutowireResolver();
    
    ComponentManager getComponentManager();

}