View Javadoc

1   /*
2    * Copyright 2007 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.core.util;
17  
18  import java.util.HashSet;
19  import java.util.Set;
20  
21  import org.apache.ojb.broker.OptimisticLockException;
22  import org.springframework.dao.OptimisticLockingFailureException;
23  
24  /**
25   * This is a description of what this class does - ewestfal don't forget to fill this in.
26   *
27   * @author Kuali Rice Team (rice.collab@kuali.org)
28   *
29   */
30  public class DataAccessUtils {
31  
32      private static final Set<Class<?>> OPTIMISTIC_LOCK_EXCEPTION_CLASSES = new HashSet<Class<?>>();
33  
34      // add some standard optimistic lock exception classes
35      static {
36  	addOptimisticLockExceptionClass(OptimisticLockException.class);
37  	addOptimisticLockExceptionClass(OptimisticLockingFailureException.class);
38      }
39  
40      public static boolean isOptimisticLockFailure(Exception exception) {
41  	if (exception == null) {
42  	    return false;
43  	}
44  	for (final Class<?> exceptionClass : getOptimisticLockExceptionClasses()) {
45              if (exceptionClass.isInstance(exception) || exceptionClass.isInstance(exception.getCause())) {
46          	return true;
47              }
48          }
49          return false;
50      }
51  
52      public static void addOptimisticLockExceptionClass(Class exceptionClass) {
53          OPTIMISTIC_LOCK_EXCEPTION_CLASSES.add(exceptionClass);
54      }
55  
56      public static Set<Class<?>> getOptimisticLockExceptionClasses() {
57  	return OPTIMISTIC_LOCK_EXCEPTION_CLASSES;
58      }
59  
60  }