Class LicenseDTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- biz.aQute.bnd.reporter.manifest.dto.LicenseDTO
-
public class LicenseDTO extends org.osgi.dto.DTO
A representation of a license.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
description
The description of the license.java.lang.String
link
The URL to the license.java.lang.String
name
The name of the license.
-
Constructor Summary
Constructors Constructor Description LicenseDTO()
-
-
-
Field Detail
-
name
public java.lang.String name
The name of the license.Must not be
null
.
-
description
public java.lang.String description
The description of the license.If it is not specified this field must be
null
.
-
link
public java.lang.String link
The URL to the license.If the URL does not contain a scheme, the URL must be interpreted as relative to the bundle. If it is not specified this field must be
null
.
-
-