Package com.agiletec.plugins.jpwtt.aps.system.services.ticket.alerter

Examples of com.agiletec.plugins.jpwtt.aps.system.services.ticket.alerter.AlerterThread


    }
  }
 
  @Override
  public void notifyAddedTicket(Ticket ticket, InterventionType interventionType) {
    AlerterThread thread = new AlerterThread();
    String threadName = WTT_MAIL_ALERTER_THREAD_NAME + ticket.getCode();
    thread.startAddedTicketThread(this, ticket, interventionType, threadName);
  }
View Full Code Here


    thread.startAddedTicketThread(this, ticket, interventionType, threadName);
  }
 
  @Override
  public void notifyTicketOperation(Ticket ticket, TicketOperation operation, InterventionType interventionType) {
    AlerterThread thread = new AlerterThread();
    String threadName = WTT_MAIL_ALERTER_THREAD_NAME + ticket.getCode();
    thread.startTicketOperationThread(this, ticket, operation, interventionType, threadName);
  }
View Full Code Here

TOP

Related Classes of com.agiletec.plugins.jpwtt.aps.system.services.ticket.alerter.AlerterThread

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.