Merge branch 'release/5.45.0'
[cdmlib.git] / cdmlib-persistence / src / main / java / eu / etaxonomy / cdm / persistence / dao / IMethodCache.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.cdm.persistence.dao;
10
11 import java.lang.reflect.Method;
12
13 /**
14 * @author n.hoffmann
15 * @since Mar 11, 2010
16 */
17 public interface IMethodCache {
18
19 /**
20 * Returns the method that is suitable for the given class and parameter type or
21 * null if no such method exists.
22 */
23 public Method getMethod(Class clazz, String methodName, Class parameterType);
24 }