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

com.ibm.ims.connect.Cmdsecerr Maven / Gradle / Ivy

There is a newer version: 3.2
Show newest version
/**
 * File: Cmdsecerr.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;

/**
 * A Cmdsecerr object represents the Cmdsecerr element of a type-2 command
 * response message. This element contains details about a security error that prevented the
 * type-2 command from being executed, if such an error occurred. The element is only included in
 * the response message for type-2 commands that failed due to a security error.
 * 

This element only contains information about security errors caused by either the OM security exit routine or * RACF (or an equivalent SAF) rejecting the authentication details that were included with the command. * * @see CSL OM Security exit routine * *@since Enterprise Suite 2.1 */ public interface Cmdsecerr { /** * Gets any plain text encapsulated by the element. * @return the elementText */ public String getElementText(); /** * Gets the Exit object from the element. * @return the exit */ public Exit getExit(); /** * Gets the Saf object from the element. * @return the saf */ public Saf getSaf(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy