Example usage for javax.xml.bind.annotation.adapters XmlAdapter subclass-usage

List of usage examples for javax.xml.bind.annotation.adapters XmlAdapter subclass-usage

Introduction

In this page you can find the example usage for javax.xml.bind.annotation.adapters XmlAdapter subclass-usage.

Usage

From source file org.phenotips.rest.DateTimeAdapter.java

/**
 * Uses JodaTime's DateTime for representing dates in REST resources instead of JAXB's default,
 * {@code XMLGregorianCalendar}.
 *
 * @version $Id: ef778442e150b84084a63c98b2b9367b91fd4d67 $
 * @since 1.2M5

From source file prototypes.ws.proxy.soap.commons.xml.MapAdapter.java

/**
 *
 *
 * Tried to find as much as possible to not depend on MOXy but map
 * transformation is not an easy task with JAXB The better JAXB solution so far
 * (without XmlVariableNode) was based on DOM :

From source file se.vgregion.core.domain.calendar.adapters.IntervalAdapter.java

/**
 * Adapter used by Jaxb when unmarshalling the calendar web service content. It handles the conversion of the
 * content in the period-tag and a Joda time {@link org.joda.time.Interval}.
 *
 * @author Anders Asplund - Callista Enterprise
 * @see org.joda.time.Interval

From source file sturesy.export.jaxb.adapter.ImageAdapter.java

/**
 * ImageAdapter that encodes an ImageIcon into a Base64 String and decodes a
 * Base64 String into an ImageIcon <br>
 * for infos see {@link ImageService#encodeImage(ImageIcon)}<br>
 * and {@link Base64#decodeBase64(String)}
 *