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

src.com.ibm.as400.security.auth.ProfileHandleCredential Maven / Gradle / Ivy

There is a newer version: 20.0.7
Show newest version
package com.ibm.as400.security.auth;

///////////////////////////////////////////////////////////////////////////////
//                                                                             
// JTOpen (IBM Toolbox for Java - OSS version)                                 
//                                                                             
// Filename: ProfileHandleCredential.java
//                                                                             
// The source code contained herein is licensed under the IBM Public License   
// Version 1.0, which has been approved by the Open Source Initiative.         
// Copyright (C) 1997-2003 International Business Machines Corporation and     
// others. All rights reserved.                                                
//                                                                             
///////////////////////////////////////////////////////////////////////////////
import com.ibm.as400.access.AS400SecurityException;
import com.ibm.as400.access.ExtendedIllegalArgumentException;
import com.ibm.as400.access.ExtendedIllegalStateException;
import com.ibm.as400.access.Trace;
import java.beans.PropertyVetoException;
/**
 * Represents an IBM i system profile handle.
 *
 * 

This credential does not support all possible behavior * for IBM i system profile handles. It is provided to fill a secondary * role in support of other credentials when running on the * local IBM i system. A profile handle credential provides the ability * to store the current thread identity and restore that * identity after performing a swap based on another * credential (i.e. ProfileTokenCredential). * * @see AS400Credential * @see ProfileTokenCredential * */ public final class ProfileHandleCredential extends AS400Credential { static final long serialVersionUID = 4L; private byte[] handle_ = null; /** Indicates the length of a profile handle (in bytes) **/ public static final int HANDLE_LENGTH = 12; /** * Constructs a ProfileHandleCredential object. * */ public ProfileHandleCredential() { super(); } /** * Compares the specified Object with the credential * for equality. * * @param o * Object to be compared for equality. * * @return * true if equal; otherwise false. * */ public boolean equals(Object o) { if (o == null) return false; if (this == o) return true; if (!(o instanceof ProfileHandleCredential)) return false; return hashCode() == ((ProfileHandleCredential)o).hashCode(); } /** * Returns the actual bytes for the handle as it exists * on the IBM i system. * * @return * The handle bytes; null if not set. * */ public byte[] getHandle() { return handle_; } /** * Returns a hash code for this credential. * * @return a hash code for this credential. * */ public int hashCode() { int hash = 19913; if (handle_ != null) for (int i=0; i These are the values initialized prior to * accessing host information for or taking action against * the credential and not modified thereafter until * the credential is destroyed. * */ void invalidateProperties() { super.invalidateProperties(); handle_ = null; } /** * Sets the handle based on the current thread identity. * *

The system property must be set prior to * invoking this method. * *

If successful, this method results in a new profile * handle being created on the IBM i system. * *

This property cannot be changed once a request * initiates a connection for the object to the * IBM i system. * * @exception AS400SecurityException * If an IBM i system security or authentication error occurs. * * @exception PropertyVetoException * If the change is vetoed. * * @exception ExtendedIllegalStateException * If the token cannot be initialized due * to the current state. * */ public void setHandle() throws PropertyVetoException, AS400SecurityException { // Validate state validatePropertySet("system", getSystem()); // Instantiate a new impl but do not yet set as the default impl_ ProfileHandleImpl impl = (ProfileHandleImpl)getImplPrimitive(); // Generate and set the handle value setHandle(impl.getCurrentHandle()); // If successful, all defining attributes are now set. // Set the impl for subsequent references. setImpl(impl); // Indicate that a new handle was created. fireCreated(); } /** * Sets the actual bytes for the handle as it exists * on the IBM i system. * *

This method allows a credential to be constructed * based on an existing handle (i.e. previously created using the * QSYGETPH system API). * *

This property cannot be changed once a request * initiates a connection for the object to the * IBM i system. * * @param bytes * The handle bytes. * * @exception PropertyVetoException * If the change is vetoed. * * @exception ExtendedIllegalArgumentException * If the provided value exceeds the maximum * allowed length. * * @exception ExtendedIllegalStateException * If the property cannot be changed due * to the current state. * */ public void setHandle(byte[] bytes) throws PropertyVetoException { // Validate state validatePropertyChange("handle"); // Validate parms if ((bytes != null) && (bytes.length != HANDLE_LENGTH)) { Trace.log(Trace.ERROR, "Handle of length " + bytes.length + " not valid "); throw new ExtendedIllegalArgumentException( "bytes", ExtendedIllegalArgumentException.LENGTH_NOT_VALID); } byte[] old = getHandle(); fireVetoableChange("handle", old, bytes); handle_ = bytes; firePropertyChange("handle", old, bytes); } /** * Indicates if instances of the class are sufficient * by themselves to change the OS thread identity. * *

Typically this behavior is dictated by the type * of credential and need not be changed for * individual instances. * * @return * true * */ boolean typeIsStandalone() { return true; } /** * Validates that all properties required to define the * credential have been set. * *

These are the values initialized prior to * accessing host information for or taking action against * the credential and not modified thereafter until * the credential is destroyed. * * @exception ExtendedIllegalStateException * If a required property is not set. * */ void validateProperties() { super.validateProperties(); validatePropertySet("handle", getHandle()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy