01: package org.bouncycastle;
02:
03: /**
04: * The Bouncy Castle License
05: *
06: * Copyright (c) 2000-2006 The Legion Of The Bouncy Castle (http://www.bouncycastle.org)
07: * <p>
08: * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
09: * and associated documentation files (the "Software"), to deal in the Software without restriction,
10: * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
11: * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
12: * subject to the following conditions:
13: * <p>
14: * The above copyright notice and this permission notice shall be included in all copies or substantial
15: * portions of the Software.
16: * <p>
17: * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
18: * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
19: * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20: * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21: * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22: * DEALINGS IN THE SOFTWARE.
23: */
24: public class LICENSE {
25: public static String licenseText = "Copyright (c) 2000-2006 The Legion Of The Bouncy Castle (http://www.bouncycastle.org) "
26: + System.getProperty("line.separator")
27: + System.getProperty("line.separator")
28: + "Permission is hereby granted, free of charge, to any person obtaining a copy of this software "
29: + System.getProperty("line.separator")
30: + "and associated documentation files (the \"Software\"), to deal in the Software without restriction, "
31: + System.getProperty("line.separator")
32: + "including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, "
33: + System.getProperty("line.separator")
34: + "and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,"
35: + System.getProperty("line.separator")
36: + "subject to the following conditions:"
37: + System.getProperty("line.separator")
38: + System.getProperty("line.separator")
39: + "The above copyright notice and this permission notice shall be included in all copies or substantial"
40: + System.getProperty("line.separator")
41: + "portions of the Software."
42: + System.getProperty("line.separator")
43: + System.getProperty("line.separator")
44: + "THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,"
45: + System.getProperty("line.separator")
46: + "INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR"
47: + System.getProperty("line.separator")
48: + "PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE"
49: + System.getProperty("line.separator")
50: + "LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR"
51: + System.getProperty("line.separator")
52: + "OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER"
53: + System.getProperty("line.separator")
54: + "DEALINGS IN THE SOFTWARE.";
55:
56: public static void main(String[] args) {
57: System.out.println(licenseText);
58: }
59: }
|