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

dev.galasa.framework.spi.IDynamicStatusStoreService Maven / Gradle / Ivy

There is a newer version: 0.37.0
Show newest version
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.framework.spi;

/**
 * 

* Used to gain access to properties in the Dynamic Status Store *

* *

* The framework will be configured with a single Dynamic Status Store where all * the dynamic properties for run and resources are kept. *

* *

* All properties accesses will be within the namespace provided *

* *

* etcd3 is the preferred dynamic status store for Galasa *

* *

* An {@link IDynamicStatusStoreService} can be obtained from * {@link IFramework#getDynamicStatusStoreService(String)}. *

* * * */ public interface IDynamicStatusStoreService extends IDynamicStatusStoreKeyAccess { /** *

* Retrieve interface to control a dynamic resource represented in the framework * area. This is to allow the resource being managed to be automatically * represented on the Web UI and the Eclipse Automation Views. *

* *

* The properties the framework create from will be * dss.framework.resource.namespace.resourceKey . After that the manager can set * the property names as necessary. *

* *

* For example, if the zOS Security Manager is controlling a set of userids on * cluster PlexMA, the namespace is already set to 'zossec', the property key * would be 'PLEXMA.userid.GAL234'. This would result in the property * 'dss.framework.resource.zossec.PLEXMA.userid.GAL234=L3456'. The automation * views would build a tree view of the properties starting * 'dss.framework.resource' *

* * @param resourceKey * @return The dynamic resource found, or null. */ IDynamicResource getDynamicResource(String resourceKey); /** *

* Retrieve an interface to update the Run status with manager related * information. This is information above what the framework would display, like * status, no. of methods etc. *

* *

* One possible use would be the zOS Manager reporting the primary zOS Image the * test is running on. *

* * @return The dynamic run resource found, or null. * @throws DynamicStatusStoreException */ IDynamicRun getDynamicRun() throws DynamicStatusStoreException; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy