Package com.eviware.soapui.impl.wsdl.panels.mockoperation

Source Code of com.eviware.soapui.impl.wsdl.panels.mockoperation.WsdlMockResponseMessageExchange

/*
*  soapUI, copyright (C) 2004-2011 eviware.com
*
*  soapUI is free software; you can redistribute it and/or modify it under the
*  terms of version 2.1 of the GNU Lesser General Public License as published by
*  the Free Software Foundation.
*
*  soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
*  even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*  See the GNU Lesser General Public License for more details at gnu.org.
*/

package com.eviware.soapui.impl.wsdl.panels.mockoperation;

import java.util.Vector;

import com.eviware.soapui.impl.wsdl.WsdlOperation;
import com.eviware.soapui.impl.wsdl.mock.WsdlMockRequest;
import com.eviware.soapui.impl.wsdl.mock.WsdlMockResponse;
import com.eviware.soapui.impl.wsdl.mock.WsdlMockResult;
import com.eviware.soapui.impl.wsdl.submit.AbstractWsdlMessageExchange;
import com.eviware.soapui.model.iface.Attachment;
import com.eviware.soapui.support.types.StringToStringsMap;

/**
* WsdlMessageExchange for a WsdlMockResponse, required for validations
*
* @author ole.matzura
*/

public class WsdlMockResponseMessageExchange extends AbstractWsdlMessageExchange<WsdlMockResponse>
{
  public WsdlMockResponseMessageExchange( WsdlMockResponse mockResponse )
  {
    super( mockResponse );
  }

  public Attachment[] getRequestAttachments()
  {
    return null;
  }

  public String getEndpoint()
  {
    return getModelItem().getMockResult().getMockRequest().getHttpRequest().getRequestURI();
  }

  public String getRequestContent()
  {
    WsdlMockResult mockResult = getModelItem().getMockResult();
    WsdlMockRequest mockRequest = mockResult.getMockRequest();
    return mockRequest.getRequestContent();
  }

  public StringToStringsMap getRequestHeaders()
  {
    return null;
  }

  public Attachment[] getResponseAttachments()
  {
    return getModelItem().getAttachments();
  }

  public String getResponseContent()
  {
    return getModelItem().getResponseContent();
  }

  public StringToStringsMap getResponseHeaders()
  {
    return getModelItem().getResponseHeaders();
  }

  @Override
  public WsdlOperation getOperation()
  {
    return getModelItem().getMockOperation().getOperation();
  }

  public long getTimeTaken()
  {
    return 0;
  }

  public long getTimestamp()
  {
    return 0;
  }

  public boolean isDiscarded()
  {
    return false;
  }

  public Vector<?> getRequestWssResult()
  {
    return getModelItem().getMockResult().getRequestWssResult();
  }

  public Vector<?> getResponseWssResult()
  {
    return null;
  }

  public int getResponseStatusCode()
  {
    return getModelItem().getMockResult().getResponseStatus();
  }

  public String getResponseContentType()
  {
    return getModelItem().getMockResult().getResponseContentType();
  }

  @Override
  public boolean hasRawData()
  {
    return true;
  }

  @Override
  public byte[] getRawResponseData()
  {
    return getModelItem().getMockResult().getRawResponseData();
  }

  public byte[] getRawRequestData()
  {
    return getModelItem().getMockResult().getMockRequest().getRawRequestData();
  }

}
TOP

Related Classes of com.eviware.soapui.impl.wsdl.panels.mockoperation.WsdlMockResponseMessageExchange

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.