Package sop.operation
Interface Version
-
public interface Version
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBackendVersion()
Return version information about the used OpenPGP backend.String
getExtendedVersion()
Return an extended version string containing multiple lines of version information.String
getName()
Return the implementations name.String
getVersion()
Return the implementations short version string.
-
-
-
Method Detail
-
getName
String getName()
Return the implementations name. e.g. "SOP",- Returns:
- implementation name
-
getVersion
String getVersion()
Return the implementations short version string. e.g. "1.0"- Returns:
- version string
-
getBackendVersion
String getBackendVersion()
Return version information about the used OpenPGP backend. e.g. "Bouncycastle 1.70"- Returns:
- backend version string
-
getExtendedVersion
String getExtendedVersion()
Return an extended version string containing multiple lines of version information. The first line MUST match the information produced bygetName()
andgetVersion()
, but the rest of the text has no defined structure. Example:"SOP 1.0 Awesome PGP! Using Bouncycastle 1.70 LibFoo 1.2.2 See https://pgp.example.org/sop/ for more information"
- Returns:
- extended version string
-
-