io.codemodder.plugins.maven.operator.VersionQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-plugin-maven Show documentation
Show all versions of codemodder-plugin-maven Show documentation
Plugin for providing Maven dependency management functions to codemods.
package io.codemodder.plugins.maven.operator;
import com.github.zafarkhaja.semver.Version;
/** Represents a response to a version query, containing source and target version information. */
class VersionQueryResponse {
private final Version source;
private final Version target;
/**
* Constructs a new VersionQueryResponse with the specified source and target versions.
*
* @param source The source version information.
* @param target The target version information.
*/
public VersionQueryResponse(Version source, Version target) {
this.source = source;
this.target = target;
}
public Version getSource() {
return source;
}
public Version getTarget() {
return target;
}
}