1 23 24 package com.sun.enterprise.security.jauth; 25 26 import javax.xml.soap.*; 27 28 43 public class SOAPAuthParam implements AuthParam { 44 45 private SOAPMessage request; 46 private SOAPMessage response; 47 48 54 public SOAPAuthParam(SOAPMessage request, SOAPMessage response) { 55 this.request = request; 56 this.response = response; 57 } 58 59 64 public SOAPMessage getRequest() { 65 return request; 66 } 67 68 73 public SOAPMessage getResponse() { 74 return response; 75 } 76 77 85 public void setResponse(SOAPMessage response) { 86 if (this.response == null) { 87 this.response = response; 88 } 89 } 90 } 91 | Popular Tags |