aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/osgi/provider/model/ComponentModel.java
blob: ffdf89ed4da978b130d16755dae1d945ec05fc48 (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.osgi.provider.model;

import com.yahoo.component.ComponentId;
import com.yahoo.component.ComponentSpecification;
import com.yahoo.container.bundle.BundleInstantiationSpecification;

/**
 * Describes how a component should be created.
 *
 * Immutable
 *
 * @author gjoranv
 */
public class ComponentModel {

    public final BundleInstantiationSpecification bundleInstantiationSpec;
    public final String configId; // only used in the container, null when used in the model

    public ComponentModel(BundleInstantiationSpecification bundleInstantiationSpec, String configId) {
        if (bundleInstantiationSpec == null)
            throw new IllegalArgumentException("Null bundle instantiation spec!");

        this.bundleInstantiationSpec = bundleInstantiationSpec;
        this.configId = configId;
    }

    public ComponentModel(String idSpec, String classSpec, String bundleSpec, String configId) {
        this(BundleInstantiationSpecification.fromStrings(idSpec, classSpec, bundleSpec), configId);
    }

    // For vespamodel
    public ComponentModel(BundleInstantiationSpecification bundleInstantiationSpec) {
        this(bundleInstantiationSpec, null);
    }

    // For vespamodel
    public ComponentModel(String idSpec, String classSpec, String bundleSpec) {
        this(BundleInstantiationSpecification.fromStrings(idSpec, classSpec, bundleSpec));
    }

    public ComponentId getComponentId() {
        return bundleInstantiationSpec.id;
    }

    public ComponentSpecification getClassId() {
        return bundleInstantiationSpec.classId;
    }

}