
com.commercetools.payment.actions.ShopAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
The commercetools java payment project intend is to make payment integration easy
The newest version!
package com.commercetools.payment.actions;
/**
* Describes what kind of action the shop has to do next.
* Created by mgatz on 7/20/16.
*/
public enum ShopAction {
/**
* Nothing payment specific to execute left. Go one processing.
*/
CONTINUE,
/**
* Shop needs to redirect the user after a successful checkout to the provided URL and handle its callbacks.
*/
REDIRECT,
/**
* Shop needs to handle an occurred error.
*/
HANDLE_ERROR,
/**
* Shop needs to request users input depending on the selected payment method.
*/
REQUIRE_INPUT,
/**
* Something not generic is required. It is the task of the shop to decide what and how that has to be done.
* Simple continuation is not possible.
*/
CUSTOM
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy