Renamed ResourceProcessor.{enrich(…) -> process(…)}.

This commit is contained in:
Oliver Gierke
2012-08-27 19:08:11 +02:00
parent 15a2092cf7
commit 91a6e99e3f

View File

@@ -31,5 +31,5 @@ public interface ResourceProcessor<T extends ResourceSupport> {
* @param resource
* @return the processed resource
*/
T enrich(T resource);
T process(T resource);
}