View Javadoc

1   // Copyright 2006-2007, by the California Institute of Technology.
2   // ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged.
3   // Any commercial use must be negotiated with the Office of Technology Transfer
4   // at the California Institute of Technology.
5   //
6   // This software is subject to U. S. export control laws and regulations
7   // (22 C.F.R. 120-130 and 15 C.F.R. 730-774). To the extent that the software
8   // is subject to U.S. export control laws and regulations, the recipient has
9   // the responsibility to obtain export licenses or other export authority as
10  // may be required before exporting such information to foreign countries or
11  // providing access to foreign nationals.
12  //
13  // $Id: ToolsLicense.java 3461 2008-08-07 17:43:26Z pramirez $ 
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 2007-2008, 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  }