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

com.github.frontear.efkolia.utilities.network.responses.StringResponse Maven / Gradle / Ivy

package com.github.frontear.efkolia.utilities.network.responses;

import com.github.frontear.efkolia.utilities.network.Response;
import com.github.frontear.internal.NotNull;
import lombok.NonNull;

public final class StringResponse implements Response {
    @NotNull
    @Override
    public String parse(@NonNull final String response) {
        return response;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy