|
Vai subir holandes |
A simple "PojoConverter" implementing the contract between the pelican and the fish.
package org.nanotek.mq.converters;
|
|
|
import org.nanotek.util.Base;
import org.springframework.amqp.core.Message;
import org.springframework.amqp.core.MessageProperties;
|
@SuppressWarnings("serial")
|
public class MediaDetailConverter extends BaseConverter {
|
|
|
@Override
public M toMessage(Base<?> arg, MessageProperties properties) {
return null;
}
@Override
public Base<?> fromMessage(Message arg0) {
return null;
} |
}
|