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

org.openstack4j.model.sahara.ServiceConfig Maven / Gradle / Ivy

package org.openstack4j.model.sahara;

import java.util.Map;

import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.sahara.builder.ServiceConfigBuilder;

/**
 * Service Configuration Model
 *
 * @author Ekasit Kijsipongse
 */
public interface ServiceConfig extends ModelEntity, Buildable {

    /**
     * @param name the name of the parameter
     * @return the value of the parameter
     */
    String get(String name);
    
    /**
     * @return map of all configurations or null
     */
    Map getConfigs();
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy