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

io.fruitful.ecomerce.enums.MagentoProductStatus Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package io.fruitful.ecomerce.enums;

/*
 * Created by Trong.Nguyen at 9/25/20, 4:13 PM.
 */

public enum MagentoProductStatus {
	Enable(1),
	Disabled(2);

	int value;

	MagentoProductStatus(int value) {
		this.value = value;
	}

	public int value() {
		return value;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy