
com.ibm.ims.connect.impl.SafImpl 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: SafImpl.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.Saf;
/**
* @author kevin
*
*/
public class SafImpl implements Saf
{
private String safElementText;
private String rc = null;
private String racfrc = null;
private String racfrsn = null;
/**
* @return the safElementText
*/
public String getSafElementText()
{
return this.safElementText;
}
/**
* @param aSafElementText the safElementText to set
*/
public void setSafElementText(String aSafElementText)
{
this.safElementText = aSafElementText;
}
/**
* @return the rc
*/
public String getRc()
{
return this.rc;
}
/**
* @param aRc the rc to set
*/
public void setRc(String aRc)
{
this.rc = aRc;
}
/**
* @return the racfrc
*/
public String getRacfrc()
{
return this.racfrc;
}
/**
* @param aRacfrc the racfrc to set
*/
public void setRacfrc(String aRacfrc)
{
this.racfrc = aRacfrc;
}
/**
* @return the racfrsn
*/
public String getRacfrsn()
{
return this.racfrsn;
}
/**
* @param aRacfrsn the racfrsn to set
*/
public void setRacfrsn(String aRacfrsn)
{
this.racfrsn = aRacfrsn;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy