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 com.netscape.certsrv.dbs.keydb.KeyIdAdapter.java

/**
 * The KeyIdAdapter class provides custom marshaling for KeyId.
 *
 * @author Endi S. Dewata
 */
public class KeyIdAdapter extends XmlAdapter<String, KeyId> {

From source file com.netscape.certsrv.dbs.certdb.CertIdAdapter.java

/**
 * The CertIdAdapter class provides custom marshaling for CertId.
 *
 * @author Endi S. Dewata
 */
public class CertIdAdapter extends XmlAdapter<String, CertId> {

From source file com.netscape.certsrv.util.DateAdapter.java

/**
 * The DateAdapter class provides custom marshaling for Date.
 *
 * @author Endi S. Dewata
 */
public class DateAdapter extends XmlAdapter<String, Date> {

From source file ddf.catalog.transformer.xml.adapter.MetacardTypeAdapter.java

public class MetacardTypeAdapter extends XmlAdapter<String, MetacardType> {

    private static final Logger LOGGER = LoggerFactory.getLogger(MetacardTypeAdapter.class);

    private List<MetacardType> types;

From source file py.una.pol.karaku.services.util.NumberAdapter.java

/**
 *
 *
 * @author Arturo Volpe
 * @since 2.3.0
 * @version 1.0 Dec 27, 2013

From source file org.cruk.genologics.api.jaxb.URIAdapter.java

/**
 * Convert to and from URI objects, correctly encoding the query string.
 * Can also remove the "state" parameter from the query part of a URI string
 * before converting to a URI object, or when converting back.
 * Turns out this is probably a bad idea after all, so it has been disabled.
 */

From source file fr.cls.atoll.motu.library.converter.jaxb.LocaleAdapter.java

/**
 * Locale adapter that converts a xs:string into a {@link Locale} and vice-versa.
 * 
 * (C) Copyright 2009-2010, by CLS (Collecte Localisation Satellites)
 * 
 * @version $Revision: 1.1 $ - $Date: 2009-03-18 12:18:22 $

From source file Main.java

class RootAdapter extends XmlAdapter<Root, Root> {

    private DepthListener depthListener;

    public RootAdapter() {
    }

From source file eu.domibus.common.util.xmladapter.ToStringAdapter.java

/**
 * @author muell16
 */
public class ToStringAdapter extends XmlAdapter<Node, List<String>> {

    private static final Log LOG = LogFactory.getLog(ToStringAdapter.class);

From source file Main.java

class MapXmlAdapter extends XmlAdapter<MyMap, Map<String, String>> {
    @Override
    public Map<String, String> unmarshal(MyMap value) throws Exception {
        throw new UnsupportedOperationException();
    }