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

com.structurizr.api.HmacContent Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package com.structurizr.api;

/**
 * Wraps up and combines a number of separate strings.
 */
final class HmacContent {

    private String[] strings;

    HmacContent(String... strings) {
        this.strings = strings;
    }

    @Override
    public String toString() {
        StringBuilder buf = new StringBuilder();
        for (String string : strings) {
            buf.append(string);
            buf.append("\n");
        }

        return buf.toString();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy