Package org.jboss.windup.tooling.rules
Interface Technology
-
- All Superinterfaces:
Serializable
public interface Technology extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Contains the name of the technology (for example, 'eap').intgetVersion()StringgetVersionRange()Contains the version range of the technology (for example, '[6]').voidsetName(String name)Contains the name of the technology (for example, 'eap').voidsetVersion(int version)voidsetVersionRange(String versionRange)Contains the version range of the technology (for example, '[6]').
-
-
-
Method Detail
-
getVersion
int getVersion()
-
setVersion
void setVersion(int version)
-
getName
String getName()
Contains the name of the technology (for example, 'eap').
-
setName
void setName(String name)
Contains the name of the technology (for example, 'eap').
-
getVersionRange
String getVersionRange()
Contains the version range of the technology (for example, '[6]').
-
setVersionRange
void setVersionRange(String versionRange)
Contains the version range of the technology (for example, '[6]').
-
-