Package com.art.anette.common.logging

Examples of com.art.anette.common.logging.ClientLogRecord


        if (request == null) {
            throw new IllegalArgumentException("No object given");
        } else if (request instanceof LoginRequest) {
            handleLogin((LoginRequest) request);
        } else if (request instanceof ClientLogRecord) {
            ClientLogRecord logRecord = (ClientLogRecord) request;
            sdbc.handleClientLogRecord(logRecord);
            send(new VoidResponse());
        } else if (request instanceof RegistrationRequest || request instanceof DepartmentRequest) {
            send(new ExceptionResponse(new UnsupportedOperationException("Registration is not possible in this version!")));
        } else if (request instanceof Pong) {
View Full Code Here

TOP

Related Classes of com.art.anette.common.logging.ClientLogRecord

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.