Uses of Class
org.simoes.lpd.exception.QueueException

Packages that use QueueException
org.simoes.lpd.handler   
org.simoes.lpd.util   
 

Uses of QueueException in org.simoes.lpd.handler
 

Constructors in org.simoes.lpd.handler that throw QueueException
QueueMonitor(java.lang.String queueName)
          Create a QueueMonitor.
 

Uses of QueueException in org.simoes.lpd.util
 

Methods in org.simoes.lpd.util that throw QueueException
 void Queues.createQueue(java.lang.String queueName)
          Creates a Print Queue with the name passed in
 PrintQueue Queues.createQueueWithTableModel(java.lang.String queueName, PrintJobTableModel tableModel)
          Creates a Print Queue with the name passed in and creates a TableModel for the GUI.
 void Queues.addPrintJob(java.lang.String queueName, PrintJob printJob)
          Adds a printJob to the queue specified by queueName.
 void Queues.removePrintJob(java.lang.String queueName, java.lang.String user, java.lang.String jobNumber)
          Removes a printJob based on queueName and the jobNumber.
 void Queues.removeAllPrintJobs(java.lang.String queueName)
          Deletes all printJobs for this queue.
 java.util.List Queues.listAllPrintJobs(java.lang.String queueName)
          Returns a List of all print jobs in the Queue.
 int Queues.getQueueSize(java.lang.String queueName)
           
 Lock Queues.getQueueLock(java.lang.String queueName)
           
 QueuedPrintJob Queues.getNextPrintJob(java.lang.String queueName)