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

com.bandwidth.voice.bxml.verbs.adapter.FileFormatAdapter 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.FileFormat;

import javax.xml.bind.annotation.adapters.XmlAdapter;

public class FileFormatAdapter extends XmlAdapter {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy