AllowableEventSet.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.ems;

import com.mycim.valueobject.bas.NamedObject;

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

public class AllowableEventSet extends NamedObject {

    // --------------------------------------------------------- Instance Variables
    private Collection availableEvents;

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

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

    // --------------------------------------------------------- Properties
    public Collection getAvailableEvents() {
        if (availableEvents == null) {
            availableEvents = new ArrayList();
        }

        return availableEvents;
    }

    public void setAvailableEvents(Collection availableEvents) {
        this.availableEvents = availableEvents;
    }

}

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