| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| MessageQueueService | 
  | 
  | 1.0;1 | 
| 1 |  /* | |
| 2 |   * Copyright 2005-2008 The Kuali Foundation | |
| 3 |   *  | |
| 4 |   *  | |
| 5 |   * Licensed under the Educational Community License, Version 2.0 (the "License"); | |
| 6 |   * you may not use this file except in compliance with the License. | |
| 7 |   * You may obtain a copy of the License at | |
| 8 |   *  | |
| 9 |   * http://www.opensource.org/licenses/ecl2.php | |
| 10 |   *  | |
| 11 |   * Unless required by applicable law or agreed to in writing, software | |
| 12 |   * distributed under the License is distributed on an "AS IS" BASIS, | |
| 13 |   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 14 |   * See the License for the specific language governing permissions and | |
| 15 |   * limitations under the License. | |
| 16 |   */ | |
| 17 |  package org.kuali.rice.ksb.messaging.service; | |
| 18 | ||
| 19 |  import org.kuali.rice.ksb.messaging.AsynchronousCall; | |
| 20 |  import org.kuali.rice.ksb.messaging.PersistedMessageBO; | |
| 21 |  import org.kuali.rice.ksb.messaging.PersistedMessagePayload; | |
| 22 |  import org.kuali.rice.ksb.messaging.ServiceInfo; | |
| 23 | ||
| 24 |  import javax.xml.namespace.QName; | |
| 25 |  import java.util.List; | |
| 26 |  import java.util.Map; | |
| 27 | ||
| 28 |  /** | |
| 29 |   * Service for interfacing with the queue of asynchronous messages. | |
| 30 |   *  | |
| 31 |   * @see org.kuali.rice.ksb.messaging.PersistedMessageBO | |
| 32 |   * | |
| 33 |   * @author Kuali Rice Team (rice.collab@kuali.org) | |
| 34 |   */ | |
| 35 | public interface MessageQueueService {  | |
| 36 | ||
| 37 |      public List<PersistedMessageBO> findByServiceName(QName serviceName, String methodName); | |
| 38 | ||
| 39 | public void delete(PersistedMessageBO routeQueue);  | |
| 40 | ||
| 41 | public void save(PersistedMessageBO routeQueue);  | |
| 42 | ||
| 43 |      public List<PersistedMessageBO> findAll(); | |
| 44 | ||
| 45 | public List<PersistedMessageBO> findAll(int maxRows);  | |
| 46 | ||
| 47 |      /** | |
| 48 |       * Finds the PersistedMessageBO identified by the passed-in primary key, if one is | |
| 49 |       * available, otherwise returns a null object. | |
| 50 |       *  | |
| 51 |       * @param routeQueueId The primary key routeQueueId of the message desired. | |
| 52 |       * @return A populated PersistedMessageBO instance, if the routeQueueId exists, otherwise | |
| 53 |       *         a null object. | |
| 54 |       */ | |
| 55 |      public PersistedMessageBO findByRouteQueueId(Long routeQueueId); | |
| 56 | ||
| 57 |  //    public List getNextDocuments(); | |
| 58 | ||
| 59 |      /** | |
| 60 |       * Returns a List of RouteQueue documents which are queued for routing.  Will not | |
| 61 |       * return more RouteQueues than the value of maxDocuments. | |
| 62 |       */ | |
| 63 |      public List<PersistedMessageBO> getNextDocuments(Integer maxDocuments); | |
| 64 | ||
| 65 |      public PersistedMessagePayload findByPersistedMessageByRouteQueueId(Long routeQueueId); | |
| 66 | ||
| 67 |      /** | |
| 68 |       * Finds the persisted messages that match the values passed into the  | |
| 69 |       * criteriaValues Map, with an auto-wildcard function, if no wildcard  | |
| 70 |       * is passed in. | |
| 71 |       *  | |
| 72 |       * @param criteriaValues A Map of Key/Value pairs, where the Key is a string holding the field  | |
| 73 |       *                       name, and the Value is a string holding the value to match. | |
| 74 |       * @param maxRows the maximum number of rows to return from the query.  If -1, then all rows will be returned. | |
| 75 |       * @return A populated (or empty) list containing the results of the search.  If no matches are made,  | |
| 76 |       *         an empty list will be returned. | |
| 77 |       */ | |
| 78 | public List<PersistedMessageBO> findByValues(Map<String, String> criteriaValues, int maxRows);  | |
| 79 | ||
| 80 |      /** | |
| 81 |       * Used to determine the maximum number of retries allowed by the system before the  | |
| 82 |       * message goes into Exception. | |
| 83 |       *  | |
| 84 |       * @return The max retry attempts set in the system. | |
| 85 |       */ | |
| 86 |      public Integer getMaxRetryAttempts(); | |
| 87 | ||
| 88 |      public PersistedMessageBO getMessage(ServiceInfo serviceInfo, AsynchronousCall methodCall); | |
| 89 | }  |