com.chutneytesting.engine.domain.execution.command.PauseExecutionCommand Maven / Gradle / Ivy
The newest version!
/*
* SPDX-FileCopyrightText: 2017-2024 Enedis
*
* SPDX-License-Identifier: Apache-2.0
*
*/
package com.chutneytesting.engine.domain.execution.command;
import com.chutneytesting.engine.domain.execution.event.Event;
public class PauseExecutionCommand implements Event {
private final Long executionId;
public PauseExecutionCommand(Long executionId) {
this.executionId = executionId;
}
@Override
public long executionId() {
return executionId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy