File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
src/main/java/org/spdx/library/model/license Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 3131import org .spdx .library .InvalidSPDXAnalysisException ;
3232import org .spdx .library .SpdxConstants ;
3333import org .spdx .library .model .SpdxModelFactory ;
34+ import org .spdx .storage .IModelStore ;
3435import org .spdx .storage .listedlicense .IListedLicenseStore ;
3536import org .spdx .storage .listedlicense .SpdxListedLicenseLocalStore ;
3637import org .spdx .storage .listedlicense .SpdxListedLicenseWebStore ;
@@ -236,6 +237,13 @@ public Optional<String> listedLicenseIdCaseSensitive(String licenseId) {
236237 */
237238 public Optional <String > listedExceptionIdCaseSensitive (String exceptionId ) {
238239 return this .licenseModelStore .listedExceptionIdCaseSensitive (exceptionId );
239- }
240+ }
241+
242+ /**
243+ * @return model store for listed licenses
244+ */
245+ public IModelStore getLicenseModelStore () {
246+ return this .licenseModelStore ;
247+ }
240248
241249}
You can’t perform that action at this time.
0 commit comments