Interface StoreAddCountryAction

All Superinterfaces:
ResourceUpdateAction<StoreUpdateAction>, StoreUpdateAction
All Known Implementing Classes:
StoreAddCountryActionImpl

public interface StoreAddCountryAction extends StoreUpdateAction

This update action produces the StoreCountriesChanged Message. It has no effect if the given country is already present in a Store.


Example to create an instance using the builder pattern

     StoreAddCountryAction storeAddCountryAction = StoreAddCountryAction.builder()
             .country(countryBuilder -> countryBuilder)
             .build()