BOR.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.List;

public class BOR extends NamedObject {

    // --------------------------------------------------------- Instance Variables
    private List<BORVersion> versions = new ArrayList<BORVersion>();

    // --------------------------------------------------------- Constructors
    public BOR() {
    }

    public BOR(long instanceRrn) {
        super(instanceRrn);
    }

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

    public List<BORVersion> getVersions() {
        return versions;
    }

    public void setVersions(List<BORVersion> versions) {
        this.versions = versions;
    }


}

/*
 * Modification Log Log No : Name : Modified Date: Description :
 */