149150151152153154155156
public void engineStart(ContextManager cm) throws TomcatException { try { proto.start(); } catch( Exception ex ) { ex.printStackTrace(); throw new TomcatException( ex ); } }
157158159160161162163164
public void engineShutdown(ContextManager cm) throws TomcatException { try { proto.destroy(); } catch( Exception ex ) { throw new TomcatException( ex ); } }
178179180181182183184185
else IntrospectionUtils.setAttribute( proto, k, o ); } proto.init(); } catch( Exception ex ) { throw new TomcatException( "Error setting protocol properties ", ex ); } }
189190191192193194195196
197198199200201202203204
138139140141142143144145