dev.galasa.cicsts.CicsTerminal Maven / Gradle / Ivy
/*
* Licensed Materials - Property of IBM
*
* (c) Copyright IBM Corp. 2020.
*/
package dev.galasa.cicsts;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import dev.galasa.framework.spi.ValidAnnotatedFields;
/**
* A zOS 3270 Terminal for use with a CICS TS Region that has access to the default CICS screens
*
*
* Used to populate a {@link ICicsTerminal} field
*
*
* @author Michael Baylis
*
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.FIELD })
@CicstsManagerField
@ValidAnnotatedFields({ ICicsTerminal.class })
public @interface CicsTerminal {
/**
* The tag of the CICS region terminal is to be associated with
*/
String cicsTag() default "PRIMARY";
/**
* The CICS TS Manager will automatically connect the terminal to the CICS TS region when ever is starts
*/
boolean connectAtStartup() default true;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy