InWebPublisher.java
01 package examples.webapp.pubsub.stock;
02 
03 import com.bea.httppubsub.PubSubServerException;
04 
05 public class InWebPublisher extends AbstractPublisher {
06   private Client client;
07 
08   InWebPublisher(String pubSubServerNamethrows PubSubServerException {
09     this.client = new ApiBasedClient(pubSubServerName);
10   }
11 
12   protected Client getClient() {
13     return this.client;
14   }
15 
16 }