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

com.github.rmannibucau.jaxrs.mvc.api.ModelView Maven / Gradle / Ivy

The newest version!
package com.github.rmannibucau.jaxrs.mvc.api;

import java.util.HashMap;
import java.util.Map;

public class ModelView {
    private final String name;
    private final Map attributes = new HashMap();

    public ModelView(final String name) {
        this.name = name;
    }

    public ModelView set(final String name, final Object value) {
        attributes.put(name, value);
        return this;
    }

    public Map attributes() {
        return attributes;
    }

    public String template() {
        return name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy