Removed PoxContext, forgot to remove it earlier

This commit is contained in:
Arjen Poutsma
2007-01-06 21:44:20 +00:00
parent 525243c467
commit 4e2c7db738
2 changed files with 0 additions and 50 deletions

View File

@@ -1,45 +0,0 @@
/*
* Copyright 2006 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.ws.pox.context;
import org.springframework.ws.context.MessageContext;
import org.springframework.ws.pox.PoxMessage;
/**
* Plain Old Xml-specific extension of the <code>MessageContext</code> interface. Contains methods to obtain
* <code>PoxMessage</code>s instead of <code>WebServiceMessage</code>s.
*
* @author Arjen Poutsma
*/
public interface PoxMessageContext extends MessageContext {
/**
* Returns the request POX message.
*
* @return the request message
*/
PoxMessage getPoxRequest();
/**
* Returns the response message, if created. Returns <code>null</code> if no response message was created so far.
*
* @return the response message, or <code>null</code> if none was created
* @see #hasResponse()
*/
PoxMessage getPoxResponse();
}

View File

@@ -1,5 +0,0 @@
<html>
<body>
Contains the <code>PoxMessageContext</code> interface.
</body>
</html>