1 16 package org.apache.cocoon.portal.coplets.basket.events; 17 18 import org.apache.cocoon.portal.coplets.basket.ContentStore; 19 import org.apache.cocoon.portal.event.Event; 20 21 26 public abstract class ContentStoreEvent implements Event { 27 28 protected final ContentStore store; 29 30 33 public ContentStoreEvent() { 34 this.store = null; 35 } 36 37 40 public ContentStoreEvent(ContentStore store) { 41 this.store = store; 42 } 43 44 public ContentStore getContentStore() { 45 return this.store; 46 } 47 } 48 | Popular Tags |