-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from sanctuuary/benchmarks_biotools_OEB
Improve design-time benchmarks
- Loading branch information
Showing
10 changed files
with
580 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package nl.esciencecenter.restape; | ||
|
||
/** | ||
* Enumeration of various types of software licenses. | ||
* This enum classifies licenses into categories based on their openness | ||
* and OSI approval status. | ||
*/ | ||
public enum LicenseType { | ||
/** | ||
* Represents an unknown license type. | ||
* This value is used when the license type cannot be determined. | ||
*/ | ||
Unknown, | ||
|
||
/** | ||
* Represents a closed-source license. | ||
* This indicates proprietary software where the source code is not publicly | ||
* available. | ||
*/ | ||
Closed, | ||
|
||
/** | ||
* Represents an open-source license. | ||
* This indicates software where the source code is publicly available, but it | ||
* is not necessarily OSI-approved. | ||
*/ | ||
Open, | ||
|
||
/** | ||
* Represents a license that is approved by the Open Source Initiative (OSI). | ||
* This indicates software that adheres to the OSI's definition of open source. | ||
*/ | ||
OSI_Approved; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.