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

dev.galasa.linux.LinuxIpHost Maven / Gradle / Ivy

The newest version!
/*
 * Copyright contributors to the Galasa project
 *
 * SPDX-License-Identifier: EPL-2.0
 */
package dev.galasa.linux;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import dev.galasa.ipnetwork.IIpHost;
import dev.galasa.framework.spi.ValidAnnotatedFields;

/**
 * Represents a IP Host for a Linux Image that has been provisioned for the test
 * 
 * 

* Used to populate a {@link dev.galasa.ipnetwork.IIpHost} field *

* * * */ @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.FIELD }) @LinuxManagerField @ValidAnnotatedFields({ IIpHost.class }) public @interface LinuxIpHost { /** * The tag of the Linux Image this variable is to be populated with */ String imageTag() default "PRIMARY"; }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy