Examples of noteError()


Examples of org.wijiscommons.ssaf.ServiceResponseInfo.noteError()

      }
    }
    else
    { // throw FatalFault if clientside_id or mailbox_nominal_uri
      // attributes are not specified in incoming request file.
      sb.noteError("clientside_id or mailbox_nominal_uri attributes in request"
              + " file are not defined properly");
      Drop_OffUtil.throwFault(recordURI, clientsideID, null, sb,
          SSAFErrorTypes.REQUEST_INVALID, mailBoxURI, docElement);
    }
    return dropOffStatusResponse;
View Full Code Here

Examples of org.wijiscommons.ssaf.ServiceResponseInfo.noteError()

      }
      else
      {
        // throw FatalFault if you are not able to find a  error file
        // with specified clientside_id in a file system.
        sb.noteError("Trying to delete a error file which does'nt exists in a "
                + "file system with specified clientside_id : "
                + clientsideID);
        Drop_OffUtil.throwFault(recordURI, clientsideID, null, sb,
            SSAFErrorTypes.REQUEST_INVALID, mailBoxURI, docElement);
      }
View Full Code Here

Examples of org.wijiscommons.ssaf.ServiceResponseInfo.noteError()

    }
    else
    {
      // throw FatalFault if message_Id or mailbox_nominal_uri are not
      // specified in incoming request file.
      sb.noteError("clientside_id or mailbox_nominal_uri attributes in request "
              + "file are not specified properly");
      Drop_OffUtil.throwFault(recordURI, clientsideID, null, sb,
          SSAFErrorTypes.REQUEST_INVALID, mailBoxURI, docElement);
    }
    return empty;
View Full Code Here

Examples of org.wijiscommons.ssaf.ServiceResponseInfo.noteError()

    mailBoxURI = attributesMap.get("dropoffMailBoxURI");

    // Throw Fault if clientside_Id is not specified
    if (StringUtils.isBlank(clientsideID))
    {
      sb.noteError("clientside_Id attribute is not specified in incoming request document");
      Drop_OffUtil  .throwFaultrecordURI,
                  null,
                  null,
                  sb, SSAFErrorTypes.REQUEST_INVALID, mailBoxURI,
                  docElement);
View Full Code Here

Examples of org.wijiscommons.ssaf.ServiceResponseInfo.noteError()

                  + userNominalURI);
        }
        else
        {
          // throw FatalFault if ssaf:user_nominal_uri is not defined.
          sb.noteError("ssaf:user_nominal_uri attribute in ssaf:account" +
              " is not present in incoming request document");
          log.error(sb.getMergedMessages());
          Drop_OffUtil  .throwFault(
                  recordURI,
                  clientsideID,
View Full Code Here

Examples of org.wijiscommons.ssaf.ServiceResponseInfo.noteError()

                    .setAny(dropOffStatusReponseElement);
              }
              else
              { // file exists but could not be deleted
               
                sb.noteError("Confirmation file exists in a file system but not " +
                    "able to delete a confirmation file with message_id : "
                        + messageID);
                log.error(sb.getMergedMessages());
               
                Drop_OffUtil.throwFault(recordURI,
View Full Code Here

Examples of org.wijiscommons.ssaf.ServiceResponseInfo.noteError()

              }
            }
            else
            {
              // File is not present in file system
              sb.noteError("File does not exists in a file system with specified message_id : "
                      + messageID);
              log.error(sb.getMergedMessages());

              Drop_OffUtil.throwFault(recordURI,
                          clientsideID,
View Full Code Here

Examples of org.wijiscommons.ssaf.ServiceResponseInfo.noteError()

                    " specified clientside_id :"  + clientsideID);
                dropOffSyncResponse.setAny(dropOffStatusReponseElement);
              }
              else
              { // Confirmation file exists but could not be deleted
                sb.noteError("Confirmation file exists in a file system but not" +
                    " able to delete a error file with specified clientside_id : "
                        + clientsideID);
                log.error(sb.getMergedMessages());

                Drop_OffUtil  .throwFaultrecordURI,
View Full Code Here

Examples of org.wijiscommons.ssaf.ServiceResponseInfo.noteError()

          }
          catch (ParserConfigurationException e)
          {
            // throw FatalFault if there is any problem while
            // adding saml assertion to incoming request
            sb.noteError("Caught ParserConfigurationException while adding a Saml " +
                "Assertion element to incoming document");
            log.error(sb.getMergedMessages());
            Drop_OffUtil  .throwFault(
                    recordURI,
                    clientsideID,
View Full Code Here

Examples of org.wijiscommons.ssaf.ServiceResponseInfo.noteError()

              }
            }
            else
            {
              // Error file is not present in file system
              sb.noteError("Error file does not exists in file system with specified" +
                  " clientside_id : "+ clientsideID);
              log.error(sb.getMergedMessages());

              Drop_OffUtil.throwFault(recordURI,
                          clientsideID,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.