All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uk.org.retep.xmpp.jaxb.XMPPNamespacePrefixMapper Maven / Gradle / Ivy

The newest version!
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package uk.org.retep.xmpp.jaxb;

import com.sun.xml.bind.marshaller.NamespacePrefixMapper;

/**
 *
 * @author peter
 */
public class XMPPNamespacePrefixMapper
        extends NamespacePrefixMapper
{

    @Override
    public String getPreferredPrefix( final String namespaceUri,
                                      final String suggestion,
                                      final boolean requirePrefix )
    {
        if( requirePrefix )
        {
            return suggestion;
        }
        else
        {
            return "";
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy