Removing TODOs.

This commit is contained in:
Mark Fisher
2008-11-25 21:32:20 +00:00
parent f572b370f3
commit 9ab1e73996
4 changed files with 15 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2007 the original author or authors.
* Copyright 2002-2008 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.
@@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.integration.jms;
import javax.jms.JMSException;
@@ -22,15 +23,16 @@ import javax.jms.Session;
import org.springframework.jms.support.converter.MessageConversionException;
import org.springframework.jms.support.converter.MessageConverter;
/**
* @author Mark Fisher
*/
public class StubMessageConverter implements MessageConverter {
public Object fromMessage(Message message) throws JMSException, MessageConversionException {
// TODO Auto-generated method stub
return null;
}
public Message toMessage(Object object, Session session) throws JMSException, MessageConversionException {
// TODO Auto-generated method stub
return null;
}

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2007 the original author or authors.
* Copyright 2002-2008 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.
@@ -13,15 +13,18 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.integration.jms;
import javax.jms.JMSException;
import javax.jms.Queue;
public class StubQueue implements Queue{
/**
* @author Mark Fisher
*/
public class StubQueue implements Queue {
public String getQueueName() throws JMSException {
// TODO Auto-generated method stub
return null;
}