com.liferay.portlet.shopping.service
Interface ShoppingOrderService
- All Known Implementing Classes:
- ShoppingOrderServiceBaseImpl, ShoppingOrderServiceImpl, ShoppingOrderServiceWrapper
@Transactional(isolation=PORTAL,
rollbackFor={PortalException.class,SystemException.class})
public interface ShoppingOrderService
The interface for the shopping order remote service.
Never modify or reference this interface directly. Always use ShoppingOrderServiceUtil
to access the shopping order remote service. Add custom service methods to ShoppingOrderServiceImpl
and rerun ServiceBuilder to automatically copy the method declarations to this interface.
This is a remote service. Methods of this service are expected to have security checks based on the propagated JAAS credentials because this service can be accessed remotely.
- See Also:
ShoppingOrderServiceUtil
,
ShoppingOrderServiceBaseImpl
,
ShoppingOrderServiceImpl
- ServiceBuilder generated this class. Modifications in this class will be overwritten the next time is generated.
Method Summary |
void |
completeOrder(long groupId,
String number,
String ppTxnId,
String ppPaymentStatus,
double ppPaymentGross,
String ppReceiverEmail,
String ppPayerEmail)
|
void |
deleteOrder(long groupId,
long orderId)
|
ShoppingOrder |
getOrder(long groupId,
long orderId)
|
void |
sendEmail(long groupId,
long orderId,
String emailType)
|
ShoppingOrder |
updateOrder(long groupId,
long orderId,
String ppTxnId,
String ppPaymentStatus,
double ppPaymentGross,
String ppReceiverEmail,
String ppPayerEmail)
|
ShoppingOrder |
updateOrder(long groupId,
long orderId,
String billingFirstName,
String billingLastName,
String billingEmailAddress,
String billingCompany,
String billingStreet,
String billingCity,
String billingState,
String billingZip,
String billingCountry,
String billingPhone,
boolean shipToBilling,
String shippingFirstName,
String shippingLastName,
String shippingEmailAddress,
String shippingCompany,
String shippingStreet,
String shippingCity,
String shippingState,
String shippingZip,
String shippingCountry,
String shippingPhone,
String ccName,
String ccType,
String ccNumber,
int ccExpMonth,
int ccExpYear,
String ccVerNumber,
String comments)
|
completeOrder
void completeOrder(long groupId,
String number,
String ppTxnId,
String ppPaymentStatus,
double ppPaymentGross,
String ppReceiverEmail,
String ppPayerEmail)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
deleteOrder
void deleteOrder(long groupId,
long orderId)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
getOrder
@Transactional(propagation=SUPPORTS,
readOnly=true)
ShoppingOrder getOrder(long groupId,
long orderId)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
sendEmail
void sendEmail(long groupId,
long orderId,
String emailType)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
updateOrder
ShoppingOrder updateOrder(long groupId,
long orderId,
String ppTxnId,
String ppPaymentStatus,
double ppPaymentGross,
String ppReceiverEmail,
String ppPayerEmail)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException
updateOrder
ShoppingOrder updateOrder(long groupId,
long orderId,
String billingFirstName,
String billingLastName,
String billingEmailAddress,
String billingCompany,
String billingStreet,
String billingCity,
String billingState,
String billingZip,
String billingCountry,
String billingPhone,
boolean shipToBilling,
String shippingFirstName,
String shippingLastName,
String shippingEmailAddress,
String shippingCompany,
String shippingStreet,
String shippingCity,
String shippingState,
String shippingZip,
String shippingCountry,
String shippingPhone,
String ccName,
String ccType,
String ccNumber,
int ccExpMonth,
int ccExpYear,
String ccVerNumber,
String comments)
throws PortalException,
SystemException
- Throws:
PortalException
SystemException