001package org.apache.commons.ssl.org.bouncycastle;
002
003/**
004 * The Bouncy Castle License
005 *
006 * Copyright (c) 2000-2015 The Legion Of The Bouncy Castle Inc. (http://www.bouncycastle.org)
007 * <p>
008 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software 
009 * and associated documentation files (the "Software"), to deal in the Software without restriction, 
010 * including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 
011 * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
012 * subject to the following conditions:
013 * <p>
014 * The above copyright notice and this permission notice shall be included in all copies or substantial
015 * portions of the Software.
016 * <p>
017 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
018 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
019 * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
020 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
021 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
022 * DEALINGS IN THE SOFTWARE.
023 */
024public class LICENSE
025{
026    public static String licenseText =
027      "Copyright (c) 2000-2015 The Legion of the Bouncy Castle Inc. (http://www.bouncycastle.org) "
028      + System.getProperty("line.separator")
029      + System.getProperty("line.separator")
030      + "Permission is hereby granted, free of charge, to any person obtaining a copy of this software "
031      + System.getProperty("line.separator")
032      + "and associated documentation files (the \"Software\"), to deal in the Software without restriction, "
033      + System.getProperty("line.separator")
034      + "including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, "
035      + System.getProperty("line.separator")
036      + "and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,"
037      + System.getProperty("line.separator")
038      + "subject to the following conditions:"
039      + System.getProperty("line.separator")
040      + System.getProperty("line.separator")
041      + "The above copyright notice and this permission notice shall be included in all copies or substantial"
042      + System.getProperty("line.separator")
043      + "portions of the Software."
044      + System.getProperty("line.separator")
045      + System.getProperty("line.separator")
046      + "THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,"
047      + System.getProperty("line.separator")
048      + "INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR"
049      + System.getProperty("line.separator")
050      + "PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE"
051      + System.getProperty("line.separator")
052      + "LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR"
053      + System.getProperty("line.separator")
054      + "OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER"
055      + System.getProperty("line.separator")
056      + "DEALINGS IN THE SOFTWARE.";
057
058    public static void main(
059        String[]    args)
060    {
061        System.out.println(licenseText);
062    }
063}