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

com.bandwidth.voice.bxml.verbs.adapter.VoiceAdapter Maven / Gradle / Ivy

Go to download

The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs

There is a newer version: 12.0.0
Show newest version

package com.bandwidth.voice.bxml.verbs.adapter;

import com.bandwidth.voice.bxml.verbs.Voice;
import javax.xml.bind.annotation.adapters.XmlAdapter;

public class VoiceAdapter extends XmlAdapter {

    @Override
    public Voice unmarshal(String v) throws Exception {
        return Voice.fromValue(v);
    }

    @Override
    public String marshal(Voice v) throws Exception {
        return v == null ? null : v.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy