com.bandwidth.voice.bxml.verbs.adapter.FileFormatAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bandwidth-sdk Show documentation
Show all versions of bandwidth-sdk Show documentation
The official client SDK for Bandwidth's Voice, Messaging, MFA, and WebRTC APIs
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();
}
}