File: control

package info (click to toggle)
libjboss-marshalling-java 1.1.3.GA-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 1,224 kB
  • ctags: 2,417
  • sloc: java: 14,405; xml: 339; makefile: 17; sh: 11
file content (48 lines) | stat: -rw-r--r-- 2,563 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Source: libjboss-marshalling-java
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Torsten Werner <twerner@debian.org>
Build-Depends-Indep: maven-repo-helper (>= 0.7), maven-ant-helper (>> 4)
Build-Depends: ant, debhelper (>= 5), cdbs, default-jdk
Standards-Version: 3.8.3
Vcs-Svn: svn://svn.debian.org/svn/pkg-java/trunk/libjboss-marshalling-java
Vcs-Browser: http://svn.debian.org/wsvn/pkg-java/trunk/libjboss-marshalling-java/
Homepage: http://jboss.org/jbossmarshalling/

Package: libjboss-marshalling-java
Architecture: all
Depends: ${misc:Depends}, default-jre-headless | java5-runtime-headless
Description: alternative serialization API
 JBoss Marshalling is an alternative serialization API that fixes many of the
 problems found in the JDK serialization API while remaining fully compatible
 with java.io.Serializable and its relatives, and adds several new tunable
 parameters and additional features, all of which are pluggable via factory
 configuration (externalizers, class/instance lookup tables, class resolution,
 and object replacement, to name a few).
 .
 This framework was inspired by the need for certain features unavailable with
 the standard Object*Stream classes:
 .
  * Pluggable class resolvers, making it easy to customize classloader
    policy, by implementing a small interface (rather than having to subclass
    the Object*Stream classes)
  * Pluggable object replacement (also without subclassing)
  * Pluggable predefined class tables, which can dramatically decrease
    stream size and serialization time for stream types which frequently use a
    common set of classes
  * Pluggable predefined instance tables, which make it easy to handle
    remote references
  * Pluggable externalizers which may be used to serialize classes
    which are not Serializable, or for which an alternate strategy is needed
  * Customizable stream headers
  * Each marshaller instance is highly configurable and tunable to
    maximize performance based on expected usage patterns A generalized API
    which can support many different protocol implementations, including
    protocols which do not necessarily provide all the above features
  * Inexpensive instance creation, beneficial to applications where
    many short-lived streams are used
  * Support for separate class and instance caches, if the protocol
    permits; useful for sending multiple messages or requests with a single
    stream, with separate object graphs but retaining the class cache