Skip to content

Commit

Permalink
[#471] Add version detection method for iRODS 4.3.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Aug 27, 2024
1 parent f401e50 commit 448f63a
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,15 @@ public boolean isAtLeastIrods432() {
return isTheIrodsServerAtLeastAtTheGivenReleaseVersion("rods4.3.2");
}

/**
* Is the server at least iRODS 4.3.3
*
* @return {@code boolean}
*/
public boolean isAtLeastIrods433() {
return isTheIrodsServerAtLeastAtTheGivenReleaseVersion("rods4.3.3");
}

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

0 comments on commit 448f63a

Please sign in to comment.