Skip to content

Commit

Permalink
[?] Add version sniffing method for iRODS 4.3.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed May 14, 2024
1 parent 019ca89 commit d7c8576
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,15 @@ public boolean isAtLeastIrods431() {
return isTheIrodsServerAtLeastAtTheGivenReleaseVersion("rods4.3.1");
}

/**
* Is the server at least iRODS 4.3.2
*
* @return {@code boolean}
*/
public boolean isAtLeastIrods432() {
return isTheIrodsServerAtLeastAtTheGivenReleaseVersion("rods4.3.2");
}

public IrodsVersion getIrodsVersion() {
return irodsVersion;
}
Expand Down

0 comments on commit d7c8576

Please sign in to comment.