de.science.hack.jetstream.web.controller.ResultCache.java Source code

Java tutorial

Introduction

Here is the source code for de.science.hack.jetstream.web.controller.ResultCache.java

Source

/*
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version. 
 */
package de.science.hack.jetstream.web.controller;

import java.io.Serializable;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;
import toxi.geom.mesh.TriangleMesh;

/**
 * This class saves the result from the previous calculation during the session.
 * 
 * @author Mario
 */
@Component
@Scope("session")
public class ResultCache implements Serializable {

    private TriangleMesh mesh;

    public TriangleMesh getMesh() {
        return mesh;
    }

    public void setMesh(TriangleMesh mesh) {
        this.mesh = mesh;
    }

}