Uses of Class
GWTApplication.client.Fault

Packages that use Fault
GWTApplication.client   
GWTApplication.server   
 

Uses of Fault in GWTApplication.client
 

Fields in GWTApplication.client declared as Fault
 Fault FaultEntryDetails.fault
          This is the details of a fault body
(package private)  Fault ModifyFault.FaultBeingEdited
          This is the details of the fault which is being edited as they came from the database
 

Methods in GWTApplication.client that return Fault
 Fault FaultService.getFaultDetails(java.lang.Integer defectNumber, java.lang.String locale)
           
 

Methods in GWTApplication.client with parameters of type Fault
 java.lang.Integer FaultService.createFault(Fault newFault)
           
 void FaultServiceAsync.createFault(Fault newFault, com.google.gwt.user.client.rpc.AsyncCallback callback)
           
private  void SearchResultFormatter.putFaultIntoResultsTable(Fault fault, int rowToModify, boolean updateExistingRow, boolean insertAtHeadOfResults)
          Used to insert the details of a fault into results table at the row specified.
 boolean FaultService.updateFault(Fault updatedFault, java.lang.String locale)
           
 void FaultServiceAsync.updateFault(Fault FaultUpdateDetails, java.lang.String locale, com.google.gwt.user.client.rpc.AsyncCallback callback)
           
 

Uses of Fault in GWTApplication.server
 

Methods in GWTApplication.server that return Fault
 Fault FaultServiceImpl.getFaultDetails(java.lang.Integer DefectNumber, java.lang.String locale)
          Get the details of the fault from the database which was specified by the caller
 Fault FaultServiceImpl.packFault(java.sql.ResultSet rs, boolean includeFullViewInformation)
          This will be simply used to pack the details of a fault as read out of the database into the fault class.
private  Fault FaultServiceImpl.packLink(java.sql.ResultSet rs)
          This will be simply used to pack the details of a linked fault into a fault structure.
 

Methods in GWTApplication.server that return types with arguments of type Fault
 java.util.ArrayList<Fault> FaultServiceImpl.getLinkedFaults(int DefectNumber)
          Gets all of the faults which are linked to the fault specified
 java.util.ArrayList<Fault> FaultServiceImpl.getQuickViewFaultData(int SearchType, java.lang.String locale)
          Get all faults which go back to a specific date which has been specified by the caller.
 java.util.ArrayList<Fault> FaultServiceImpl.performAdvancedSearch(java.util.HashMap SearchParameters, java.lang.String StartDate, java.lang.String EndDate, java.lang.String locale)
          Will be used to execute an advanced search across the database using the input data which has been provided.
 java.util.ArrayList<Fault> FaultServiceImpl.performBasicSearch(int DefectNumber, java.lang.String SearchTerms, java.lang.String DefectToSearchFor, java.lang.String StartDate, java.lang.String EndDate, java.lang.String locale)
          Will be used to execute a basic search across the database using the input data which has been provided.
 

Methods in GWTApplication.server with parameters of type Fault
 java.lang.Integer FaultServiceImpl.createFault(Fault newFault)
          This method will be called to create a new fault in the fault database from the data which should have been passed into the method by AJAX client which should be running on the clients web browser.
(package private)  void FaultServiceImpl.raiseSNMPAlert(int defectNumber, Fault fault)
          This is user to raise an SMNP alert when a fault has been raised in the system.
 boolean FaultServiceImpl.updateFault(Fault FaultUpdateDetails, java.lang.String locale)
          Used to update the details of fault which has been modified by the user.