Package org.jboss.demo.web.events

Examples of org.jboss.demo.web.events.Content


    this.sessionID = sessionID;
  }

  public String add() {
   
    Content currentEvtPayload = new Content();
    currentEvtPayload.setDatetime(new Date());
    currentEvtPayload.setContent(content);
    currentEvtPayload.setServer(initServerStr());
   
    contentProducer.fire(currentEvtPayload);
       
    return "index";
  }
View Full Code Here

TOP

Related Classes of org.jboss.demo.web.events.Content

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.