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

com.commercetools.sunrise.common.localization.changecountry.DefaultChangeCountryFormData Maven / Gradle / Ivy

The newest version!
package com.commercetools.sunrise.common.localization.changecountry;

import com.neovisionaries.i18n.CountryCode;
import io.sphere.sdk.models.Base;
import play.data.validation.Constraints.Required;

public class DefaultChangeCountryFormData extends Base implements ChangeCountryFormData {

    @Required
    private String country;

    @Override
    public CountryCode countryCode() {
        return CountryCode.valueOf(country);
    }


    // Getters & setters

    public String getCountry() {
        return country;
    }

    public void setCountry(final String country) {
        this.country = country;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy