Package com.blacklocus.qs.worker.es

Source Code of com.blacklocus.qs.worker.es.QSLogElasticSearchModel

/**
* Copyright 2013 BlackLocus
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*    http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.blacklocus.qs.worker.es;

import com.blacklocus.qs.worker.model.QSLogModel;

/**
* See rationale of {@link QSTaskElasticSearchModel}
*
* @author Jason Dunkelberger (dirkraft)
*/
public class QSLogElasticSearchModel {

    public String taskId;
    public String workerId;
    public String handler;
    public Long tick;
    public HandlerWrapper contents;

    public QSLogElasticSearchModel() {
    }

    @SuppressWarnings("unchecked")
    public QSLogElasticSearchModel(QSLogModel normalModel) {
        this(normalModel.taskId, normalModel.workerId, normalModel.handler, normalModel.tick, normalModel.contents);
    }

    public QSLogElasticSearchModel(String taskId, String workerId, String handler, Long tick, Object contents) {
        this.taskId = taskId;
        this.workerId = workerId;
        this.handler = handler;
        this.tick = tick;
        this.contents = new HandlerWrapper(handler, contents);
    }

    public QSLogModel toNormalModel() {
        return new QSLogModel(taskId, workerId, handler, tick, contents.get(handler));
    }
}
TOP

Related Classes of com.blacklocus.qs.worker.es.QSLogElasticSearchModel

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.