1 23 24 31 32 package com.sun.enterprise.web; 33 34 import java.util.ArrayList ; 35 36 40 public class PEWebContainerStartStopOperation implements WebContainerStartStopOperation { 41 42 45 protected EmbeddedWebContainer _embedded = null; 46 47 48 public PEWebContainerStartStopOperation() { 49 } 50 51 52 public PEWebContainerStartStopOperation(EmbeddedWebContainer embedded) { 53 _embedded = embedded; 54 } 55 56 public void doPostStop(ArrayList list) { 57 } 59 60 public ArrayList doPreStop() { 61 return null; 63 } 64 65 public void init(EmbeddedWebContainer embedded) { 66 _embedded = embedded; 67 } 68 69 } 70 71 72 | Popular Tags |