Package jadex.bridge
Interface IGlobalResourceIdentifier
-
- All Known Implementing Classes:
GlobalResourceIdentifier
public interface IGlobalResourceIdentifier
Global resources are identified by their unique resource id. Additional optional repository information can be used as download helper.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.net.URI
getRepositoryInfo()
todo: make struct to also allow containing Get the url.java.lang.String
getResourceId()
Get the resource id.java.lang.String
getVersionInfo()
Get the version info.
-
-
-
Method Detail
-
getResourceId
java.lang.String getResourceId()
Get the resource id. E.g. in case of maven the global coordinates in the form groupid:artifactid:version- Returns:
- The id.
-
getRepositoryInfo
java.net.URI getRepositoryInfo()
todo: make struct to also allow containing Get the url.- Returns:
- The resource url.
-
getVersionInfo
java.lang.String getVersionInfo()
Get the version info. Important in case of snapshot versions, here the concrete timestamp of the version is included.- Returns:
- The version info.
-
-