1 16 package org.apache.cocoon.components.notification; 17 18 import java.util.Map ; 19 20 import org.apache.avalon.framework.component.Component; 21 22 28 29 public interface NotifyingBuilder extends Component{ 30 31 34 String ROLE = NotifyingBuilder.class.getName(); 35 36 43 Notifying build(Object sender, Object o); 44 45 46 59 Notifying build(Object sender, Object o, String type, String title, 60 String source, String message, String description, Map extra); 61 } 62 63 64 | Popular Tags |