summaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/container/core/BundleLoaderProperties.java
blob: ee12c7d4c9f0e7f71b63e16f2294e5f1649f5fa5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.container.core;

/**
 * @author gjoranv
 */
public interface BundleLoaderProperties {

    // TODO: This should be removed. The prefix is used to separate the bundles in BundlesConfig
    // into those that are transferred with filedistribution and those that are preinstalled
    // on disk. Instead, the model should have put them in two different configs. I.e. create a new
    // config 'preinstalled-bundles.def'.
    String DISK_BUNDLE_PREFIX = "file:";

}