use of com.axway.ats.agent.core.configuration.GenericAgentConfigurator in project ats-framework by Axway.
the class AgentConfigurationClient method setRegisterActionsInQueueExecutionTime.
/**
* When set to 'false', the "Queue Execution Time" will be missing on the Test Explorer UI
*
* @param enable
* @throws AgentException
*/
@PublicAtsApi
public void setRegisterActionsInQueueExecutionTime(boolean enable) throws AgentException {
GenericAgentConfigurator genericAgentConfigurator = new GenericAgentConfigurator();
genericAgentConfigurator.setRegisterActionsInQueueExecutionTime(enable);
applyConfiguration(genericAgentConfigurator);
}
use of com.axway.ats.agent.core.configuration.GenericAgentConfigurator in project ats-framework by Axway.
the class AgentConfigurationClient method setCheckpointLogLevel.
/**
* Set the checkpoints log level.
*
* @param checkpointLogLevel
* @throws AgentException
*/
@PublicAtsApi
public void setCheckpointLogLevel(CheckpointLogLevel checkpointLogLevel) throws AgentException {
GenericAgentConfigurator genericAgentConfigurator = new GenericAgentConfigurator();
genericAgentConfigurator.setCheckpointLogLevel(checkpointLogLevel);
applyConfiguration(genericAgentConfigurator);
}
Aggregations