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

dev.galasa.linux.internal.properties.LinuxCapabilities Maven / Gradle / Ivy

The newest version!
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.linux.internal.properties;

import java.util.List;

import dev.galasa.framework.spi.ConfigurationPropertyStoreException;
import dev.galasa.framework.spi.cps.CpsProperties;
import dev.galasa.linux.LinuxManagerException;

/**
 * Linux Capabilities
 * 

* What the capabilities are of the linux image *

*

* The property is:-
*
* linux.image.GALLNX.capabilities=desktop,wmq * linux.image.capabilities=desktop,wmq *

*

* The default is empty, ie no special capabilities *

* * * */ public class LinuxCapabilities extends CpsProperties { public static List get(String imageName) throws ConfigurationPropertyStoreException, LinuxManagerException { return getStringList(LinuxPropertiesSingleton.cps(), "image", "capabilities", imageName); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy