LICENSE.txt 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. Apache License
  2. Version 2.0, January 2004
  3. http://www.apache.org/licenses/
  4. TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
  5. 1. Definitions.
  6. "License" shall mean the terms and conditions for use, reproduction,
  7. and distribution as defined by Sections 1 through 9 of this document.
  8. "Licensor" shall mean the copyright owner or entity authorized by
  9. the copyright owner that is granting the License.
  10. "Legal Entity" shall mean the union of the acting entity and all
  11. other entities that control, are controlled by, or are under common
  12. control with that entity. For the purposes of this definition,
  13. "control" means (i) the power, direct or indirect, to cause the
  14. direction or management of such entity, whether by contract or
  15. otherwise, or (ii) ownership of fifty percent (50%) or more of the
  16. outstanding shares, or (iii) beneficial ownership of such entity.
  17. "You" (or "Your") shall mean an individual or Legal Entity
  18. exercising permissions granted by this License.
  19. "Source" form shall mean the preferred form for making modifications,
  20. including but not limited to software source code, documentation
  21. source, and configuration files.
  22. "Object" form shall mean any form resulting from mechanical
  23. transformation or translation of a Source form, including but
  24. not limited to compiled object code, generated documentation,
  25. and conversions to other media types.
  26. "Work" shall mean the work of authorship, whether in Source or
  27. Object form, made available under the License, as indicated by a
  28. copyright notice that is included in or attached to the work
  29. (an example is provided in the Appendix below).
  30. "Derivative Works" shall mean any work, whether in Source or Object
  31. form, that is based on (or derived from) the Work and for which the
  32. editorial revisions, annotations, elaborations, or other modifications
  33. represent, as a whole, an original work of authorship. For the purposes
  34. of this License, Derivative Works shall not include works that remain
  35. separable from, or merely link (or bind by name) to the interfaces of,
  36. the Work and Derivative Works thereof.
  37. "Contribution" shall mean any work of authorship, including
  38. the original version of the Work and any modifications or additions
  39. to that Work or Derivative Works thereof, that is intentionally
  40. submitted to Licensor for inclusion in the Work by the copyright owner
  41. or by an individual or Legal Entity authorized to submit on behalf of
  42. the copyright owner. For the purposes of this definition, "submitted"
  43. means any form of electronic, verbal, or written communication sent
  44. to the Licensor or its representatives, including but not limited to
  45. communication on electronic mailing lists, source code control systems,
  46. and issue tracking systems that are managed by, or on behalf of, the
  47. Licensor for the purpose of discussing and improving the Work, but
  48. excluding communication that is conspicuously marked or otherwise
  49. designated in writing by the copyright owner as "Not a Contribution."
  50. "Contributor" shall mean Licensor and any individual or Legal Entity
  51. on behalf of whom a Contribution has been received by Licensor and
  52. subsequently incorporated within the Work.
  53. 2. Grant of Copyright License. Subject to the terms and conditions of
  54. this License, each Contributor hereby grants to You a perpetual,
  55. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  56. copyright license to reproduce, prepare Derivative Works of,
  57. publicly display, publicly perform, sublicense, and distribute the
  58. Work and such Derivative Works in Source or Object form.
  59. 3. Grant of Patent License. Subject to the terms and conditions of
  60. this License, each Contributor hereby grants to You a perpetual,
  61. worldwide, non-exclusive, no-charge, royalty-free, irrevocable
  62. (except as stated in this section) patent license to make, have made,
  63. use, offer to sell, sell, import, and otherwise transfer the Work,
  64. where such license applies only to those patent claims licensable
  65. by such Contributor that are necessarily infringed by their
  66. Contribution(s) alone or by combination of their Contribution(s)
  67. with the Work to which such Contribution(s) was submitted. If You
  68. institute patent litigation against any entity (including a
  69. cross-claim or counterclaim in a lawsuit) alleging that the Work
  70. or a Contribution incorporated within the Work constitutes direct
  71. or contributory patent infringement, then any patent licenses
  72. granted to You under this License for that Work shall terminate
  73. as of the date such litigation is filed.
  74. 4. Redistribution. You may reproduce and distribute copies of the
  75. Work or Derivative Works thereof in any medium, with or without
  76. modifications, and in Source or Object form, provided that You
  77. meet the following conditions:
  78. (a) You must give any other recipients of the Work or
  79. Derivative Works a copy of this License; and
  80. (b) You must cause any modified files to carry prominent notices
  81. stating that You changed the files; and
  82. (c) You must retain, in the Source form of any Derivative Works
  83. that You distribute, all copyright, patent, trademark, and
  84. attribution notices from the Source form of the Work,
  85. excluding those notices that do not pertain to any part of
  86. the Derivative Works; and
  87. (d) If the Work includes a "NOTICE" text file as part of its
  88. distribution, then any Derivative Works that You distribute must
  89. include a readable copy of the attribution notices contained
  90. within such NOTICE file, excluding those notices that do not
  91. pertain to any part of the Derivative Works, in at least one
  92. of the following places: within a NOTICE text file distributed
  93. as part of the Derivative Works; within the Source form or
  94. documentation, if provided along with the Derivative Works; or,
  95. within a display generated by the Derivative Works, if and
  96. wherever such third-party notices normally appear. The contents
  97. of the NOTICE file are for informational purposes only and
  98. do not modify the License. You may add Your own attribution
  99. notices within Derivative Works that You distribute, alongside
  100. or as an addendum to the NOTICE text from the Work, provided
  101. that such additional attribution notices cannot be construed
  102. as modifying the License.
  103. You may add Your own copyright statement to Your modifications and
  104. may provide additional or different license terms and conditions
  105. for use, reproduction, or distribution of Your modifications, or
  106. for any such Derivative Works as a whole, provided Your use,
  107. reproduction, and distribution of the Work otherwise complies with
  108. the conditions stated in this License.
  109. 5. Submission of Contributions. Unless You explicitly state otherwise,
  110. any Contribution intentionally submitted for inclusion in the Work
  111. by You to the Licensor shall be under the terms and conditions of
  112. this License, without any additional terms or conditions.
  113. Notwithstanding the above, nothing herein shall supersede or modify
  114. the terms of any separate license agreement you may have executed
  115. with Licensor regarding such Contributions.
  116. 6. Trademarks. This License does not grant permission to use the trade
  117. names, trademarks, service marks, or product names of the Licensor,
  118. except as required for reasonable and customary use in describing the
  119. origin of the Work and reproducing the content of the NOTICE file.
  120. 7. Disclaimer of Warranty. Unless required by applicable law or
  121. agreed to in writing, Licensor provides the Work (and each
  122. Contributor provides its Contributions) on an "AS IS" BASIS,
  123. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
  124. implied, including, without limitation, any warranties or conditions
  125. of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
  126. PARTICULAR PURPOSE. You are solely responsible for determining the
  127. appropriateness of using or redistributing the Work and assume any
  128. risks associated with Your exercise of permissions under this License.
  129. 8. Limitation of Liability. In no event and under no legal theory,
  130. whether in tort (including negligence), contract, or otherwise,
  131. unless required by applicable law (such as deliberate and grossly
  132. negligent acts) or agreed to in writing, shall any Contributor be
  133. liable to You for damages, including any direct, indirect, special,
  134. incidental, or consequential damages of any character arising as a
  135. result of this License or out of the use or inability to use the
  136. Work (including but not limited to damages for loss of goodwill,
  137. work stoppage, computer failure or malfunction, or any and all
  138. other commercial damages or losses), even if such Contributor
  139. has been advised of the possibility of such damages.
  140. 9. Accepting Warranty or Additional Liability. While redistributing
  141. the Work or Derivative Works thereof, You may choose to offer,
  142. and charge a fee for, acceptance of support, warranty, indemnity,
  143. or other liability obligations and/or rights consistent with this
  144. License. However, in accepting such obligations, You may act only
  145. on Your own behalf and on Your sole responsibility, not on behalf
  146. of any other Contributor, and only if You agree to indemnify,
  147. defend, and hold each Contributor harmless for any liability
  148. incurred by, or claims asserted against, such Contributor by reason
  149. of your accepting any such warranty or additional liability.
  150. END OF TERMS AND CONDITIONS
  151. APPENDIX: How to apply the Apache License to your work.
  152. To apply the Apache License to your work, attach the following
  153. boilerplate notice, with the fields enclosed by brackets "[]"
  154. replaced with your own identifying information. (Don't include
  155. the brackets!) The text should be enclosed in the appropriate
  156. comment syntax for the file format. We also recommend that a
  157. file or class name and description of purpose be included on the
  158. same "printed page" as the copyright notice for easier
  159. identification within third-party archives.
  160. Copyright [yyyy] [name of copyright owner]
  161. Licensed under the Apache License, Version 2.0 (the "License");
  162. you may not use this file except in compliance with the License.
  163. You may obtain a copy of the License at
  164. http://www.apache.org/licenses/LICENSE-2.0
  165. Unless required by applicable law or agreed to in writing, software
  166. distributed under the License is distributed on an "AS IS" BASIS,
  167. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  168. See the License for the specific language governing permissions and
  169. limitations under the License.
  170. APACHE HADOOP SUBCOMPONENTS:
  171. The Apache Hadoop project contains subcomponents with separate copyright
  172. notices and license terms. Your use of the source code for the these
  173. subcomponents is subject to the terms and conditions of the following
  174. licenses.
  175. For the org.apache.hadoop.util.bloom.* classes:
  176. /**
  177. *
  178. * Copyright (c) 2005, European Commission project OneLab under contract
  179. * 034819 (http://www.one-lab.org)
  180. * All rights reserved.
  181. * Redistribution and use in source and binary forms, with or
  182. * without modification, are permitted provided that the following
  183. * conditions are met:
  184. * - Redistributions of source code must retain the above copyright
  185. * notice, this list of conditions and the following disclaimer.
  186. * - Redistributions in binary form must reproduce the above copyright
  187. * notice, this list of conditions and the following disclaimer in
  188. * the documentation and/or other materials provided with the distribution.
  189. * - Neither the name of the University Catholique de Louvain - UCL
  190. * nor the names of its contributors may be used to endorse or
  191. * promote products derived from this software without specific prior
  192. * written permission.
  193. *
  194. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  195. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  196. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
  197. * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  198. * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
  199. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  200. * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  201. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  202. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  203. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  204. * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  205. * POSSIBILITY OF SUCH DAMAGE.
  206. */
  207. For portions of the native implementation of slicing-by-8 CRC calculation
  208. in src/main/native/src/org/apache/hadoop/util:
  209. /**
  210. * Copyright 2008,2009,2010 Massachusetts Institute of Technology.
  211. * All rights reserved. Use of this source code is governed by a
  212. * BSD-style license that can be found in the LICENSE file.
  213. */
  214. For src/main/native/src/org/apache/hadoop/io/compress/lz4/{lz4.h,lz4.c,lz4hc.h,lz4hc.c},
  215. /*
  216. LZ4 - Fast LZ compression algorithm
  217. Header File
  218. Copyright (C) 2011-2014, Yann Collet.
  219. BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
  220. Redistribution and use in source and binary forms, with or without
  221. modification, are permitted provided that the following conditions are
  222. met:
  223. * Redistributions of source code must retain the above copyright
  224. notice, this list of conditions and the following disclaimer.
  225. * Redistributions in binary form must reproduce the above
  226. copyright notice, this list of conditions and the following disclaimer
  227. in the documentation and/or other materials provided with the
  228. distribution.
  229. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  230. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  231. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  232. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  233. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  234. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  235. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  236. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  237. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  238. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  239. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  240. You can contact the author at :
  241. - LZ4 source repository : http://code.google.com/p/lz4/
  242. - LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c
  243. */
  244. For hadoop-hdfs-project/hadoop-hdfs-native-client/src/main/native/fuse-dfs/util/tree.h
  245. ---------------------------------------------------------------------
  246. Copyright 2002 Niels Provos <provos@citi.umich.edu>
  247. All rights reserved.
  248. Redistribution and use in source and binary forms, with or without
  249. modification, are permitted provided that the following conditions
  250. are met:
  251. 1. Redistributions of source code must retain the above copyright
  252. notice, this list of conditions and the following disclaimer.
  253. 2. Redistributions in binary form must reproduce the above copyright
  254. notice, this list of conditions and the following disclaimer in the
  255. documentation and/or other materials provided with the distribution.
  256. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  257. IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  258. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  259. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  260. INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  261. NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  262. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  263. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  264. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  265. THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  266. The binary distribution of this product bundles binaries of leveldbjni
  267. (https://github.com/fusesource/leveldbjni), which is available under the
  268. following license:
  269. Copyright (c) 2011 FuseSource Corp. All rights reserved.
  270. Redistribution and use in source and binary forms, with or without
  271. modification, are permitted provided that the following conditions are
  272. met:
  273. * Redistributions of source code must retain the above copyright
  274. notice, this list of conditions and the following disclaimer.
  275. * Redistributions in binary form must reproduce the above
  276. copyright notice, this list of conditions and the following disclaimer
  277. in the documentation and/or other materials provided with the
  278. distribution.
  279. * Neither the name of FuseSource Corp. nor the names of its
  280. contributors may be used to endorse or promote products derived from
  281. this software without specific prior written permission.
  282. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  283. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  284. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  285. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  286. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  287. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  288. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  289. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  290. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  291. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  292. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  293. For hadoop-yarn-project/hadoop-yarn/hadoop-yarn-server/hadoop-yarn-server-nodemanager/src/main/native/container-executor/impl/compat/{fstatat|openat|unlinkat}.h:
  294. Copyright (c) 2012 The FreeBSD Foundation
  295. All rights reserved.
  296. This software was developed by Pawel Jakub Dawidek under sponsorship from
  297. the FreeBSD Foundation.
  298. Redistribution and use in source and binary forms, with or without
  299. modification, are permitted provided that the following conditions
  300. are met:
  301. 1. Redistributions of source code must retain the above copyright
  302. notice, this list of conditions and the following disclaimer.
  303. 2. Redistributions in binary form must reproduce the above copyright
  304. notice, this list of conditions and the following disclaimer in the
  305. documentation and/or other materials provided with the distribution.
  306. THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
  307. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  308. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  309. ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR CONTRIBUTORS BE LIABLE
  310. FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  311. DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  312. OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  313. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  314. LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  315. OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  316. SUCH DAMAGE.
  317. =============
  318. The binary distribution of this product bundles binaries of leveldb
  319. (http://code.google.com/p/leveldb/), which is available under the following
  320. license:
  321. Copyright (c) 2011 The LevelDB Authors. All rights reserved.
  322. Redistribution and use in source and binary forms, with or without
  323. modification, are permitted provided that the following conditions are
  324. met:
  325. * Redistributions of source code must retain the above copyright
  326. notice, this list of conditions and the following disclaimer.
  327. * Redistributions in binary form must reproduce the above
  328. copyright notice, this list of conditions and the following disclaimer
  329. in the documentation and/or other materials provided with the
  330. distribution.
  331. * Neither the name of Google Inc. nor the names of its
  332. contributors may be used to endorse or promote products derived from
  333. this software without specific prior written permission.
  334. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  335. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  336. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  337. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  338. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  339. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  340. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  341. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  342. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  343. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  344. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  345. The binary distribution of this product bundles binaries of snappy
  346. (http://code.google.com/p/snappy/), which is available under the following
  347. license:
  348. Copyright 2011, Google Inc.
  349. All rights reserved.
  350. Redistribution and use in source and binary forms, with or without
  351. modification, are permitted provided that the following conditions are
  352. met:
  353. * Redistributions of source code must retain the above copyright
  354. notice, this list of conditions and the following disclaimer.
  355. * Redistributions in binary form must reproduce the above
  356. copyright notice, this list of conditions and the following disclaimer
  357. in the documentation and/or other materials provided with the
  358. distribution.
  359. * Neither the name of Google Inc. nor the names of its
  360. contributors may be used to endorse or promote products derived from
  361. this software without specific prior written permission.
  362. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  363. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  364. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  365. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  366. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  367. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  368. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  369. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  370. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  371. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  372. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  373. For:
  374. hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/static/dataTables.bootstrap.js
  375. hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/static/dataTables.bootstrap.css
  376. hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/static/jquery.dataTables.min.js
  377. hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/dt-1.9.4/
  378. --------------------------------------------------------------------------------
  379. Copyright (C) 2008-2016, SpryMedia Ltd.
  380. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
  381. The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
  382. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  383. For:
  384. hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/static/dust-full-2.0.0.min.js
  385. hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/static/dust-helpers-1.1.1.min.js
  386. --------------------------------------------------------------------------------
  387. Copyright (c) 2010 Aleksander Williams
  388. Permission is hereby granted, free of charge, to any person obtaining a copy
  389. of this software and associated documentation files (the "Software"), to deal
  390. in the Software without restriction, including without limitation the rights
  391. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  392. copies of the Software, and to permit persons to whom the Software is
  393. furnished to do so, subject to the following conditions:
  394. The above copyright notice and this permission notice shall be included in
  395. all copies or substantial portions of the Software.
  396. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  397. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  398. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  399. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  400. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  401. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  402. THE SOFTWARE.
  403. For:
  404. hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/static/moment.min.js
  405. --------------------------------------------------------------------------------
  406. Copyright (c) 2011-2016 Tim Wood, Iskren Chernev, Moment.js contributors
  407. Permission is hereby granted, free of charge, to any person
  408. obtaining a copy of this software and associated documentation
  409. files (the "Software"), to deal in the Software without
  410. restriction, including without limitation the rights to use,
  411. copy, modify, merge, publish, distribute, sublicense, and/or sell
  412. copies of the Software, and to permit persons to whom the
  413. Software is furnished to do so, subject to the following
  414. conditions:
  415. The above copyright notice and this permission notice shall be
  416. included in all copies or substantial portions of the Software.
  417. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  418. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  419. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  420. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  421. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  422. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  423. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  424. OTHER DEALINGS IN THE SOFTWARE.
  425. For:
  426. hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/static/bootstrap-3.0.2
  427. hadoop-tools/hadoop-sls/src/main/html/js/thirdparty/bootstrap.min.js
  428. hadoop-tools/hadoop-sls/src/main/html/css/bootstrap.min.css
  429. hadoop-tools/hadoop-sls/src/main/html/css/bootstrap-responsive.min.css
  430. And the binary distribution of this product bundles these dependencies under the
  431. following license:
  432. Mockito 1.8.5
  433. JUL to SLF4J bridge 1.7.25
  434. SLF4J API Module 1.7.25
  435. SLF4J LOG4J-12 Binding 1.7.25
  436. --------------------------------------------------------------------------------
  437. The MIT License (MIT)
  438. Permission is hereby granted, free of charge, to any person obtaining a copy
  439. of this software and associated documentation files (the "Software"), to deal
  440. in the Software without restriction, including without limitation the rights
  441. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  442. copies of the Software, and to permit persons to whom the Software is
  443. furnished to do so, subject to the following conditions:
  444. The above copyright notice and this permission notice shall be included in
  445. all copies or substantial portions of the Software.
  446. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  447. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  448. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  449. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  450. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  451. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  452. THE SOFTWARE.
  453. For:
  454. hadoop-hdfs-project/hadoop-hdfs/src/main/webapps/static/jquery-1.10.2.min.js
  455. hadoop-tools/hadoop-sls/src/main/html/js/thirdparty/jquery.js
  456. hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jquery
  457. --------------------------------------------------------------------------------
  458. Copyright jQuery Foundation and other contributors, https://jquery.org/
  459. This software consists of voluntary contributions made by many
  460. individuals. For exact contribution history, see the revision history
  461. available at https://github.com/jquery/jquery
  462. The following license applies to all parts of this software except as
  463. documented below:
  464. ====
  465. Permission is hereby granted, free of charge, to any person obtaining
  466. a copy of this software and associated documentation files (the
  467. "Software"), to deal in the Software without restriction, including
  468. without limitation the rights to use, copy, modify, merge, publish,
  469. distribute, sublicense, and/or sell copies of the Software, and to
  470. permit persons to whom the Software is furnished to do so, subject to
  471. the following conditions:
  472. The above copyright notice and this permission notice shall be
  473. included in all copies or substantial portions of the Software.
  474. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  475. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  476. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  477. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  478. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  479. OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  480. WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  481. ====
  482. All files located in the node_modules and external directories are
  483. externally maintained libraries used by this software which have their
  484. own licenses; we recommend you read them, as their terms may differ from
  485. the terms above.
  486. For:
  487. hadoop-yarn-project/hadoop-yarn/hadoop-yarn-common/src/main/resources/webapps/static/jt/jquery.jstree.js.gz
  488. --------------------------------------------------------------------------------
  489. Copyright (c) 2014 Ivan Bozhanov
  490. Permission is hereby granted, free of charge, to any person
  491. obtaining a copy of this software and associated documentation
  492. files (the "Software"), to deal in the Software without
  493. restriction, including without limitation the rights to use,
  494. copy, modify, merge, publish, distribute, sublicense, and/or sell
  495. copies of the Software, and to permit persons to whom the
  496. Software is furnished to do so, subject to the following
  497. conditions:
  498. The above copyright notice and this permission notice shall be
  499. included in all copies or substantial portions of the Software.
  500. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  501. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  502. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  503. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  504. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  505. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  506. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  507. OTHER DEALINGS IN THE SOFTWARE.
  508. For:
  509. hadoop-tools/hadoop-sls/src/main/html/js/thirdparty/d3.v3.js
  510. --------------------------------------------------------------------------------
  511. D3 is available under a 3-clause BSD license. For details, see:
  512. hadoop-tools/hadoop-sls/src/main/html/js/thirdparty/d3-LICENSE
  513. The binary distribution of this product bundles these dependencies under the
  514. following license:
  515. HSQLDB Database 2.3.4
  516. --------------------------------------------------------------------------------
  517. "COPYRIGHTS AND LICENSES (based on BSD License)
  518. For work developed by the HSQL Development Group:
  519. Copyright (c) 2001-2016, The HSQL Development Group
  520. All rights reserved.
  521. Redistribution and use in source and binary forms, with or without
  522. modification, are permitted provided that the following conditions are met:
  523. Redistributions of source code must retain the above copyright notice, this
  524. list of conditions and the following disclaimer.
  525. Redistributions in binary form must reproduce the above copyright notice,
  526. this list of conditions and the following disclaimer in the documentation
  527. and/or other materials provided with the distribution.
  528. Neither the name of the HSQL Development Group nor the names of its
  529. contributors may be used to endorse or promote products derived from this
  530. software without specific prior written permission.
  531. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ""AS IS""
  532. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  533. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  534. ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG,
  535. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  536. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  537. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  538. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  539. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  540. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  541. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  542. For work originally developed by the Hypersonic SQL Group:
  543. Copyright (c) 1995-2000 by the Hypersonic SQL Group.
  544. All rights reserved.
  545. Redistribution and use in source and binary forms, with or without
  546. modification, are permitted provided that the following conditions are met:
  547. Redistributions of source code must retain the above copyright notice, this
  548. list of conditions and the following disclaimer.
  549. Redistributions in binary form must reproduce the above copyright notice,
  550. this list of conditions and the following disclaimer in the documentation
  551. and/or other materials provided with the distribution.
  552. Neither the name of the Hypersonic SQL Group nor the names of its
  553. contributors may be used to endorse or promote products derived from this
  554. software without specific prior written permission.
  555. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ""AS IS""
  556. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  557. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  558. ARE DISCLAIMED. IN NO EVENT SHALL THE HYPERSONIC SQL GROUP,
  559. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  560. EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  561. PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  562. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  563. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  564. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  565. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  566. This software consists of voluntary contributions made by many individuals on behalf of the
  567. Hypersonic SQL Group."
  568. The binary distribution of this product bundles these dependencies under the
  569. following license:
  570. servlet-api 2.5
  571. jsp-api 2.1
  572. Streaming API for XML 1.0
  573. --------------------------------------------------------------------------------
  574. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
  575. 1. Definitions. 
  576. 1.1. Contributor means each individual or entity
  577. that creates or contributes to the creation of
  578. Modifications. 
  579. 1.2. Contributor Version means the combination of the
  580. Original Software, prior Modifications used by a Contributor (if any), and the
  581. Modifications made by that particular Contributor. 
  582. 1.3. Covered
  583. Software means (a) the Original Software, or (b) Modifications, or (c) the
  584. combination of files containing Original Software with files containing
  585. Modifications, in each case including portions
  586. thereof. 
  587. 1.4. Executable means the Covered Software in any form other
  588. than Source Code. 
  589. 1.5. Initial Developer means the individual or entity
  590. that first makes Original Software available under this
  591. License. 
  592. 1.6. Larger Work means a work which combines Covered Software or
  593. portions thereof with code not governed by the terms of this
  594. License. 
  595. 1.7. License means this document. 
  596. 1.8. Licensable means
  597. having the right to grant, to the maximum extent possible, whether at the time
  598. of the initial grant or subsequently acquired, any and all of the rights
  599. conveyed herein. 
  600. 1.9. Modifications means the Source Code and Executable
  601. form of any of the following:
  602. A. Any file that results from an addition to,
  603. deletion from or modification of the contents of a file containing Original
  604. Software or previous Modifications;
  605. B. Any new file that contains any part of the Original Software
  606. or previous Modification; or
  607. C. Any new file that is contributed or otherwise made available
  608. under the terms of this License. 
  609. 1.10. Original Software means the Source Code and Executable form of
  610. computer software code that is originally released under this License. 
  611. 1.11. Patent Claims means any patent claim(s), now owned or
  612. hereafter acquired, including without limitation, method, process, and apparatus
  613. claims, in any patent Licensable by grantor. 
  614. 1.12. Source Code means (a) the common form of computer software code in which
  615. modifications are made and (b) associated documentation included in or
  616. with such code. 
  617. 1.13. You (or Your) means an individual or a legal entity exercising rights
  618. under, and complying with all of the terms of, this License. For legal entities,
  619. You includes any entity which controls, is controlled by, or is under common control
  620. with You. For purposes of this definition, control means (a) the power, direct
  621. or indirect, to cause the direction or management of such entity, whether by
  622. contract or otherwise, or (b) ownership of more than fifty percent (50%) of the
  623. outstanding shares or beneficial ownership of such entity. 
  624. 2. License Grants.
  625. 2.1. The Initial Developer Grant. Conditioned upon Your compliance
  626. with Section 3.1 below and subject to third party intellectual property claims,
  627. the Initial Developer hereby grants You a world-wide, royalty-free,
  628. non-exclusive license: 
  629. (a) under intellectual property rights (other than
  630. patent or trademark) Licensable by Initial Developer, to use, reproduce, modify,
  631. display, perform, sublicense and distribute the Original Software (or portions
  632. thereof), with or without Modifications, and/or as part of a Larger Work;
  633. and 
  634. (b) under Patent Claims infringed by the making, using or selling of
  635. Original Software, to make, have made, use, practice, sell, and offer for sale,
  636. and/or otherwise dispose of the Original Software (or portions
  637. thereof);
  638. (c) The licenses granted in Sections 2.1(a) and (b) are
  639. effective on the date Initial Developer first distributes or otherwise makes the
  640. Original Software available to a third party under the terms of this
  641. License;
  642. (d) Notwithstanding Section 2.1(b) above, no patent license is
  643. granted: (1) for code that You delete from the Original Software, or (2) for
  644. infringements caused by: (i) the modification of the Original Software, or
  645. (ii) the combination of the Original Software with other software or
  646. devices. 
  647. 2.2. Contributor Grant. Conditioned upon Your compliance with
  648. Section 3.1 below and subject to third party intellectual property claims, each
  649. Contributor hereby grants You a world-wide, royalty-free, non-exclusive
  650. license: 
  651. (a) under intellectual property rights (other than patent or
  652. trademark) Licensable by Contributor to use, reproduce, modify, display,
  653. perform, sublicense and distribute the Modifications created by such Contributor
  654. (or portions thereof), either on an unmodified basis, with other Modifications,
  655. as Covered Software and/or as part of a Larger Work; and 
  656. (b) under Patent
  657. Claims infringed by the making, using, or selling of Modifications made by that
  658. Contributor either alone and/or in combination with its Contributor Version (or
  659. portions of such combination), to make, use, sell, offer for sale, have made,
  660. and/or otherwise dispose of: (1) Modifications made by that Contributor (or
  661. portions thereof); and (2) the combination of Modifications made by that
  662. Contributor with its Contributor Version (or portions of such
  663. combination). 
  664. (c) The licenses granted in Sections 2.2(a) and 2.2(b) are
  665. effective on the date Contributor first distributes or otherwise makes the
  666. Modifications available to a third party.
  667. (d) Notwithstanding Section 2.2(b)
  668. above, no patent license is granted: (1) for any code that Contributor has
  669. deleted from the Contributor Version; (2) for infringements caused by:
  670. (i) third party modifications of Contributor Version, or (ii) the combination
  671. of Modifications made by that Contributor with other software (except as part of
  672. the Contributor Version) or other devices; or (3) under Patent Claims infringed
  673. by Covered Software in the absence of Modifications made by that
  674. Contributor. 
  675. 3. Distribution Obligations. 
  676. 3.1. Availability of Source
  677. Code. Any Covered Software that You distribute or otherwise make available in
  678. Executable form must also be made available in Source Code form and that Source
  679. Code form must be distributed only under the terms of this License. You must
  680. include a copy of this License with every copy of the Source Code form of the
  681. Covered Software You distribute or otherwise make available. You must inform
  682. recipients of any such Covered Software in Executable form as to how they can
  683. obtain such Covered Software in Source Code form in a reasonable manner on or
  684. through a medium customarily used for software exchange. 
  685. 3.2.
  686. Modifications. The Modifications that You create or to which You contribute are
  687. governed by the terms of this License. You represent that You believe Your
  688. Modifications are Your original creation(s) and/or You have sufficient rights to
  689. grant the rights conveyed by this License. 
  690. 3.3. Required Notices. You must
  691. include a notice in each of Your Modifications that identifies You as the
  692. Contributor of the Modification. You may not remove or alter any copyright,
  693. patent or trademark notices contained within the Covered Software, or any
  694. notices of licensing or any descriptive text giving attribution to any
  695. Contributor or the Initial Developer. 
  696. 3.4. Application of Additional Terms.
  697. You may not offer or impose any terms on any Covered Software in Source Code
  698. form that alters or restricts the applicable version of this License or the
  699. recipients rights hereunder. You may choose to offer, and to charge a fee for,
  700. warranty, support, indemnity or liability obligations to one or more recipients
  701. of Covered Software. However, you may do so only on Your own behalf, and not on
  702. behalf of the Initial Developer or any Contributor. You must make it absolutely
  703. clear that any such warranty, support, indemnity or liability obligation is
  704. offered by You alone, and You hereby agree to indemnify the Initial Developer
  705. and every Contributor for any liability incurred by the Initial Developer or
  706. such Contributor as a result of warranty, support, indemnity or liability terms
  707. You offer.
  708. 3.5. Distribution of Executable Versions. You may distribute the
  709. Executable form of the Covered Software under the terms of this License or under
  710. the terms of a license of Your choice, which may contain terms different from
  711. this License, provided that You are in compliance with the terms of this License
  712. and that the license for the Executable form does not attempt to limit or alter
  713. the recipients rights in the Source Code form from the rights set forth in this
  714. License. If You distribute the Covered Software in Executable form under a
  715. different license, You must make it absolutely clear that any terms which differ
  716. from this License are offered by You alone, not by the Initial Developer or
  717. Contributor. You hereby agree to indemnify the Initial Developer and every
  718. Contributor for any liability incurred by the Initial Developer or such
  719. Contributor as a result of any such terms You offer. 
  720. 3.6. Larger Works. You
  721. may create a Larger Work by combining Covered Software with other code not
  722. governed by the terms of this License and distribute the Larger Work as a single
  723. product. In such a case, You must make sure the requirements of this License are
  724. fulfilled for the Covered Software. 
  725. 4. Versions of the License. 
  726. 4.1.
  727. New Versions. Sun Microsystems, Inc. is the initial license steward and may
  728. publish revised and/or new versions of this License from time to time. Each
  729. version will be given a distinguishing version number. Except as provided in
  730. Section 4.3, no one other than the license steward has the right to modify this
  731. License. 
  732. 4.2. Effect of New Versions. You may always continue to use,
  733. distribute or otherwise make the Covered Software available under the terms of
  734. the version of the License under which You originally received the Covered
  735. Software. If the Initial Developer includes a notice in the Original Software
  736. prohibiting it from being distributed or otherwise made available under any
  737. subsequent version of the License, You must distribute and make the Covered
  738. Software available under the terms of the version of the License under which You
  739. originally received the Covered Software. Otherwise, You may also choose to use,
  740. distribute or otherwise make the Covered Software available under the terms of
  741. any subsequent version of the License published by the license
  742. steward. 
  743. 4.3. Modified Versions. When You are an Initial Developer and You
  744. want to create a new license for Your Original Software, You may create and use
  745. a modified version of this License if You: (a) rename the license and remove
  746. any references to the name of the license steward (except to note that the
  747. license differs from this License); and (b) otherwise make it clear that the
  748. license contains terms which differ from this License. 
  749. 5. DISCLAIMER OF WARRANTY.
  750. COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN AS IS BASIS,
  751. WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT
  752. LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS,
  753. MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK AS
  754. TO THE QUALITY AND PERFORMANCE OF THE COVERED SOFTWARE IS WITH YOU. SHOULD ANY
  755. COVERED SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER
  756. OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR
  757. CORRECTION. THIS DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS
  758. LICENSE. NO USE OF ANY COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER
  759. THIS DISCLAIMER. 
  760. 6. TERMINATION. 
  761. 6.1. This License and the rights
  762. granted hereunder will terminate automatically if You fail to comply with terms
  763. herein and fail to cure such breach within 30 days of becoming aware of the
  764. breach. Provisions which, by their nature, must remain in effect beyond the
  765. termination of this License shall survive. 
  766. 6.2. If You assert a patent
  767. infringement claim (excluding declaratory judgment actions) against Initial
  768. Developer or a Contributor (the Initial Developer or Contributor against whom
  769. You assert such claim is referred to as Participant) alleging that the
  770. Participant Software (meaning the Contributor Version where the Participant is a
  771. Contributor or the Original Software where the Participant is the Initial
  772. Developer) directly or indirectly infringes any patent, then any and all rights
  773. granted directly or indirectly to You by such Participant, the Initial Developer
  774. (if the Initial Developer is not the Participant) and all Contributors under
  775. Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice from
  776. Participant terminate prospectively and automatically at the expiration of such
  777. 60 day notice period, unless if within such 60 day period You withdraw Your
  778. claim with respect to the Participant Software against such Participant either
  779. unilaterally or pursuant to a written agreement with Participant. 
  780. 6.3. In
  781. the event of termination under Sections 6.1 or 6.2 above, all end user licenses
  782. that have been validly granted by You or any distributor hereunder prior to
  783. termination (excluding licenses granted to You by any distributor) shall survive
  784. termination. 
  785. 7. LIMITATION OF LIABILITY.
  786. UNDER NO CIRCUMSTANCES AND UNDER
  787. NO LEGAL THEORY, WHETHER TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE,
  788. SHALL YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF
  789. COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY
  790. PERSON FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
  791. CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF
  792. GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
  793. COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE
  794. POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO
  795. LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SUCH PARTYS NEGLIGENCE TO
  796. THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT
  797. ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
  798. THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. 
  799. 8. U.S. GOVERNMENT END USERS.
  800. The Covered Software is a commercial item, as that term is defined in
  801. 48 C.F.R. 2.101 (Oct. 1995), consisting of commercial computer software (as
  802. that term is defined at 48 C.F.R.  252.227-7014(a)(1)) and commercial computer
  803. software documentation as such terms are used in 48 C.F.R. 12.212 (Sept.
  804. 1995). Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through
  805. 227.7202-4 (June 1995), all U.S. Government End Users acquire Covered Software
  806. with only those rights set forth herein. This U.S. Government Rights clause is
  807. in lieu of, and supersedes, any other FAR, DFAR, or other clause or provision
  808. that addresses Government rights in computer software under this
  809. License. 
  810. 9. MISCELLANEOUS.
  811. This License represents the complete agreement
  812. concerning subject matter hereof. If any provision of this License is held to be
  813. unenforceable, such provision shall be reformed only to the extent necessary to
  814. make it enforceable. This License shall be governed by the law of the
  815. jurisdiction specified in a notice contained within the Original Software
  816. (except to the extent applicable law, if any, provides otherwise), excluding
  817. such jurisdictions conflict-of-law provisions. Any litigation relating to this
  818. License shall be subject to the jurisdiction of the courts located in the
  819. jurisdiction and venue specified in a notice contained within the Original
  820. Software, with the losing party responsible for costs, including, without
  821. limitation, court costs and reasonable attorneys fees and expenses. The
  822. application of the United Nations Convention on Contracts for the International
  823. Sale of Goods is expressly excluded. Any law or regulation which provides that
  824. the language of a contract shall be construed against the drafter shall not
  825. apply to this License. You agree that You alone are responsible for compliance
  826. with the United States export administration regulations (and the export control
  827. laws and regulation of any other countries) when You use, distribute or
  828. otherwise make available any Covered Software. 
  829. 10. RESPONSIBILITY FOR CLAIMS.
  830. As between Initial Developer and the Contributors, each party is
  831. responsible for claims and damages arising, directly or indirectly, out of its
  832. utilization of rights under this License and You agree to work with Initial
  833. Developer and Contributors to distribute such responsibility on an equitable
  834. basis. Nothing herein is intended or shall be deemed to constitute any admission
  835. of liability. 
  836. The binary distribution of this product bundles these dependencies under the
  837. following license:
  838. Jersey 1.9
  839. JAXB API bundle for GlassFish V3 2.2.2
  840. JAXB RI 2.2.3
  841. --------------------------------------------------------------------------------
  842. COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL)Version 1.1
  843. 1. Definitions.
  844. 1.1. “Contributor” means each individual or entity that creates or
  845. contributes to the creation of Modifications.
  846. 1.2. “Contributor Version” means the combination of the Original Software,
  847. prior Modifications used by a Contributor (if any), and the Modifications made
  848. by that particular Contributor.
  849. 1.3. “Covered Software” means (a) the Original Software, or (b)
  850. Modifications, or (c) the combination of files containing Original Software with
  851. files containing Modifications, in each case including portions thereof.
  852. 1.4. “Executable” means the Covered Software in any form other than Source
  853. Code.
  854. 1.5. “Initial Developer” means the individual or entity that first makes
  855. Original Software available under this License.
  856. 1.6. “Larger Work” means a work which combines Covered Software or portions
  857. thereof with code not governed by the terms of this License.
  858. 1.7. “License” means this document.
  859. 1.8. “Licensable” means having the right to grant, to the maximum extent
  860. possible, whether at the time of the initial grant or subsequently acquired, any
  861. and all of the rights conveyed herein.
  862. 1.9. “Modifications” means the Source Code and Executable form of any of the
  863. following:
  864. A. Any file that results from an addition to, deletion from or modification of
  865. the contents of a file containing Original Software or previous Modifications;
  866. B. Any new file that contains any part of the Original Software or previous
  867. Modification; or
  868. C. Any new file that is contributed or otherwise made available under the terms
  869. of this License.
  870. 1.10. “Original Software” means the Source Code and Executable form of
  871. computer software code that is originally released under this License.
  872. 1.11. “Patent Claims” means any patent claim(s), now owned or hereafter
  873. acquired, including without limitation, method, process, and apparatus claims,
  874. in any patent Licensable by grantor.
  875. 1.12. “Source Code” means (a) the common form of computer software code in
  876. which modifications are made and (b) associated documentation included in or
  877. with such code.
  878. 1.13. “You” (or “Your”) means an individual or a legal entity exercising
  879. rights under, and complying with all of the terms of, this License. For legal
  880. entities, “You” includes any entity which controls, is controlled by, or is
  881. under common control with You. For purposes of this definition, “control”
  882. means (a) the power, direct or indirect, to cause the direction or management of
  883. such entity, whether by contract or otherwise, or (b) ownership of more than
  884. fifty percent (50%) of the outstanding shares or beneficial ownership of such
  885. entity.
  886. 2. License Grants.
  887. 2.1. The Initial Developer Grant.
  888. Conditioned upon Your compliance with Section 3.1 below and subject to
  889. third party intellectual property claims, the Initial Developer hereby grants
  890. You a world-wide, royalty-free, non-exclusive license:
  891. (a) under intellectual
  892. property rights (other than patent or trademark) Licensable by Initial
  893. Developer, to use, reproduce, modify, display, perform, sublicense and
  894. distribute the Original Software (or portions thereof), with or without
  895. Modifications, and/or as part of a Larger Work; and
  896. (b) under Patent Claims
  897. infringed by the making, using or selling of Original Software, to make, have
  898. made, use, practice, sell, and offer for sale, and/or otherwise dispose of the
  899. Original Software (or portions thereof).
  900. (c) The licenses granted in Sections
  901. 2.1(a) and (b) are effective on the date Initial Developer first distributes or
  902. otherwise makes the Original Software available to a third party under the terms
  903. of this License.
  904. (d) Notwithstanding Section 2.1(b) above, no patent license is
  905. granted: (1) for code that You delete from the Original Software, or (2) for
  906. infringements caused by: (i) the modification of the Original Software, or (ii)
  907. the combination of the Original Software with other software or devices.
  908. 2.2. Contributor Grant.
  909. Conditioned upon Your compliance with Section 3.1 below and
  910. subject to third party intellectual property claims, each Contributor hereby
  911. grants You a world-wide, royalty-free, non-exclusive license:
  912. (a) under
  913. intellectual property rights (other than patent or trademark) Licensable by
  914. Contributor to use, reproduce, modify, display, perform, sublicense and
  915. distribute the Modifications created by such Contributor (or portions thereof),
  916. either on an unmodified basis, with other Modifications, as Covered Software
  917. and/or as part of a Larger Work; and
  918. (b) under Patent Claims infringed by the
  919. making, using, or selling of Modifications made by that Contributor either alone
  920. and/or in combination with its Contributor Version (or portions of such
  921. combination), to make, use, sell, offer for sale, have made, and/or otherwise
  922. dispose of: (1) Modifications made by that Contributor (or portions thereof);
  923. and (2) the combination of Modifications made by that Contributor with its
  924. Contributor Version (or portions of such combination).
  925. (c) The licenses granted
  926. in Sections 2.2(a) and 2.2(b) are effective on the date Contributor first
  927. distributes or otherwise makes the Modifications available to a third
  928. party.
  929. (d) Notwithstanding Section 2.2(b) above, no patent license is granted:
  930. (1) for any code that Contributor has deleted from the Contributor Version; (2)
  931. for infringements caused by: (i) third party modifications of Contributor
  932. Version, or (ii) the combination of Modifications made by that Contributor with
  933. other software (except as part of the Contributor Version) or other devices; or
  934. (3) under Patent Claims infringed by Covered Software in the absence of
  935. Modifications made by that Contributor.
  936. 3. Distribution Obligations.
  937. 3.1. Availability of Source Code.
  938. Any Covered Software that You distribute or
  939. otherwise make available in Executable form must also be made available in
  940. Source Code form and that Source Code form must be distributed only under the
  941. terms of this License. You must include a copy of this License with every copy
  942. of the Source Code form of the Covered Software You distribute or otherwise make
  943. available. You must inform recipients of any such Covered Software in Executable
  944. form as to how they can obtain such Covered Software in Source Code form in a
  945. reasonable manner on or through a medium customarily used for software
  946. exchange.
  947. 3.2. Modifications.
  948. The Modifications that You create or to which
  949. You contribute are governed by the terms of this License. You represent that You
  950. believe Your Modifications are Your original creation(s) and/or You have
  951. sufficient rights to grant the rights conveyed by this License.
  952. 3.3. Required Notices.
  953. You must include a notice in each of Your Modifications that
  954. identifies You as the Contributor of the Modification. You may not remove or
  955. alter any copyright, patent or trademark notices contained within the Covered
  956. Software, or any notices of licensing or any descriptive text giving attribution
  957. to any Contributor or the Initial Developer.
  958. 3.4. Application of Additional Terms.
  959. You may not offer or impose any terms on any Covered Software in Source
  960. Code form that alters or restricts the applicable version of this License or the
  961. recipients' rights hereunder. You may choose to offer, and to charge a fee for,
  962. warranty, support, indemnity or liability obligations to one or more recipients
  963. of Covered Software. However, you may do so only on Your own behalf, and not on
  964. behalf of the Initial Developer or any Contributor. You must make it absolutely
  965. clear that any such warranty, support, indemnity or liability obligation is
  966. offered by You alone, and You hereby agree to indemnify the Initial Developer
  967. and every Contributor for any liability incurred by the Initial Developer or
  968. such Contributor as a result of warranty, support, indemnity or liability terms
  969. You offer.
  970. 3.5. Distribution of Executable Versions.
  971. You may distribute the
  972. Executable form of the Covered Software under the terms of this License or under
  973. the terms of a license of Your choice, which may contain terms different from
  974. this License, provided that You are in compliance with the terms of this License
  975. and that the license for the Executable form does not attempt to limit or alter
  976. the recipient's rights in the Source Code form from the rights set forth in
  977. this License. If You distribute the Covered Software in Executable form under a
  978. different license, You must make it absolutely clear that any terms which differ
  979. from this License are offered by You alone, not by the Initial Developer or
  980. Contributor. You hereby agree to indemnify the Initial Developer and every
  981. Contributor for any liability incurred by the Initial Developer or such
  982. Contributor as a result of any such terms You offer.
  983. 3.6. Larger Works.
  984. You
  985. may create a Larger Work by combining Covered Software with other code not
  986. governed by the terms of this License and distribute the Larger Work as a single
  987. product. In such a case, You must make sure the requirements of this License are
  988. fulfilled for the Covered Software.
  989. 4. Versions of the License.
  990. 4.1. New Versions.
  991. Oracle is the initial license steward and may publish revised and/or
  992. new versions of this License from time to time. Each version will be given a
  993. distinguishing version number. Except as provided in Section 4.3, no one other
  994. than the license steward has the right to modify this License.
  995. 4.2. Effect of New Versions.
  996. You may always continue to use, distribute or otherwise make the
  997. Covered Software available under the terms of the version of the License under
  998. which You originally received the Covered Software. If the Initial Developer
  999. includes a notice in the Original Software prohibiting it from being distributed
  1000. or otherwise made available under any subsequent version of the License, You
  1001. must distribute and make the Covered Software available under the terms of the
  1002. version of the License under which You originally received the Covered Software.
  1003. Otherwise, You may also choose to use, distribute or otherwise make the Covered
  1004. Software available under the terms of any subsequent version of the License
  1005. published by the license steward.
  1006. 4.3. Modified Versions.
  1007. When You are an
  1008. Initial Developer and You want to create a new license for Your Original
  1009. Software, You may create and use a modified version of this License if You: (a)
  1010. rename the license and remove any references to the name of the license steward
  1011. (except to note that the license differs from this License); and (b) otherwise
  1012. make it clear that the license contains terms which differ from this
  1013. License.
  1014. 5. DISCLAIMER OF WARRANTY.
  1015. COVERED SOFTWARE IS PROVIDED UNDER THIS
  1016. LICENSE ON AN “AS IS” BASIS, WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
  1017. OR IMPLIED, INCLUDING, WITHOUT LIMITATION, WARRANTIES THAT THE COVERED SOFTWARE
  1018. IS FREE OF DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR
  1019. NON-INFRINGING. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED
  1020. SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE PROVE DEFECTIVE IN ANY
  1021. RESPECT, YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
  1022. COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF
  1023. WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED
  1024. SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
  1025. 6. TERMINATION.
  1026. 6.1. This License and the rights granted hereunder will
  1027. terminate automatically if You fail to comply with terms herein and fail to cure
  1028. such breach within 30 days of becoming aware of the breach. Provisions which, by
  1029. their nature, must remain in effect beyond the termination of this License shall
  1030. survive.
  1031. 6.2. If You assert a patent infringement claim (excluding declaratory
  1032. judgment actions) against Initial Developer or a Contributor (the Initial
  1033. Developer or Contributor against whom You assert such claim is referred to as
  1034. “Participant”) alleging that the Participant Software (meaning the
  1035. Contributor Version where the Participant is a Contributor or the Original
  1036. Software where the Participant is the Initial Developer) directly or indirectly
  1037. infringes any patent, then any and all rights granted directly or indirectly to
  1038. You by such Participant, the Initial Developer (if the Initial Developer is not
  1039. the Participant) and all Contributors under Sections 2.1 and/or 2.2 of this
  1040. License shall, upon 60 days notice from Participant terminate prospectively and
  1041. automatically at the expiration of such 60 day notice period, unless if within
  1042. such 60 day period You withdraw Your claim with respect to the Participant
  1043. Software against such Participant either unilaterally or pursuant to a written
  1044. agreement with Participant.
  1045. 6.3. If You assert a patent infringement claim
  1046. against Participant alleging that the Participant Software directly or
  1047. indirectly infringes any patent where such claim is resolved (such as by license
  1048. or settlement) prior to the initiation of patent infringement litigation, then
  1049. the reasonable value of the licenses granted by such Participant under Sections
  1050. 2.1 or 2.2 shall be taken into account in determining the amount or value of any
  1051. payment or license.
  1052. 6.4. In the event of termination under Sections 6.1 or 6.2
  1053. above, all end user licenses that have been validly granted by You or any
  1054. distributor hereunder prior to termination (excluding licenses granted to You by
  1055. any distributor) shall survive termination.
  1056. 7. LIMITATION OF LIABILITY.
  1057. UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
  1058. (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
  1059. DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED SOFTWARE, OR ANY
  1060. SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT,
  1061. SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING,
  1062. WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER
  1063. FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN
  1064. IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS
  1065. LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL
  1066. INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
  1067. PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR
  1068. LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND
  1069. LIMITATION MAY NOT APPLY TO YOU.
  1070. 8. U.S. GOVERNMENT END USERS.
  1071. The Covered
  1072. Software is a “commercial item,” as that term is defined in 48 C.F.R. 2.101
  1073. (Oct. 1995), consisting of “commercial computer software” (as that term is
  1074. defined at 48 C.F.R. § 252.227-7014(a)(1)) and “commercial computer software
  1075. documentation” as such terms are used in 48 C.F.R. 12.212 (Sept. 1995).
  1076. Consistent with 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4
  1077. (June 1995), all U.S. Government End Users acquire Covered Software with only
  1078. those rights set forth herein. This U.S. Government Rights clause is in lieu of,
  1079. and supersedes, any other FAR, DFAR, or other clause or provision that addresses
  1080. Government rights in computer software under this License.
  1081. 9. MISCELLANEOUS.
  1082. This License represents the complete agreement concerning
  1083. subject matter hereof. If any provision of this License is held to be
  1084. unenforceable, such provision shall be reformed only to the extent necessary to
  1085. make it enforceable. This License shall be governed by the law of the
  1086. jurisdiction specified in a notice contained within the Original Software
  1087. (except to the extent applicable law, if any, provides otherwise), excluding
  1088. such jurisdiction's conflict-of-law provisions. Any litigation relating to this
  1089. License shall be subject to the jurisdiction of the courts located in the
  1090. jurisdiction and venue specified in a notice contained within the Original
  1091. Software, with the losing party responsible for costs, including, without
  1092. limitation, court costs and reasonable attorneys' fees and expenses. The
  1093. application of the United Nations Convention on Contracts for the International
  1094. Sale of Goods is expressly excluded. Any law or regulation which provides that
  1095. the language of a contract shall be construed against the drafter shall not
  1096. apply to this License. You agree that You alone are responsible for compliance
  1097. with the United States export administration regulations (and the export control
  1098. laws and regulation of any other countries) when You use, distribute or
  1099. otherwise make available any Covered Software.
  1100. 10. RESPONSIBILITY FOR CLAIMS.
  1101. As between Initial Developer and the Contributors, each party is
  1102. responsible for claims and damages arising, directly or indirectly, out of its
  1103. utilization of rights under this License and You agree to work with Initial
  1104. Developer and Contributors to distribute such responsibility on an equitable
  1105. basis. Nothing herein is intended or shall be deemed to constitute any admission
  1106. of liability.
  1107. The binary distribution of this product bundles these dependencies under the
  1108. following license:
  1109. Protocol Buffer Java API 2.5.0
  1110. --------------------------------------------------------------------------------
  1111. This license applies to all parts of Protocol Buffers except the following:
  1112. - Atomicops support for generic gcc, located in
  1113. src/google/protobuf/stubs/atomicops_internals_generic_gcc.h.
  1114. This file is copyrighted by Red Hat Inc.
  1115. - Atomicops support for AIX/POWER, located in
  1116. src/google/protobuf/stubs/atomicops_internals_power.h.
  1117. This file is copyrighted by Bloomberg Finance LP.
  1118. Copyright 2014, Google Inc. All rights reserved.
  1119. Redistribution and use in source and binary forms, with or without
  1120. modification, are permitted provided that the following conditions are
  1121. met:
  1122. * Redistributions of source code must retain the above copyright
  1123. notice, this list of conditions and the following disclaimer.
  1124. * Redistributions in binary form must reproduce the above
  1125. copyright notice, this list of conditions and the following disclaimer
  1126. in the documentation and/or other materials provided with the
  1127. distribution.
  1128. * Neither the name of Google Inc. nor the names of its
  1129. contributors may be used to endorse or promote products derived from
  1130. this software without specific prior written permission.
  1131. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  1132. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  1133. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  1134. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  1135. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1136. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  1137. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  1138. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  1139. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1140. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  1141. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1142. Code generated by the Protocol Buffer compiler is owned by the owner
  1143. of the input file used when generating it. This code is not
  1144. standalone and requires a support library to be linked with it. This
  1145. support library is itself covered by the above license.
  1146. For:
  1147. XML Commons External Components XML APIs 1.3.04
  1148. --------------------------------------------------------------------------------
  1149. By obtaining, using and/or copying this work, you (the licensee) agree that you
  1150. have read, understood, and will comply with the following terms and conditions.
  1151. Permission to copy, modify, and distribute this software and its documentation,
  1152. with or without modification, for any purpose and without fee or royalty is
  1153. hereby granted, provided that you include the following on ALL copies of the
  1154. software and documentation or portions thereof, including modifications:
  1155. - The full text of this NOTICE in a location viewable to users of the
  1156. redistributed or derivative work.
  1157. - Any pre-existing intellectual property disclaimers, notices, or terms and
  1158. conditions. If none exist, the W3C Software Short Notice should be included
  1159. (hypertext is preferred, text is permitted) within the body of any redistributed
  1160. or derivative code.
  1161. - Notice of any changes or modifications to the files, including the date changes
  1162. were made. (We recommend you provide URIs to the location from which the code is
  1163. derived.)
  1164. The binary distribution of this product bundles these dependencies under the
  1165. following license:
  1166. JUnit 4.11
  1167. ecj-4.3.1.jar
  1168. --------------------------------------------------------------------------------
  1169. Eclipse Public License - v 1.0
  1170. THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
  1171. LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
  1172. CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
  1173. 1. DEFINITIONS
  1174. "Contribution" means:
  1175. a) in the case of the initial Contributor, the initial code and documentation
  1176. distributed under this Agreement, and
  1177. b) in the case of each subsequent Contributor:
  1178. i) changes to the Program, and
  1179. ii) additions to the Program;
  1180. where such changes and/or additions to the Program originate from and are
  1181. distributed by that particular Contributor. A Contribution 'originates' from a
  1182. Contributor if it was added to the Program by such Contributor itself or anyone
  1183. acting on such Contributor's behalf. Contributions do not include additions to
  1184. the Program which: (i) are separate modules of software distributed in
  1185. conjunction with the Program under their own license agreement, and (ii) are not
  1186. derivative works of the Program.
  1187. "Contributor" means any person or entity that distributes the Program.
  1188. "Licensed Patents" mean patent claims licensable by a Contributor which are
  1189. necessarily infringed by the use or sale of its Contribution alone or when
  1190. combined with the Program.
  1191. "Program" means the Contributions distributed in accordance with this Agreement.
  1192. "Recipient" means anyone who receives the Program under this Agreement,
  1193. including all Contributors.
  1194. 2. GRANT OF RIGHTS
  1195. a) Subject to the terms of this Agreement, each Contributor hereby grants
  1196. Recipient a non-exclusive, worldwide, royalty-free copyright license to
  1197. reproduce, prepare derivative works of, publicly display, publicly perform,
  1198. distribute and sublicense the Contribution of such Contributor, if any, and such
  1199. derivative works, in source code and object code form.
  1200. b) Subject to the terms of this Agreement, each Contributor hereby grants
  1201. Recipient a non-exclusive, worldwide, royalty-free patent license under Licensed
  1202. Patents to make, use, sell, offer to sell, import and otherwise transfer the
  1203. Contribution of such Contributor, if any, in source code and object code form.
  1204. This patent license shall apply to the combination of the Contribution and the
  1205. Program if, at the time the Contribution is added by the Contributor, such
  1206. addition of the Contribution causes such combination to be covered by the
  1207. Licensed Patents. The patent license shall not apply to any other combinations
  1208. which include the Contribution. No hardware per se is licensed hereunder.
  1209. c) Recipient understands that although each Contributor grants the licenses to
  1210. its Contributions set forth herein, no assurances are provided by any
  1211. Contributor that the Program does not infringe the patent or other intellectual
  1212. property rights of any other entity. Each Contributor disclaims any liability to
  1213. Recipient for claims brought by any other entity based on infringement of
  1214. intellectual property rights or otherwise. As a condition to exercising the
  1215. rights and licenses granted hereunder, each Recipient hereby assumes sole
  1216. responsibility to secure any other intellectual property rights needed, if any.
  1217. For example, if a third party patent license is required to allow Recipient to
  1218. distribute the Program, it is Recipient's responsibility to acquire that license
  1219. before distributing the Program.
  1220. d) Each Contributor represents that to its knowledge it has sufficient copyright
  1221. rights in its Contribution, if any, to grant the copyright license set forth in
  1222. this Agreement.
  1223. 3. REQUIREMENTS
  1224. A Contributor may choose to distribute the Program in object code form under its
  1225. own license agreement, provided that:
  1226. a) it complies with the terms and conditions of this Agreement; and
  1227. b) its license agreement:
  1228. i) effectively disclaims on behalf of all Contributors all warranties and
  1229. conditions, express and implied, including warranties or conditions of title and
  1230. non-infringement, and implied warranties or conditions of merchantability and
  1231. fitness for a particular purpose;
  1232. ii) effectively excludes on behalf of all Contributors all liability for
  1233. damages, including direct, indirect, special, incidental and consequential
  1234. damages, such as lost profits;
  1235. iii) states that any provisions which differ from this Agreement are offered by
  1236. that Contributor alone and not by any other party; and
  1237. iv) states that source code for the Program is available from such Contributor,
  1238. and informs licensees how to obtain it in a reasonable manner on or through a
  1239. medium customarily used for software exchange.
  1240. When the Program is made available in source code form:
  1241. a) it must be made available under this Agreement; and
  1242. b) a copy of this Agreement must be included with each copy of the Program.
  1243. Contributors may not remove or alter any copyright notices contained within the
  1244. Program.
  1245. Each Contributor must identify itself as the originator of its Contribution, if
  1246. any, in a manner that reasonably allows subsequent Recipients to identify the
  1247. originator of the Contribution.
  1248. 4. COMMERCIAL DISTRIBUTION
  1249. Commercial distributors of software may accept certain responsibilities with
  1250. respect to end users, business partners and the like. While this license is
  1251. intended to facilitate the commercial use of the Program, the Contributor who
  1252. includes the Program in a commercial product offering should do so in a manner
  1253. which does not create potential liability for other Contributors. Therefore, if
  1254. a Contributor includes the Program in a commercial product offering, such
  1255. Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
  1256. every other Contributor ("Indemnified Contributor") against any losses, damages
  1257. and costs (collectively "Losses") arising from claims, lawsuits and other legal
  1258. actions brought by a third party against the Indemnified Contributor to the
  1259. extent caused by the acts or omissions of such Commercial Contributor in
  1260. connection with its distribution of the Program in a commercial product
  1261. offering. The obligations in this section do not apply to any claims or Losses
  1262. relating to any actual or alleged intellectual property infringement. In order
  1263. to qualify, an Indemnified Contributor must: a) promptly notify the Commercial
  1264. Contributor in writing of such claim, and b) allow the Commercial Contributor to
  1265. control, and cooperate with the Commercial Contributor in, the defense and any
  1266. related settlement negotiations. The Indemnified Contributor may participate in
  1267. any such claim at its own expense.
  1268. For example, a Contributor might include the Program in a commercial product
  1269. offering, Product X. That Contributor is then a Commercial Contributor. If that
  1270. Commercial Contributor then makes performance claims, or offers warranties
  1271. related to Product X, those performance claims and warranties are such
  1272. Commercial Contributor's responsibility alone. Under this section, the
  1273. Commercial Contributor would have to defend claims against the other
  1274. Contributors related to those performance claims and warranties, and if a court
  1275. requires any other Contributor to pay any damages as a result, the Commercial
  1276. Contributor must pay those damages.
  1277. 5. NO WARRANTY
  1278. EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
  1279. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
  1280. IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
  1281. NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
  1282. Recipient is solely responsible for determining the appropriateness of using and
  1283. distributing the Program and assumes all risks associated with its exercise of
  1284. rights under this Agreement , including but not limited to the risks and costs
  1285. of program errors, compliance with applicable laws, damage to or loss of data,
  1286. programs or equipment, and unavailability or interruption of operations.
  1287. 6. DISCLAIMER OF LIABILITY
  1288. EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
  1289. CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  1290. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST
  1291. PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  1292. STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  1293. OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
  1294. GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  1295. 7. GENERAL
  1296. If any provision of this Agreement is invalid or unenforceable under applicable
  1297. law, it shall not affect the validity or enforceability of the remainder of the
  1298. terms of this Agreement, and without further action by the parties hereto, such
  1299. provision shall be reformed to the minimum extent necessary to make such
  1300. provision valid and enforceable.
  1301. If Recipient institutes patent litigation against any entity (including a
  1302. cross-claim or counterclaim in a lawsuit) alleging that the Program itself
  1303. (excluding combinations of the Program with other software or hardware)
  1304. infringes such Recipient's patent(s), then such Recipient's rights granted under
  1305. Section 2(b) shall terminate as of the date such litigation is filed.
  1306. All Recipient's rights under this Agreement shall terminate if it fails to
  1307. comply with any of the material terms or conditions of this Agreement and does
  1308. not cure such failure in a reasonable period of time after becoming aware of
  1309. such noncompliance. If all Recipient's rights under this Agreement terminate,
  1310. Recipient agrees to cease use and distribution of the Program as soon as
  1311. reasonably practicable. However, Recipient's obligations under this Agreement
  1312. and any licenses granted by Recipient relating to the Program shall continue and
  1313. survive.
  1314. Everyone is permitted to copy and distribute copies of this Agreement, but in
  1315. order to avoid inconsistency the Agreement is copyrighted and may only be
  1316. modified in the following manner. The Agreement Steward reserves the right to
  1317. publish new versions (including revisions) of this Agreement from time to time.
  1318. No one other than the Agreement Steward has the right to modify this Agreement.
  1319. The Eclipse Foundation is the initial Agreement Steward. The Eclipse Foundation
  1320. may assign the responsibility to serve as the Agreement Steward to a suitable
  1321. separate entity. Each new version of the Agreement will be given a
  1322. distinguishing version number. The Program (including Contributions) may always
  1323. be distributed subject to the version of the Agreement under which it was
  1324. received. In addition, after a new version of the Agreement is published,
  1325. Contributor may elect to distribute the Program (including its Contributions)
  1326. under the new version. Except as expressly stated in Sections 2(a) and 2(b)
  1327. above, Recipient receives no rights or licenses to the intellectual property of
  1328. any Contributor under this Agreement, whether expressly, by implication,
  1329. estoppel or otherwise. All rights in the Program not expressly granted under
  1330. this Agreement are reserved.
  1331. This Agreement is governed by the laws of the State of New York and the
  1332. intellectual property laws of the United States of America. No party to this
  1333. Agreement will bring a legal action under this Agreement more than one year
  1334. after the cause of action arose. Each party waives its rights to a jury trial in
  1335. any resulting litigation.
  1336. The binary distribution of this product bundles these dependencies under the
  1337. following license:
  1338. ASM Core 3.2
  1339. JSch 0.1.51
  1340. ParaNamer Core 2.3
  1341. JLine 0.9.94
  1342. leveldbjni-all 1.8
  1343. Hamcrest Core 1.3
  1344. xmlenc Library 0.52
  1345. --------------------------------------------------------------------------------
  1346. Redistribution and use in source and binary forms, with or without
  1347. modification, are permitted provided that the following conditions are met:
  1348. * Redistributions of source code must retain the above copyright
  1349. notice, this list of conditions and the following disclaimer.
  1350. * Redistributions in binary form must reproduce the above copyright
  1351. notice, this list of conditions and the following disclaimer in the
  1352. documentation and/or other materials provided with the distribution.
  1353. * Neither the name of the <organization> nor the
  1354. names of its contributors may be used to endorse or promote products
  1355. derived from this software without specific prior written permission.
  1356. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  1357. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  1358. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1359. DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
  1360. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  1361. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  1362. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  1363. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1364. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  1365. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1366. The binary distribution of this product bundles these dependencies under the
  1367. following license:
  1368. FindBugs-jsr305 3.0.0
  1369. --------------------------------------------------------------------------------
  1370. Redistribution and use in source and binary forms, with or without
  1371. modification, are permitted provided that the following conditions are met:
  1372. 1. Redistributions of source code must retain the above copyright notice, this
  1373. list of conditions and the following disclaimer.
  1374. 2. Redistributions in binary form must reproduce the above copyright notice,
  1375. this list of conditions and the following disclaimer in the documentation
  1376. and/or other materials provided with the distribution.
  1377. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  1378. ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  1379. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  1380. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  1381. ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  1382. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  1383. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  1384. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  1385. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  1386. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  1387. The views and conclusions contained in the software and documentation are those
  1388. of the authors and should not be interpreted as representing official policies,
  1389. either expressed or implied, of the FreeBSD Project.
  1390. The binary distribution of this product bundles these dependencies under the
  1391. following license:
  1392. Java Concurrency in Practice book annotations 1.0
  1393. --------------------------------------------------------------------------------
  1394. THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS
  1395. PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR
  1396. OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS
  1397. LICENSE OR COPYRIGHT LAW IS PROHIBITED.
  1398. BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE
  1399. BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED
  1400. HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
  1401. 1. Definitions
  1402. "Collective Work" means a work, such as a periodical issue, anthology or
  1403. encyclopedia, in which the Work in its entirety in unmodified form, along with a
  1404. number of other contributions, constituting separate and independent works in
  1405. themselves, are assembled into a collective whole. A work that constitutes a
  1406. Collective Work will not be considered a Derivative Work (as defined below) for
  1407. the purposes of this License.
  1408. "Derivative Work" means a work based upon the Work or upon the Work and other
  1409. pre-existing works, such as a translation, musical arrangement, dramatization,
  1410. fictionalization, motion picture version, sound recording, art reproduction,
  1411. abridgment, condensation, or any other form in which the Work may be recast,
  1412. transformed, or adapted, except that a work that constitutes a Collective Work
  1413. will not be considered a Derivative Work for the purpose of this License. For
  1414. the avoidance of doubt, where the Work is a musical composition or sound
  1415. recording, the synchronization of the Work in timed-relation with a moving image
  1416. ("synching") will be considered a Derivative Work for the purpose of this
  1417. License.
  1418. "Licensor" means the individual or entity that offers the Work under the terms
  1419. of this License.
  1420. "Original Author" means the individual or entity who created the Work.
  1421. "Work" means the copyrightable work of authorship offered under the terms of
  1422. this License.
  1423. "You" means an individual or entity exercising rights under this License who has
  1424. not previously violated the terms of this License with respect to the Work, or
  1425. who has received express permission from the Licensor to exercise rights under
  1426. this License despite a previous violation.
  1427. 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or
  1428. restrict any rights arising from fair use, first sale or other limitations on
  1429. the exclusive rights of the copyright owner under copyright law or other
  1430. applicable laws.
  1431. 3. License Grant. Subject to the terms and conditions of this License, Licensor
  1432. hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the
  1433. duration of the applicable copyright) license to exercise the rights in the Work
  1434. as stated below:
  1435. to reproduce the Work, to incorporate the Work into one or more Collective
  1436. Works, and to reproduce the Work as incorporated in the Collective Works;
  1437. to create and reproduce Derivative Works;
  1438. to distribute copies or phonorecords of, display publicly, perform publicly, and
  1439. perform publicly by means of a digital audio transmission the Work including as
  1440. incorporated in Collective Works;
  1441. to distribute copies or phonorecords of, display publicly, perform publicly, and
  1442. perform publicly by means of a digital audio transmission Derivative Works.
  1443. For the avoidance of doubt, where the work is a musical composition:
  1444. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive
  1445. right to collect, whether individually or via a performance rights society (e.g.
  1446. ASCAP, BMI, SESAC), royalties for the public performance or public digital
  1447. performance (e.g. webcast) of the Work.
  1448. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right
  1449. to collect, whether individually or via a music rights agency or designated
  1450. agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the
  1451. Work ("cover version") and distribute, subject to the compulsory license created
  1452. by 17 USC Section 115 of the US Copyright Act (or the equivalent in other
  1453. jurisdictions).
  1454. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the
  1455. Work is a sound recording, Licensor waives the exclusive right to collect,
  1456. whether individually or via a performance-rights society (e.g. SoundExchange),
  1457. royalties for the public digital performance (e.g. webcast) of the Work, subject
  1458. to the compulsory license created by 17 USC Section 114 of the US Copyright Act
  1459. (or the equivalent in other jurisdictions).
  1460. The above rights may be exercised in all media and formats whether now known or
  1461. hereafter devised. The above rights include the right to make such modifications
  1462. as are technically necessary to exercise the rights in other media and formats.
  1463. All rights not expressly granted by Licensor are hereby reserved.
  1464. 4. Restrictions.The license granted in Section 3 above is expressly made subject
  1465. to and limited by the following restrictions:
  1466. You may distribute, publicly display, publicly perform, or publicly digitally
  1467. perform the Work only under the terms of this License, and You must include a
  1468. copy of, or the Uniform Resource Identifier for, this License with every copy or
  1469. phonorecord of the Work You distribute, publicly display, publicly perform, or
  1470. publicly digitally perform. You may not offer or impose any terms on the Work
  1471. that alter or restrict the terms of this License or the recipients' exercise of
  1472. the rights granted hereunder. You may not sublicense the Work. You must keep
  1473. intact all notices that refer to this License and to the disclaimer of
  1474. warranties. You may not distribute, publicly display, publicly perform, or
  1475. publicly digitally perform the Work with any technological measures that control
  1476. access or use of the Work in a manner inconsistent with the terms of this
  1477. License Agreement. The above applies to the Work as incorporated in a Collective
  1478. Work, but this does not require the Collective Work apart from the Work itself
  1479. to be made subject to the terms of this License. If You create a Collective
  1480. Work, upon notice from any Licensor You must, to the extent practicable, remove
  1481. from the Collective Work any credit as required by clause 4(b), as requested. If
  1482. You create a Derivative Work, upon notice from any Licensor You must, to the
  1483. extent practicable, remove from the Derivative Work any credit as required by
  1484. clause 4(b), as requested.
  1485. If you distribute, publicly display, publicly perform, or publicly digitally
  1486. perform the Work or any Derivative Works or Collective Works, You must keep
  1487. intact all copyright notices for the Work and provide, reasonable to the medium
  1488. or means You are utilizing: (i) the name of the Original Author (or pseudonym,
  1489. if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor
  1490. designate another party or parties (e.g. a sponsor institute, publishing entity,
  1491. journal) for attribution in Licensor's copyright notice, terms of service or by
  1492. other reasonable means, the name of such party or parties; the title of the Work
  1493. if supplied; to the extent reasonably practicable, the Uniform Resource
  1494. Identifier, if any, that Licensor specifies to be associated with the Work,
  1495. unless such URI does not refer to the copyright notice or licensing information
  1496. for the Work; and in the case of a Derivative Work, a credit identifying the use
  1497. of the Work in the Derivative Work (e.g., "French translation of the Work by
  1498. Original Author," or "Screenplay based on original Work by Original Author").
  1499. Such credit may be implemented in any reasonable manner; provided, however, that
  1500. in the case of a Derivative Work or Collective Work, at a minimum such credit
  1501. will appear where any other comparable authorship credit appears and in a manner
  1502. at least as prominent as such other comparable authorship credit.
  1503. 5. Representations, Warranties and Disclaimer
  1504. UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS
  1505. THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING
  1506. THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT
  1507. LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR
  1508. PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY,
  1509. OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME
  1510. JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH
  1511. EXCLUSION MAY NOT APPLY TO YOU.
  1512. 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN
  1513. NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL,
  1514. INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS
  1515. LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE
  1516. POSSIBILITY OF SUCH DAMAGES.
  1517. 7. Termination
  1518. This License and the rights granted hereunder will terminate automatically upon
  1519. any breach by You of the terms of this License. Individuals or entities who have
  1520. received Derivative Works or Collective Works from You under this License,
  1521. however, will not have their licenses terminated provided such individuals or
  1522. entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7,
  1523. and 8 will survive any termination of this License.
  1524. Subject to the above terms and conditions, the license granted here is perpetual
  1525. (for the duration of the applicable copyright in the Work). Notwithstanding the
  1526. above, Licensor reserves the right to release the Work under different license
  1527. terms or to stop distributing the Work at any time; provided, however that any
  1528. such election will not serve to withdraw this License (or any other license that
  1529. has been, or is required to be, granted under the terms of this License), and
  1530. this License will continue in full force and effect unless terminated as stated
  1531. above.
  1532. 8. Miscellaneous
  1533. Each time You distribute or publicly digitally perform the Work or a Collective
  1534. Work, the Licensor offers to the recipient a license to the Work on the same
  1535. terms and conditions as the license granted to You under this License.
  1536. Each time You distribute or publicly digitally perform a Derivative Work,
  1537. Licensor offers to the recipient a license to the original Work on the same
  1538. terms and conditions as the license granted to You under this License.
  1539. If any provision of this License is invalid or unenforceable under applicable
  1540. law, it shall not affect the validity or enforceability of the remainder of the
  1541. terms of this License, and without further action by the parties to this
  1542. agreement, such provision shall be reformed to the minimum extent necessary to
  1543. make such provision valid and enforceable.
  1544. No term or provision of this License shall be deemed waived and no breach
  1545. consented to unless such waiver or consent shall be in writing and signed by the
  1546. party to be charged with such waiver or consent.
  1547. This License constitutes the entire agreement between the parties with respect
  1548. to the Work licensed here. There are no understandings, agreements or
  1549. representations with respect to the Work not specified here. Licensor shall not
  1550. be bound by any additional provisions that may appear in any communication from
  1551. You. This License may not be modified without the mutual written agreement of
  1552. the Licensor and You.
  1553. --------------------------------------------------------------------------------
  1554. For: hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs
  1555. /server/datanode/checker/AbstractFuture.java and
  1556. hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs
  1557. /server/datanode/checker/TimeoutFuture.java
  1558. Copyright (C) 2007 The Guava Authors
  1559. Licensed under the Apache License, Version 2.0 (the "License"); you may not
  1560. use this file except in compliance with the License. You may obtain a copy of
  1561. the License at
  1562. http://www.apache.org/licenses/LICENSE-2.0
  1563. Unless required by applicable law or agreed to in writing, software
  1564. distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  1565. WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  1566. License for the specific language governing permissions and limitations under
  1567. the License.