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

com.netflix.karyon.admin.rest.ResourceContainer Maven / Gradle / Ivy

package com.netflix.karyon.admin.rest;

import java.util.List;
import java.util.Set;

/**
 * Registry to access controllers.
 * 
 * @author elandau
 *
 */
public interface ResourceContainer {

    /**
     * Invoke a resource by providing the path parts. 
     * 
     * @param parts
     * @return
     * @throws Exception
     */
    Object invoke(String resource, List parts) throws Exception;

    /**
     * Return names of all resources
     * @return
     */
    Set getNames();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy