1 16 package org.apache.cocoon.portal.pluto.om.common; 17 18 25 public interface Support { 26 27 int POST_LOAD = 2; 28 int PRE_BUILD = 3; 29 int POST_BUILD = 4; 30 int PRE_STORE = 5; 31 int POST_STORE = 6; 32 33 void postLoad(Object parameter) throws Exception ; 34 35 void preBuild(Object parameter) throws Exception ; 36 void postBuild(Object parameter) throws Exception ; 37 38 void preStore(Object parameter) throws Exception ; 39 void postStore(Object parameter) throws Exception ; 40 } 41 | Popular Tags |