com.yahoo.application.content.ContentCluster Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application Show documentation
Show all versions of application Show documentation
Runs an application directly from services.xml
// 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