Codebase list libxstream-java / debian/1.2.2-1
update metadata Torsten Werner 16 years ago
3 changed file(s) with 56 addition(s) and 18 deletion(s). Raw diff Collapse all Expand all
00 libxstream-java (1.2.2-1) unstable; urgency=low
11
2 * initial version
2 * initial version (Closes: #453149)
33
44 -- Torsten Werner <twerner@debian.org> Sat, 24 Nov 2007 00:01:40 +0100
1414 Package: libxstream-java
1515 Architecture: all
1616 Depends: java-gcj-compat | java1-runtime | java2-runtime
17 Description: FIXME
17 Description: Java library to serialize objects to XML and back again
18 The features of the XStream library are:
19 .
20 - Ease of use. A high level facade is supplied that simplifies common
21 use cases.
22 - No mappings required. Most objects can be serialized without need
23 for specifying mappings.
24 - Performance. Speed and low memory footprint are a crucial part of
25 the design, making it suitable for large object graphs or systems
26 with high message throughput.
27 - Clean XML. No information is duplicated that can be obtained via
28 reflection. This results in XML that is easier to read for humans
29 and more compact than native Java serialization.
30 - Requires no modifications to objects. Serializes internal fields,
31 including private and final. Supports non-public and inner classes.
32 Classes are not required to have default constructor.
33 - Full object graph support. Duplicate references encountered in the
34 object-model will be maintained. Supports circular references.
35 - Integrates with other XML APIs. By implementing an interface,
36 XStream can serialize directly to/from any tree structure (not just
37 XML).
38 - Customizable conversion strategies. Strategies can be registered
39 allowing customization of how particular types are represented as
40 XML.
41 - Error messages. When an exception occurs due to malformed XML,
42 detailed diagnostics are provided to help isolate and fix the
43 problem.
44 - Alternative output format. The modular design allows other output
45 formats. XStream ships currently with JSON support and morphing.
22
33 It was downloaded from http://xstream.codehaus.org
44
5 FIXME
6 Upstream Author: Elliotte Rusty Harold <elharo@metalab.unc.edu>
7
8 Copyrights: (C) 2004, 2005 Elliotte Rusty Harold
5 Copyright (c) 2003-2006, Joe Walnes
6 Copyright (c) 2006-2007, XStream Committers
7 All rights reserved.
98
109 License:
1110
12 This library is free software; you can redistribute it and/or modify
13 it under the terms of version 2.1 of the GNU Lesser General Public
14 License as published by the Free Software Foundation.
11 Redistribution and use in source and binary forms, with or without
12 modification, are permitted provided that the following conditions
13 are met:
1514
16 This library is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU Lesser General Public License for more details.
15 Redistributions of source code must retain the above copyright
16 notice, this list of conditions and the following disclaimer.
17 Redistributions in binary form must reproduce the above copyright
18 notice, this list of conditions and the following disclaimer in the
19 documentation and/or other materials provided with the distribution.
2020
21 You should have received a copy of the GNU General Public License
22 along with this package; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 Neither the name of XStream nor the names of its contributors may be
22 used to endorse or promote products derived from this software
23 without specific prior written permission.
2424
25 On Debian systems, the complete text of the GNU Lesser General
26 Public License can be found in `/usr/share/common-licenses/LGPL-2.1'.
25 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
28 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29 COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
30 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
31 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 POSSIBILITY OF SUCH DAMAGE.