TreeList.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.security;

import java.io.Serializable;

public class TreeList implements Serializable {

    // --------------------------------------------------------- Instance Variables
    private String nodeId;

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

    // --------------------------------------------------------- Properties
    public String getNodeId() {
        return this.nodeId;
    }

    public void setNodeId(String nodeId) {
        this.nodeId = nodeId;
    }

}