Uses of Class
mymobilesite.communication.MessageException

Packages that use MessageException
mymobilesite.communication   
mymobilesite.controller   
 

Uses of MessageException in mymobilesite.communication
 

Methods in mymobilesite.communication that throw MessageException
 java.lang.String AuthTransport.getIdpName()
          Retrieves the server certificate and extracts the name of the Identity Provider from it.
protected  void LibertyMessage.processCorrelationHeader()
          This method checks that the received message's correlation header is valid and throws MessageException if there is something wrong with the header.
private  void ResourceOffering.processCredentials(Element credentials)
          This method goes through the credentials and stores the appropriate one, so that it can be used to access the service it is supposed to be used for.
protected  void WspRequest.processResponse(Element current)
          This method processes the current element and stores the Services so that they can be returned to the LibertyProtocol
protected  void SaslMessage.processResponse(Element element)
          This method processes the current element and stores the ResourceOffering for the Discovery Service so that it can be returned to the LibertyProtocol later.
protected abstract  void LibertyMessage.processResponse(Element current)
          This method processes the current element according to the rules of the implementing subclass.
protected  void DiscoveryQuery.processResponse(Element current)
          This method processes the current element and stores the resource offerings so that they can be returned to the LibertyProtocol later.
protected  void LibertyMessage.processResponseBody(java.lang.String lookFor)
          This method looks for an Element in the response body and starts the subclass' specific response processing if the Element is found.
 ResourceOffering[] DiscoveryQuery.sendQuery()
          This method constructs the query, sends it and processes the response.
 Service[] WspRequest.sendRequest()
          This method constructs the request, sends it and processes the response.
 ResourceOffering SaslMessage.sendRequest(java.lang.String un, java.lang.String pwd, AuthTransport session)
          This method constructs the SaslRequest, sends it and processes the response.
private  java.lang.String SaslMessage.transform(java.lang.String text)
          In some cases the authentication service may specify that the password provided by the user should be transformed in some way.
 

Constructors in mymobilesite.communication that throw MessageException
AuthTransport()
          Opens the session with the Identity Provider.
ResourceOffering(Element offering, Element credentials)
          The constructor starts the process of parsing the request and retrieving the appropriate token from the credentials.
 

Uses of MessageException in mymobilesite.controller
 

Fields in mymobilesite.controller declared as MessageException
private  MessageException Controller.me
           
 

Methods in mymobilesite.controller with parameters of type MessageException
 void LibertyProtocolListener.encounteredException(int state, MessageException me)
          The implementation of this method should receive the exception and take appropriate action according to the error code and the state of the LibertyProvider.
 void Controller.encounteredException(int currentState, MessageException me)
          Calls the GUI to display an appropriate error message.