com.tibco.bw.maven.plugin.test.dto.ConditionLanguageDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bw6-maven-plugin Show documentation
Show all versions of bw6-maven-plugin Show documentation
Plugin Code for Apache Maven and TIBCO BusinessWorks™.
This is the Maven Plugin for BW6 and BWCE Build.
package com.tibco.bw.maven.plugin.test.dto;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
@XmlType
@XmlEnum(String.class)
public enum ConditionLanguageDTO {
@XmlEnumValue("JSCRIPT")
JSCRIPT,
@XmlEnumValue("XPATH")
XPATH,
@XmlEnumValue("XSLT10")
XSLT10,
@XmlEnumValue("XSLT20")
XSLT20;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy