Hyper9 Common provides several interfaces and utility classes in order to simplify working with Java beans, specifically with regards to serialization. Classes implementing the Hyper9 Common Bean interface are immediately able to serialize themselves to JSON and XML (RSS/ATOM is coming soon).

A Hyper9 Common Bean

So what does a Hyper9 Common Bean look like? Well, it's pretty simple:

01./*
02. * Copyright (c) 2009, Hyper9 All rights reserved.
03. *
04. * Redistribution and use in source and binary forms, with or without
05. * modification, are permitted provided that the following conditions are met:
06. *
07. * Redistributions of source code must retain the above copyright notice, this
08. * list of conditions and the following disclaimer. Redistributions in binary
09. * form must reproduce the above copyright notice, this list of conditions and
10. * the following disclaimer in the documentation and/or other materials provided
11. * with the distribution. Neither the name of Hyper9 nor the names of its
12. * contributors may be used to endorse or promote products derived from this
13. * software without specific prior written permission. THIS SOFTWARE IS PROVIDED
14. * BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
15. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
17. * EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
18. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24. */
25. 
26.package com.hyper9.common.beans;
27. 
28.import java.io.Serializable;
29. 
30./**
31. * The root interface for all types that can returned to a client via a RESTful
32. * query.
33. *
34. * @author akutz
35. *
36. */
37.public interface Bean extends Serializable
38.{
39.    /**
40.     * Serializes the bean to a JSON string, excluding properties that have a
41.     * null value and transient properties. This method may throw an exception,
42.     * but due to Object.toString()'s erasure the exception will be trapped and
43.     * not re-thrown. Overloads of this method re-throw the exception.
44.     *
45.     * @return A JSON string, excluding properties that have a null value and
46.     *         transient properties.
47.     */
48.    @Override
49.    public String toString();
50. 
51.    /**
52.     * Serialize the bean to a string, excluding properties that have a null
53.     * value and transient properties.
54.     *
55.     * @param format The serialization format to use.
56.     * @return The serialized bean, excluding properties that have a null value
57.     *         and transient properties.
58.     * @throws Exception When an error occurs.
59.     */
60.    public String toString(BeanSerializationFormats format) throws Exception;
61. 
62.    /**
63.     * Serialize the bean to a string.
64.     *
65.     * @param format The serialization format to use.
66.     * @param includeNulls A value indicating whether or not to include
67.     *        properties that have a null value.
68.     * @param includeTransients A value indicating whether or not to include
69.     *        transient properties.
70.     * @return The serialized bean.
71.     * @throws Exception When an error occurs.
72.     */
73.    public String toString(
74.        BeanSerializationFormats format,
75.        boolean includeNulls,
76.        boolean includeTransients) throws Exception;
77. 
78.    /**
79.     * Serialize the bean to a string.
80.     *
81.     * @param format The serialization format to use.
82.     * @param includeNulls A value indicating whether or not to include
83.     *        properties that have a null value.
84.     * @param includeTransients A value indicating whether or not to include
85.     *        transient properties.
86.     * @param callback A callback used to influence the beans in the list (as
87.     *        well as any child beans they may point to) before they are
88.     *        serialized into JSON strings.
89.     * @return The serialized bean.
90.     * @throws Exception When an error occurs.
91.     */
92.    public String toString(
93.        BeanSerializationFormats format,
94.        boolean includeNulls,
95.        boolean includeTransients,
96.        BeanSerializationCallback<Bean> callback) throws Exception;
97.}

Essentially a Hyper9 Common Bean requires implementing classes to provide several methods to assist in serializing itself to a string. It would seem logical then for Hyper9 Common to provide a base implementation of the Hyper9 Common Bean, but no such base implementation exists. Why? Many popular Java frameworks, including Spring for example, require all beans known to them to extend their own bean base class. Since Java classes may only have one super class, it cannot be assumed that beans wanting to make use of a Hyper9 Common bean's methods may not already have their own super class.

That's okay, because Hyper9 Common provides BeanSerializer.

BeanSerializer

The Hyper9 Common BeanSerializer is a utility class which provides implementations of all of the Bean interface's methods. Classes that implement a Hyper9 Common Bean may use the BeanSerializer to provide the necessary method implementations required by the Bean interface.

UniqueBean

A UniqueBean is simply a Hyper9 Common bean that provides an ID property:

01./*
02. * Copyright (c) 2009, Hyper9 All rights reserved.
03. *
04. * Redistribution and use in source and binary forms, with or without
05. * modification, are permitted provided that the following conditions are met:
06. *
07. * Redistributions of source code must retain the above copyright notice, this
08. * list of conditions and the following disclaimer. Redistributions in binary
09. * form must reproduce the above copyright notice, this list of conditions and
10. * the following disclaimer in the documentation and/or other materials provided
11. * with the distribution. Neither the name of Hyper9 nor the names of its
12. * contributors may be used to endorse or promote products derived from this
13. * software without specific prior written permission. THIS SOFTWARE IS PROVIDED
14. * BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
15. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
17. * EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
18. * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24. */
25. 
26.package com.hyper9.common.beans;
27. 
28./**
29. * This bean describes an object that can be uniquely identified by an
30. * identifier.
31. *
32. * @author akutz
33. * @param <T> The type of the bean's identifier.
34. *
35. */
36.public interface UniqueBean<T> extends Bean
37.{
38.    /**
39.     * Get this bean's unique identifier.
40.     *
41.     * @return This bean's unique identifier.
42.     */
43.    public T getID();
44. 
45.    /**
46.     * Set this bean's unique identifier.
47.     *
48.     * @param toSet This bean's unique identifier.
49.     */
50.    public void setID(T toSet);
51.}

Etc

The Hyper9 Common beans package also provides several other classes, such as:

  • BeanUtils - A utility class for working with beans.
  • BeanSerializationFormats - An enumeration that specifies which format to serialize a bean as.