com.chutneytesting.agent.domain.explore.AgentId Maven / Gradle / Ivy
package com.chutneytesting.agent.domain.explore;
import org.immutables.value.Value;
@Value.Immutable
public interface AgentId {
@Value.Parameter
String name();
static AgentId of(String name) {
return ImmutableAgentId.of(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy