Exemple #1
0
 @PreInboundActionMeta(LOGIN)
 @PayloadMeta(CustomsDeclarationPayload.class)
 @InboundActionMeta(name = CUSTOMS_DECLARATION)
 public void doCustomsDeclaration(EbayContext ctx) {
   m_customsDeclaration.handleInbound(ctx);
 }
Exemple #2
0
 @OutboundActionMeta(name = CUSTOMS_DECLARATION)
 public void showCustomsDeclaration(EbayContext ctx) throws IOException, ServletException {
   m_customsDeclaration.handleOutbound(ctx);
 }