| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.kew.api.mail; |
| 17 | |
|
| 18 | |
import javax.jws.WebMethod; |
| 19 | |
import javax.jws.WebParam; |
| 20 | |
import javax.jws.WebService; |
| 21 | |
import javax.jws.soap.SOAPBinding; |
| 22 | |
|
| 23 | |
import org.kuali.rice.core.api.exception.RiceIllegalArgumentException; |
| 24 | |
import org.kuali.rice.kew.api.KewApiConstants; |
| 25 | |
import org.kuali.rice.kew.api.action.ActionItem; |
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
@WebService(name = "immediateEmailReminderQueue", targetNamespace = KewApiConstants.Namespaces.KEW_NAMESPACE_2_0) |
| 34 | |
@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED) |
| 35 | |
public interface ImmediateEmailReminderQueue { |
| 36 | |
|
| 37 | |
@WebMethod(operationName = "sendReminder") |
| 38 | |
void sendReminder(@WebParam(name="actionItem") ActionItem actionItem, @WebParam(name="skipOnApprovals") Boolean skipOnApprovals) throws RiceIllegalArgumentException; |
| 39 | |
|
| 40 | |
} |