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

com.bigcommerce.catalog.models.StatusAdapter Maven / Gradle / Ivy

The newest version!
package com.bigcommerce.catalog.models;

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

public class StatusAdapter extends XmlAdapter {

	@Override
	public Status unmarshal(String status) throws Exception {
		return Status.toEnum(status);
	}

	@Override
	public String marshal(Status status) throws Exception {
		return status.toString();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy