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

com.ibm.ims.connect.impl.MsgdataImpl Maven / Gradle / Ivy

The newest version!
/**
 * File: MsgdataImpl.java                                               
 * ==========================================================================
 * Licensed Material - Property of IBM
 *  
 * IBM Confidential
 * 
 * OCO Source Materials
 * 
 * 5655-TDA
 * 
 * (C) Copyright IBM Corp. 2011, 2013 All Rights Reserved. 
 * 
 * The source code for this program is not published or  
 * otherwise divested of its trade secrets, irrespective 
 * of what has been deposited with the U.S. Copyright 
 * Office.
 * 
 * US Government Users Restricted Rights - Use, duplication or
 * disclosure restricted by GSA ADP Schedule Contract with
 * IBM Corp.
 * =========================================================================== 
 */
package com.ibm.ims.connect.impl;

import com.ibm.ims.connect.Mbr;
import com.ibm.ims.connect.Msgdata;

import java.util.ArrayList;

/**
 * @author kevin
 *
 */
public class MsgdataImpl implements Msgdata
{
    private String elementText = null;
    
    private ArrayList mbr = null;
    
    
    /**
     * @return the mbr
     */
    public ArrayList getMbr()
    {
        return this.mbr;
    }
    
    /**
     * @param mbr the mbr to set
     */
    public void setMbr(ArrayList aMbrVector)
    {
        this.mbr = aMbrVector;
    }
    
    
    /**
     * @return the elementText
     */
    public String getElementText()
    {
        return this.elementText;
    }
    
    /**
     * @param anElementText the elementText to set
     */
    public void setElementText(String anElementText)
    {
        this.elementText = anElementText;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy