Websphere MQ Everyplace

examples.midp.exampleapp.textapp
Interface AppController

All Known Implementing Classes:
Client, MidpClient

public interface AppController

The text app controller is a simple interface designed to allow the model (and view) to interact with the controller.

The controller will be required to:
get a name for the queue manager
get input from the user
display status information


Field Summary
static short[] version
           
 
Method Summary
 void displayStatus(java.lang.String msg)
          Displays a status message to the user
 java.lang.String getQMname()
          Returns a name for the queue manager
 

Field Detail

version

public static final short[] version
Method Detail

getQMname

public java.lang.String getQMname()
Returns a name for the queue manager

Returns:
String - the name of the queue manager

displayStatus

public void displayStatus(java.lang.String msg)
Displays a status message to the user

Parameters:
msg - The message to be displayed
Returns:
void

Websphere MQ Everyplace