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

com.chutneytesting.agent.domain.explore.AgentId Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
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