use of alien4cloud.utils.version.Version in project alien4cloud by alien4cloud.
the class Csar method setVersion.
/**
* In the context of parsing you can not override version when already provided (in case of tosca meta).
*
* @param version The new version of the archive.
*/
public void setVersion(String version) {
if (this.version == null || !ParsingContextExecution.exist()) {
this.version = version;
this.nestedVersion = new Version(version);
}
}
Aggregations