1 /*
2 * #%L
3 * prolobjectlink-jpi
4 * %%
5 * Copyright (C) 2019 Prolobjectlink Project
6 * %%
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 * #L%
25 */
26 package io.github.prolobjectlink.prolog;
27
28 /**
29 * Class that contains some constants licenses names.
30 *
31 * @author Jose Zalacain
32 * @since 1.0
33 */
34 public class Licenses {
35
36 /**
37 * GNU Affero General Public License (AGPL) version 3.0
38 */
39 public static final String AGPL_V3 = "GNU Affero General Public License (AGPL) version 3.0";
40
41 /**
42 * Apache License version 2.0
43 */
44 public static final String APACHE_V2 = "Apache License version 2.0";
45
46 /**
47 * BSD 2-Clause License
48 */
49 public static final String BSD_2 = "BSD 2-Clause License";
50
51 /**
52 * BSD 3-Clause License
53 */
54 public static final String BSD_3 = "BSD 3-Clause License";
55
56 /**
57 * COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
58 */
59 public static final String CDDL_V1 = "COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0";
60
61 /**
62 * Eclipse Public License - v 1.0
63 */
64 public static final String EPL_V1 = "Eclipse Public License - v 1.0";
65
66 /**
67 * European Union Public License v1.1
68 */
69 public static final String EUPL_V1_1 = "European Union Public License v1.1";
70
71 /**
72 * GNU Free Documentation License (FDL) version 1.3
73 */
74 public static final String FDL_V1_3 = "GNU Free Documentation License (FDL) version 1.3";
75
76 /**
77 * GNU General Public License (GPL) version 1.0
78 */
79 public static final String GPL_V1 = "GNU General Public License (GPL) version 1.0";
80
81 /**
82 * GNU General Public License (GPL) version 2.0
83 */
84 public static final String GPL_V2 = "GNU General Public License (GPL) version 2.0";
85
86 /**
87 * GNU General Public License (GPL) version 3.0
88 */
89 public static final String GPL_V3 = "GNU General Public License (GPL) version 3.0";
90
91 /**
92 * GNU General Lesser Public License (LGPL) version 2.1
93 */
94 public static final String LGPL_V2_1 = "GNU General Lesser Public License (LGPL) version 2.1";
95
96 /**
97 * GNU General Lesser Public License (LGPL) version 3.0
98 */
99 public static final String LGPL_V3 = "GNU General Lesser Public License (LGPL) version 3.0";
100
101 /**
102 * MIT-License
103 */
104 public static final String MIT = "MIT-License";
105
106 /**
107 * Mozilla Public License version 1.1
108 */
109 public static final String MPL_V1_1 = "Mozilla Public License version 1.1";
110
111 /**
112 * No specified
113 */
114 public static final String NO_SPECIFIED = "No specified";
115
116 private Licenses() {
117 }
118
119 }