/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package com.eas.client.threetier.requests; import com.eas.client.threetier.Request; import com.eas.client.threetier.Requests; /** * * @author pk */ public class LogoutRequest extends Request { public LogoutRequest() { super(Requests.rqLogout); } @Override public void accept(PlatypusRequestVisitor aVisitor) throws Exception { aVisitor.visit(this); } public static class Response extends com.eas.client.threetier.Response { public Response() { super(); } @Override public void accept(PlatypusResponseVisitor aVisitor) throws Exception { aVisitor.visit(this); } } }