1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 package gov.nasa.pds.tools.license;
16
17 /***
18 * Contains the software license.
19 *
20 * @author mcayanan
21 *
22 */
23 public interface ToolsLicense {
24
25 public final String LICENSE = "\n"
26 + "Copyright 2006-2007, by the California Institute of Technology.\n"
27 + "ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged.\n"
28 + "Any commercial use must be negotiated with the Office of Technology Transfer\n"
29 + "at the California Institute of Technology.\n\n"
30 + "This software is subject to U. S. export control laws and regulations\n"
31 + "(22 C.F.R. 120-130 and 15 C.F.R. 730-774). To the extent that the software\n"
32 + "is subject to U.S. export control laws and regulations, the recipient has\n"
33 + "the responsibility to obtain export licenses or other export authority as\n"
34 + "may be required before exporting such information to foreign countries or\n"
35 + "providing access to foreign nationals.";
36 }