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

io.logz.sawmill.http.ExternalMappingResponse Maven / Gradle / Ivy

The newest version!
package io.logz.sawmill.http;

import java.util.Map;

public class ExternalMappingResponse {
    private final Long lastModified;
    private final Map> mappings;

    public ExternalMappingResponse(Long lastModified, Map> mappings) {
        this.lastModified = lastModified;
        this.mappings = mappings;
    }

    public boolean isModified() {
        return mappings != null;
    }

    public Long getLastModified() {
        return lastModified;
    }

    public Map> getMappings() {
        return mappings;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy