com.bandwidth.voice.bxml.verbs.adapter.MethodAdapter 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.Method;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class MethodAdapter extends XmlAdapter {
@Override
public Method unmarshal(String v) throws Exception {
return Method.fromValue(v);
}
@Override
public String marshal(Method v) throws Exception {
return v == null ? null : v.toString();
}
}