All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fr.cenotelie.commons.utils.api.ReplyResultCollection Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2017 Association Cénotélie (cenotelie.fr)
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General
 * Public License along with this program.
 * If not, see .
 ******************************************************************************/

package fr.cenotelie.commons.utils.api;

import fr.cenotelie.commons.utils.TextUtils;
import fr.cenotelie.commons.utils.json.Json;

import java.util.Collection;
import java.util.Collections;

/**
 * Implements a successful reply to a request with a collection of objects of type T as a response
 *
 * @param  The type of return data
 * @author Laurent Wouters
 */
public class ReplyResultCollection implements Reply {
    /**
     * The payload
     */
    private final Collection data;

    /**
     * Initializes this result
     *
     * @param data The payload
     */
    public ReplyResultCollection(Collection data) {
        this.data = Collections.unmodifiableCollection(data);
    }

    /**
     * Gets the payload
     *
     * @return The payload
     */
    public Collection getData() {
        return data;
    }

    @Override
    public boolean isSuccess() {
        return true;
    }

    @Override
    public String getMessage() {
        return serializedString();
    }

    @Override
    public String serializedString() {
        StringBuilder builder = new StringBuilder("[");
        boolean first = true;
        for (T obj : data) {
            if (!first)
                builder.append(", ");
            first = false;
            builder.append(obj.toString());
        }
        builder.append("]");
        return builder.toString();
    }

    @Override
    public String serializedJSON() {
        StringBuilder builder = new StringBuilder();
        builder.append("{\"type\": \"");
        builder.append(TextUtils.escapeStringJSON(Reply.class.getCanonicalName()));
        builder.append("\", \"kind\": \"");
        builder.append(TextUtils.escapeStringJSON(ReplyResultCollection.class.getSimpleName()));
        builder.append("\", \"isSuccess\": true, \"message\": \"\", \"payload\": [");
        boolean first = true;
        for (T obj : data) {
            if (!first)
                builder.append(", ");
            first = false;
            Json.serialize(builder, obj);
        }
        builder.append("]}");
        return builder.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy