Search in sources :

Example 1 with GenericAgentConfigurator

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);
}
Also used : GenericAgentConfigurator(com.axway.ats.agent.core.configuration.GenericAgentConfigurator) PublicAtsApi(com.axway.ats.common.PublicAtsApi)

Example 2 with 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);
}
Also used : GenericAgentConfigurator(com.axway.ats.agent.core.configuration.GenericAgentConfigurator) PublicAtsApi(com.axway.ats.common.PublicAtsApi)

Aggregations

GenericAgentConfigurator (com.axway.ats.agent.core.configuration.GenericAgentConfigurator)2 PublicAtsApi (com.axway.ats.common.PublicAtsApi)2