1 package org.sourceforge.jemm.lifecycle;
2
3 /**
4 * This is an internal interface used by JEMMTypes (e.g. JemmList) to handle their
5 * interaction with the underlying store.
6 *
7 * @author Rory Graves
8 *
9 */
10 public interface ShadowTypeObject extends ShadowObject {
11
12 TypeResponse<?> processRequest(TypeRequest<?> request);
13 }