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

net.sf.andromedaioc.model.beans.ContextModel Maven / Gradle / Ivy

The newest version!
package net.sf.andromedaioc.model.beans;

import java.util.*;

/**
 * Context model - intermediate form for context representation
 *
 * @author Alexey Mitrov
 */
public class ContextModel {

    private final Map beans;

    public ContextModel(Map beans) {
        this.beans = beans;
    }

    public Map getBeans() {
        return beans;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy