LICENSE.txt 100 KB

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