Class NativeTradeMessage


  • public class NativeTradeMessage
    extends ObjectMessage
    The message sent to handle native trade sessions.
    • Constructor Detail

      • NativeTradeMessage

        public NativeTradeMessage​(Unit unit,
                                  IndianSettlement is)
        Create a new NativeTradeMessage request with the supplied unit and settlement.
        Parameters:
        unit - The Unit performing the trade.
        is - The IndianSettlement where the trade occurs.
      • NativeTradeMessage

        public NativeTradeMessage​(NativeTrade.NativeTradeAction action,
                                  NativeTrade nt)
        Create a new NativetradeMessage with the supplied unit and native settlement.
        Parameters:
        action - The NativeTradeAction
        nt - The NativeTrade
      • NativeTradeMessage

        public NativeTradeMessage​(Game game,
                                  FreeColXMLReader xr)
                           throws javax.xml.stream.XMLStreamException
        Create a new NativeTradeMessage from a stream.
        Parameters:
        game - The Game this message belongs to.
        xr - The FreeColXMLReader to read from.
        Throws:
        javax.xml.stream.XMLStreamException - if there is a problem reading the stream.
    • Method Detail

      • getNativeTrade

        private NativeTrade getNativeTrade()
      • aiHandler

        public void aiHandler​(FreeColServer freeColServer,
                              AIPlayer aiPlayer)
        AI-side handler for this message. AI handlers always return null. FIXME: One day the FreeColServer should devolve to AIMain.
        Overrides:
        aiHandler in class TrivialMessage
        Parameters:
        freeColServer - The FreeColServer handling the request.
        aiPlayer - The AIPlayer the message was sent to.
      • clientHandler

        public void clientHandler​(FreeColClient freeColClient)
        Client-side handler for this message. Client handlers always return null.
        Overrides:
        clientHandler in class TrivialMessage
        Parameters:
        freeColClient - The FreeColClient to handle this message.
      • serverHandler

        public ChangeSet serverHandler​(FreeColServer freeColServer,
                                       ServerPlayer serverPlayer)
        Server-side handler for this message.
        Overrides:
        serverHandler in class TrivialMessage
        Parameters:
        freeColServer - The FreeColServer handling the request.
        serverPlayer - The ServerPlayer that sent the request.
        Returns:
        A ChangeSet defining the response.