1 /* 2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved. 3 */ 4 package com.tc.objectserver.managedobject; 5 6 /** 7 * This is just to glue things together in the server. 8 */ 9 public interface ManagedObjectChangeListenerProvider { 10 public ManagedObjectChangeListener getListener(); 11 } 12