All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.yahoo.application.content.ContentCluster Maven / Gradle / Ivy

There is a newer version: 8.458.13
Show newest version
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.application.content;

import com.google.common.annotations.Beta;

import java.nio.file.Path;
import java.util.Collections;
import java.util.List;

/**
 * @author bratseth
 */
@Beta
public class ContentCluster {

    /**
     * Returns mock of the content clusters described in the application at the given path
     *
     * @param path the path to an application package
     * @return a mock content cluster
     */
    public static List fromPath(Path path) {
        // new DomContentBuilder().
        // TODO
        return Collections.emptyList();
    }

    /*
    public ConfigModel toConfigModel() {
        ConfigModel configModel = new ConfigModel();
        return configModel;
    }
    */

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy