Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e6cce52f379bacdb992edb5adb23865f3a916dfe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*******************************************************************************
 * Copyright (c) 2013 Red Hat, Inc.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Neil Guzman - python implementation
 *******************************************************************************/
package org.eclipse.linuxtools.internal.rpmstubby.parser;

/**
 * Licenses that are valid for RPM
 *
 */
@SuppressWarnings("javadoc")
public interface ValidLicenses {
	String GPL = "GPL";
	String ARTISTIC = "Artistic";
	String MIT = "MIT";
	String MPL = "MPL";
	String APACHE = "Apache";
	String PUBLIC_DOMAIN = "Public";
	String ZLIB = "zlib";
	String RICOH_SOURCE_CODE = "Ricoh";
	String VOVIDA_SOFTWARE = "Vovida";
	String INTEL_OPEN_SOURCE = "Intel";
	String LGPL = "LGPL";
	String BSD = "BSD";
	String QPL = "QPL";
	String IBM_PUBLIC = "IBM";
	String PHP = "PHP";
	String MODIFIED_CNRI_OPEN_SOURCE = "CNRI";
	String CVW = "CVW";
	String PYTHON = "Python";
	String SUN_INTERNET_STANDARDS_SOURCE = "Sun";
	String JABBER_OPEN_SOURCE = "Jabber";
}

Back to the top