
com.ibm.ims.connect.impl.CmdclientsImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of IMSConnectAPI Show documentation
Show all versions of IMSConnectAPI Show documentation
API that allows Java applications to interface with IMS Connect
/**
* File: CmdclientsImpl.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.Cmdclients;
import com.ibm.ims.connect.Mbr;
import java.util.ArrayList;
/**
* @author kevin
*
*/
public class CmdclientsImpl implements Cmdclients
{
private String cmdclientsElementText;
private ArrayList mbr;
/**
* @return the cmdclientsElementText
*/
public String getCmdclientsElementText()
{
return this.cmdclientsElementText;
}
/**
* @param cmdclientsElementText the cmdclientsElementText to set
*/
public void setCmdclientsElementText(String cmdclientsElementText)
{
this.cmdclientsElementText = cmdclientsElementText;
}
/**
* @return the mbr
*/
public ArrayList getMbr()
{
return this.mbr;
}
/**
* @param mbr the mbr to set
*/
public void setMbr(ArrayList mbr)
{
this.mbr = mbr;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy