1 21 22 package org.opensubsystems.core.application; 23 24 import org.opensubsystems.core.error.OSSException; 25 26 46 public interface ThickClientModule 47 { 48 53 String getName( 54 ); 55 56 61 ThickClient getClient( 62 ); 63 64 74 void init( 75 ThickClient client 76 ) throws OSSException; 77 78 91 boolean activate( 92 boolean bReactivate 93 ); 94 95 98 void pasivate( 99 ); 100 101 106 void refresh( 107 ); 108 109 112 void destroy( 113 ); 114 115 127 Object displayMessage( 128 String strTitle, 129 String strMessage, 130 Object additionalInfo 131 ); 132 } 133 | Popular Tags |