1 16 19 20 package org.apache.pluto.portalImpl.om.common; 21 22 23 24 public interface Support { 25 26 public static final int POST_LOAD = 2; 27 public static final int PRE_BUILD = 3; 28 public static final int POST_BUILD = 4; 29 public static final int PRE_STORE = 5; 30 public static final int POST_STORE = 6; 31 32 34 public void postLoad(Object parameter) throws Exception ; 35 36 public void preBuild(Object parameter) throws Exception ; 37 public void postBuild(Object parameter) throws Exception ; 38 39 public void preStore(Object parameter) throws Exception ; 40 public void postStore(Object parameter) throws Exception ; 41 } 42 | Popular Tags |