Package clips.delegate.DEC

Source Code of clips.delegate.DEC.DECClient

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package clips.delegate.DEC;

import cli_fmw.delegate.AuditListener;
import cli_fmw.delegate.DEC.DECClientAbstract;
import cli_fmw.delegate.DelegateLine2;
import cli_fmw.main.ClipsException;
import clips.delegate.client.ClientLocal;
import framework.beans.DEC.HasClient;

/**
*
* @author axe
*/
public class DECClient extends DECClientAbstract<ClientLocal> {
    private final AuditListener al;
   
    public DECClient(DelegateLine2<?, ? extends HasClient> dl2, String readableException, AuditListener al) throws ClipsException {
        super(dl2, readableException);
        this.al = al;
    }
   
    @Override
    protected ClientLocal getClientFromID(int id) throws ClipsException{
        return new ClientLocal(id, al);
    }


}
TOP

Related Classes of clips.delegate.DEC.DECClient

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.