RecipeSet.java

/*
 *        @ Copyright 2001 FA Software;
 *        All right reserved. No part of this program may be reproduced or
 *        transmitted in any form or by any means, electronic or
 *        mechanical, including photocopying, recording, or by any
 *        information storage or retrieval system without written
 *        permission from FA Software, except for inclusion of brief
 *        quotations in a review.
 */
package com.mycim.valueobject.prp;

import com.mycim.valueobject.bas.NamedObject;

import java.util.ArrayList;
import java.util.Collection;

public class RecipeSet extends NamedObject {

    // --------------------------------------------------------- Instance Variables
    private Collection recipes;

    // --------------------------------------------------------- Consturctors
    public RecipeSet() {
    }

    public RecipeSet(String instanceId, String namedSpace, String object) {
        super(instanceId, namedSpace, object);
    }

    // --------------------------------------------------------- Properties
    public Collection getRecipes() {
        if (recipes == null) {
            recipes = new ArrayList();
        }

        return recipes;
    }

    public void setRecipes(Collection recipes) {
        this.recipes = recipes;
    }

}

/*
 * Modification Log Log No : 01 Name : Wind Modified Date: 2001/10/13 Description : Add four flags for role
 *  setup
 */