Interface ObjectWrapper

    • Field Detail

      • BEANS_WRAPPER

        static final ObjectWrapper BEANS_WRAPPER
        Deprecated.
        Use BeansWrapperBuilder.build() instead; this instance isn't read-only and thus can't be trusted.
        An ObjectWrapper that exposes the object methods and JavaBeans properties as hash elements, and has custom handling for Java Map-s, ResourceBundle-s, etc. It doesn't treat Node-s and Jython objects specially, however. As of 2.3.22, using DefaultObjectWrapper with its incompatibleImprovements property set to 2.3.22 (or higher) is recommended instead.
      • DEFAULT_WRAPPER

        static final ObjectWrapper DEFAULT_WRAPPER
        Deprecated.
        Use DefaultObjectWrapperBuilder.build() instead; this instance isn't read-only and thus can't be trusted.
        The legacy default object wrapper implementation, focusing on backward compatibility and out-of-the W3C DOM wrapping box extra features. See DefaultObjectWrapper for more information.
      • SIMPLE_WRAPPER

        static final ObjectWrapper SIMPLE_WRAPPER
        Deprecated.
        No replacement as it was seldom if ever used by anyone; this instance isn't read-only and thus can't be trusted.
        Object wrapper that uses SimpleXXX wrappers only. It behaves like the DEFAULT_WRAPPER, but for objects that it does not know how to wrap as a SimpleXXX it throws an exception. It makes no use of reflection-based exposure of anything, which may makes it a good candidate for security-restricted applications.