Package org.itsnat.impl.core.clientdoc

Examples of org.itsnat.impl.core.clientdoc.ClientDocumentAttachedClientErrorImpl


        return (ClientDocumentAttachedClientErrorImpl)getClientDocumentImpl();
    }

    public int getCommModeDeclared()
    {
        ClientDocumentAttachedClientErrorImpl clientDoc = getClientDocumentAttachedClientError();
        return clientDoc.getCommModeDeclared();
    }
View Full Code Here


        return clientDoc.getCommModeDeclared();
    }

    public long getEventTimeout()
    {
        ClientDocumentAttachedClientErrorImpl clientDoc = getClientDocumentAttachedClientError();
        return clientDoc.getEventTimeout();
    }
View Full Code Here

        return clientDoc.getEventTimeout();
    }

    public long getWaitDocTimeout()
    {
        ClientDocumentAttachedClientErrorImpl clientDoc = getClientDocumentAttachedClientError();
        return clientDoc.getWaitDocTimeout();
    }
View Full Code Here

        return clientDoc.getWaitDocTimeout();
    }

    public int getPhase()
    {
        ClientDocumentAttachedClientErrorImpl clientDoc = getClientDocumentAttachedClientError();
        return clientDoc.getPhase();
    }
View Full Code Here

        return clientDoc.getPhase();
    }

    public void setPhase(int phase)
    {
        ClientDocumentAttachedClientErrorImpl clientDoc = getClientDocumentAttachedClientError();
        clientDoc.setPhase(phase);
    }
View Full Code Here

        clientDoc.setPhase(phase);
    }

    public boolean isAccepted()
    {
        ClientDocumentAttachedClientErrorImpl clientDoc = getClientDocumentAttachedClientError();
        return clientDoc.isAccepted();
    }
View Full Code Here

        return clientDoc.isAccepted();
    }

    public void setAccepted(boolean accepted)
    {
        ClientDocumentAttachedClientErrorImpl clientDoc = getClientDocumentAttachedClientError();
        clientDoc.setAccepted(accepted);
    }
View Full Code Here

        clientDoc.setAccepted(accepted);
    }

    public boolean isReadOnly()
    {
        ClientDocumentAttachedClientErrorImpl clientDoc = getClientDocumentAttachedClientError();
        return clientDoc.isReadOnly();
    }
View Full Code Here

    public void processLostSessionOrClientUnloading()
    {
        // No hacer nada
        ItsNatSessionImpl session = getItsNatSession();
        ClientDocumentAttachedClientErrorImpl clientDoc = new ClientDocumentAttachedClientErrorImpl(session);
        // Da igual la fase
        bindClientToRequest(clientDoc,false)// El documento es nulo, no se vincula por tanto

        this.response = new ResponseEventDoNothingImpl(this);
        response.process();
View Full Code Here

    {
        // Puede darse por ejemplo en el caso de control remoto con timer con un lapso grande
        // y mientras tanto se ha reiniciado el servidor

        ItsNatSessionImpl session = getItsNatSession();
        ClientDocumentAttachedClientErrorImpl clientDoc = new ClientDocumentAttachedClientErrorImpl(session);
        clientDoc.setPhase(ItsNatAttachedClientEvent.REFRESH);

        bindClientToRequest(clientDoc,false)// El documento es nulo, no se vincula por tanto

        this.response = new ResponseAttachedClientErrorEventLostSessionImpl(sessionId,sessionToken,this);
        response.process();
View Full Code Here

TOP

Related Classes of org.itsnat.impl.core.clientdoc.ClientDocumentAttachedClientErrorImpl

Copyright © 2018 www.massapicom. 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.