idx
int64
0
165k
question
stringlengths
73
5.81k
target
stringlengths
5
918
162,100
Object insertByLeftShift ( int ix , Object new1 ) { Object old1 = leftMostKey ( ) ; leftShift ( ix ) ; _nodeKey [ ix ] = new1 ; if ( midPoint ( ) > rightMostIndex ( ) ) _nodeKey [ midPoint ( ) ] = rightMostKey ( ) ; return old1 ; }
Insert a new key by overlaying the left - most key shifting other keys left and inserting the new key at the appropriate insert point .
162,101
private void leftShift ( int ix ) { for ( int j = 0 ; j < ix ; j ++ ) _nodeKey [ j ] = _nodeKey [ j + 1 ] ; }
Open up a slot in a node by shifting the keys left .
162,102
Object insertByRightShift ( int ix , Object new1 ) { Object old1 = null ; if ( isFull ( ) ) { old1 = rightMostKey ( ) ; rightMove ( ix + 1 ) ; _nodeKey [ ix + 1 ] = new1 ; } else { rightShift ( ix + 1 ) ; _nodeKey [ ix + 1 ] = new1 ; _population ++ ; if ( midPoint ( ) > rightMostIndex ( ) ) _nodeKey [ midPoint ( ) ] = ...
Insert a new key by shifting keys right .
162,103
Object addRightMostKey ( Object new1 ) { Object old1 = null ; if ( isFull ( ) ) { old1 = rightMostKey ( ) ; _nodeKey [ rightMostIndex ( ) ] = new1 ; } else { _population ++ ; _nodeKey [ rightMostIndex ( ) ] = new1 ; if ( midPoint ( ) > rightMostIndex ( ) ) _nodeKey [ midPoint ( ) ] = rightMostKey ( ) ; } return old1 ; ...
Add the right - most key to the node .
162,104
void fillFromRight ( ) { int gapWid = width ( ) - population ( ) ; int gidx = population ( ) ; GBSNode p = rightChild ( ) ; for ( int j = 0 ; j < gapWid ; j ++ ) _nodeKey [ j + gidx ] = p . _nodeKey [ j ] ; int delta = gapWid ; if ( p . _population < delta ) delta = p . _population ; _population += delta ; p . _populat...
Fill a node with new keys from the right side .
162,105
GBSNode rightMostChild ( ) { GBSNode q = this ; GBSNode p = rightChild ( ) ; while ( p != null ) { q = p ; p = p . rightChild ( ) ; } return q ; }
Find the right - most child of a node by following the paths of all of the right - most children all the way to the bottom of the tree .
162,106
private void rightShift ( int ix ) { for ( int j = rightMostIndex ( ) ; j >= ix ; j -- ) _nodeKey [ j + 1 ] = _nodeKey [ j ] ; }
Open up a slot for a new key by shifting keys right to make room .
162,107
private void rightMove ( int ix ) { for ( int j = rightMostIndex ( ) - 1 ; j >= ix ; j -- ) _nodeKey [ j + 1 ] = _nodeKey [ j ] ; }
Open up a slot for a new key by shifting keys right to make room and overlaying the right - most key .
162,108
void overlayLeftShift ( int ix ) { for ( int j = ix ; j < rightMostIndex ( ) ; j ++ ) _nodeKey [ j ] = _nodeKey [ j + 1 ] ; }
Overlay a key to be deleted by moving keys left .
162,109
private void overlayRightShift ( int ix ) { for ( int j = ix ; j > 0 ; j -- ) _nodeKey [ j ] = _nodeKey [ j - 1 ] ; }
Overlay a key to be deleted by moving keys right .
162,110
GBSNode lowerPredecessor ( NodeStack stack ) { GBSNode r = leftChild ( ) ; GBSNode lastr = r ; if ( r != null ) stack . push ( NodeStack . PROCESS_CURRENT , this ) ; while ( r != null ) { if ( r . rightChild ( ) != null ) stack . push ( NodeStack . DONE_VISITS , r ) ; lastr = r ; r = r . rightChild ( ) ; } return lastr...
Find the lower predecessor of this node .
162,111
public boolean validate ( ) { boolean correct = true ; if ( population ( ) > 1 ) { java . util . Comparator comp = index ( ) . insertComparator ( ) ; int xcc = 0 ; for ( int i = 0 ; i < population ( ) - 1 ; i ++ ) { xcc = comp . compare ( _nodeKey [ i ] , _nodeKey [ i + 1 ] ) ; if ( ! ( xcc < 0 ) ) { System . out . pri...
Used by test code to make sure that all of the keys within a node are in the correct collating sequence .
162,112
public Set < String > getExtensionClasses ( ) { Set < String > serviceClazzes = new HashSet < > ( ) ; if ( getType ( ) == ArchiveType . WEB_MODULE ) { Resource webInfClassesMetaInfServicesEntry = getResource ( CDIUtils . WEB_INF_CLASSES_META_INF_SERVICES_CDI_EXTENSION ) ; serviceClazzes . addAll ( CDIUtils . parseServi...
Get hold of the extension class names from the file of META - INF \ services \ javax . enterprise . inject . spi . Extension
162,113
public BeanDiscoveryMode getBeanDiscoveryMode ( CDIRuntime cdiRuntime , BeansXml beansXml ) { BeanDiscoveryMode mode = BeanDiscoveryMode . ANNOTATED ; if ( beansXml != null ) { mode = beansXml . getBeanDiscoveryMode ( ) ; } else if ( cdiRuntime . isImplicitBeanArchivesScanningDisabled ( this ) ) { mode = BeanDiscoveryM...
Determine the bean deployment archive scanning mode If there is a beans . xml the bean discovery mode will be used . If there is no beans . xml the mode will be annotated unless the enableImplicitBeanArchives is configured as false via the server . xml . If there is no beans . xml and the enableImplicitBeanArchives att...
162,114
public static void teardownClass ( ) throws Exception { try { if ( libertyServer != null ) { libertyServer . stopServer ( "CWIML4537E" ) ; } } finally { if ( ds != null ) { ds . shutDown ( true ) ; } } libertyServer . deleteFileFromLibertyInstallRoot ( "lib/features/internalfeatures/securitylibertyinternals-1.0.mf" ) ;...
Tear down the test .
162,115
private static void setupLibertyServer ( ) throws Exception { LDAPUtils . addLDAPVariables ( libertyServer ) ; Log . info ( c , "setUp" , "Starting the server... (will wait for userRegistry servlet to start)" ) ; libertyServer . copyFileToLibertyInstallRoot ( "lib/features" , "internalfeatures/securitylibertyinternals-...
Setup the Liberty server . This server will start with very basic configuration . The tests will configure the server dynamically .
162,116
private static void setupldapServer ( ) throws Exception { ds = new InMemoryLDAPServer ( SUB_DN ) ; Entry entry = new Entry ( SUB_DN ) ; entry . addAttribute ( "objectclass" , "top" ) ; entry . addAttribute ( "objectclass" , "domain" ) ; ds . add ( entry ) ; entry = new Entry ( "ou=Test,o=ibm,c=us" ) ; entry . addAttri...
Configure the embedded LDAP server .
162,117
private Object syncGetValueFromBucket ( FastSyncHashBucket hb , int key , boolean remove ) { FastSyncHashEntry e = null ; FastSyncHashEntry last = null ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "syncGetValueFromBucket: key, remove " + key + " " + remove ) ; } synch...
Internal get from the table which is partially synchronized at the hash bucket level .
162,118
public Object put ( int key , Object value ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "put" ) ; } if ( value == null ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "value == null" ) ; } throw new NullPointerExcep...
Put into the table if does not exist .
162,119
private Object syncPutIntoBucket ( FastSyncHashBucket hb , FastSyncHashEntry newEntry ) { FastSyncHashEntry e = null ; FastSyncHashEntry last = null ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "syncPutIntoBucket" ) ; } synchronized ( hb ) { e = hb . root ; while ( e ...
Put synchronized into bucket .
162,120
public Object [ ] getAllEntryValues ( ) { List < Object > values = new ArrayList < Object > ( ) ; FastSyncHashBucket hb = null ; FastSyncHashEntry e = null ; for ( int i = 0 ; i < xVar ; i ++ ) { for ( int j = 0 ; j < yVar ; j ++ ) { hb = mainTable [ i ] [ j ] ; synchronized ( hb ) { e = hb . root ; while ( e != null )...
This routine returns a snapshot of all the values in the hash table .
162,121
void removeSession ( JmsSessionImpl sess ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "removeSession" , sess ) ; synchronized ( stateLock ) { boolean res = sessions . remove ( sess ) ; unusedOrderingContexts . add ( sess . getOrderingContext ( ) ) ; if ( ! r...
This method is used to remove a Session from the list of sessions held by the Connection .
162,122
protected int getState ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getState" ) ; int tempState ; synchronized ( stateLock ) { tempState = state ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "get...
Returns the state .
162,123
protected void setState ( int newState ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "setState" , newState ) ; synchronized ( stateLock ) { if ( ( newState == JmsInternalConstants . CLOSED ) || ( newState == JmsInternalConstants . STOPPED ) || ( newState == J...
Sets the state .
162,124
protected void checkClosed ( ) throws JMSException { if ( getState ( ) == CLOSED ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . debug ( this , tc , "This Connection is closed." ) ; throw ( javax . jms . IllegalStateException ) JmsErrorUtils . newThrowable ( javax . jms . IllegalS...
This method is called at the beginning of every method that should not work if the Connection has been closed . It prevents further execution by throwing a JMSException with a suitable I m closed message .
162,125
protected void fixClientID ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "fixClientID" ) ; synchronized ( stateLock ) { clientIDFixed = true ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "fixClient...
This method is called in order to mark that the clientID may not now change .
162,126
void unfixClientID ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "unfixClientID" ) ; synchronized ( stateLock ) { clientIDFixed = false ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "unfixClientID"...
This method is called in order to mark that the clientID may now change .
162,127
protected JmsJcaSession createJcaSession ( boolean transacted ) throws JMSException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "createJcaSession" , transacted ) ; JmsJcaSession jcaSess = null ; if ( jcaConnection != null ) { try { jcaSess = jcaConnection . c...
Create a JCA Session . If this Connection contains a JCA Connection then use it to create a JCA Session .
162,128
protected void addTemporaryDestination ( JmsTemporaryDestinationInternal tempDest ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "addTemporaryDestination" , System . identityHashCode ( tempDest ) ) ; synchronized ( temporaryDestinations ) { temporaryDestinatio...
Add a TemporaryDestination to the list of temporary destinations created by sessions under this connection
162,129
protected void removeTemporaryDestination ( JmsTemporaryDestinationInternal tempDest ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "removeTemporaryDestination" , System . identityHashCode ( tempDest ) ) ; synchronized ( temporaryDestinations ) { temporaryDest...
Remove a TemporaryDestination from the list of temporary destinations created by sessions under this connection
162,130
public OrderingContext allocateOrderingContext ( ) throws SIConnectionDroppedException , SIConnectionUnavailableException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "allocateOrderingContext" ) ; OrderingContext oc = null ; synchronized ( stateLock ) { while ( oc ==...
Called by each session when it is created to get an ordering context for that session .
162,131
private static void initExceptionThreadPool ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "initExceptionThreadPool" ) ; synchronized ( exceptionTPCreateSync ) { if ( exceptionThreadPool == null ) { int maxThreads = Integer . parseInt ( ApiJmsConstants . EXCEPTION_...
PK59962 Ensure the existence of a single thread pool within the process
162,132
private void addClientId ( String clientId ) { if ( clientId == null ) return ; ConcurrentHashMap < String , Integer > clientIdTable = JmsFactoryFactoryImpl . getClientIdTable ( ) ; if ( clientIdTable . containsKey ( clientId ) ) { clientIdTable . put ( clientId , clientIdTable . get ( clientId ) . intValue ( ) + 1 ) ;...
If there is no entry for the given Client Id in the clientIdTable then add it with count as 1 . If its already exists then just increment the counter value by 1 .
162,133
private void removeClientId ( String clientId ) { if ( clientId == null ) return ; ConcurrentHashMap < String , Integer > clientIdTable = JmsFactoryFactoryImpl . getClientIdTable ( ) ; if ( clientIdTable . containsKey ( clientId ) ) { int referenceCount = clientIdTable . get ( clientId ) . intValue ( ) ; if ( reference...
To remove the client id from client table . Whenever this method is called the counter of respective HashMap entry is decremented by one . If the count reaches 0 then that entry wil be removed from the clientIdTable .
162,134
public void initializeForAroundConstruct ( ManagedObjectContext managedObjectContext , Object [ ] interceptors , InterceptorProxy [ ] proxies ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "initializeForAroundConstruct : context = " + managedObjectContext + " intercepto...
Initialize a InvocationContext for AroundConstruct with an array of interceptor instances created for this bean instance and the interceptor proxies .
162,135
public Object doAroundInvoke ( InterceptorProxy [ ] proxies , Method businessMethod , Object [ ] parameters , EJSDeployedSupport s ) throws Exception { ivMethod = businessMethod ; ivParameters = parameters ; ivEJSDeployedSupport = s ; ivInterceptorProxies = proxies ; ivIsAroundConstruct = false ; if ( TraceComponent . ...
Invoke each AroundInvoke interceptor methods for a specified business method of an EJB being invoked .
162,136
private Object doAroundInterceptor ( ) throws Exception { ivNextIndex = 0 ; ivNumberOfInterceptors = ivInterceptorProxies == null ? 0 : ivInterceptorProxies . length ; ivParametersModified = false ; return proceed ( ) ; }
Invoke each AroundInvoke or AroundConstruct interceptor methods
162,137
public void doLifeCycle ( InterceptorProxy [ ] proxies , EJBModuleMetaDataImpl mmd ) { ivMethod = null ; ivParameters = null ; ivInterceptorProxies = proxies ; ivNumberOfInterceptors = ivInterceptorProxies . length ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "doLifeC...
d450431 - add appExceptionMap parameter .
162,138
private void lifeCycleExceptionHandler ( Throwable t , EJBModuleMetaDataImpl mmd ) { if ( t instanceof RuntimeException ) { RuntimeException rtex = ( RuntimeException ) t ; if ( mmd . getApplicationExceptionRollback ( rtex ) != null ) { InterceptorProxy w = ivInterceptorProxies [ ivNextIndex - 1 ] ; String lifeCycle = ...
d450431 - ensure runtime exception is not an application exception .
162,139
private void throwUndeclaredExceptionCause ( Throwable undeclaredException ) throws Exception { Throwable cause = undeclaredException . getCause ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "proceed unwrappering " + undeclaredException . getClass ( ) . getSimpleName...
Since some interceptor methods cannot throw Exception but the target method on the bean can throw application exceptions this method may be used to unwrap the application exception from either an InvocationTargetException or UndeclaredThrowableException .
162,140
protected void setCredentialProvider ( ServiceReference < CredentialProvider > ref ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Resetting unauthenticatedSubject as new CredentialProvider has been set" ) ; } synchronized ( unauthenticatedSubjectLock ) { unauthentica...
When CredentialProviders come and go reset the unauthenticated subject .
162,141
@ FFDCIgnore ( Exception . class ) public Subject getUnauthenticatedSubject ( ) { if ( unauthenticatedSubject == null ) { CredentialsService cs = credentialsServiceRef . getService ( ) ; String unauthenticatedUserid = cs . getUnauthenticatedUserid ( ) ; try { Subject subject = new Subject ( ) ; Hashtable < String , Obj...
Return the unauthenticated subject . If we don t already have one create it .
162,142
public void setClientAlias ( String alias ) throws Exception { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "setClientAlias" , new Object [ ] { alias } ) ; if ( ! ks . containsAlias ( alias ) ) { String keyFileName = config . getProperty ( Constants . SSLPROP_KEY_STORE ) ...
Set the client alias value for the given slot number .
162,143
public String chooseClientAlias ( String keyType , Principal [ ] issuers ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "chooseClientAlias" , new Object [ ] { keyType , issuers } ) ; Map < String , Object > connectionInfo = JSSEHelper . getInstance ( ) . getOutboundConn...
Choose a client alias .
162,144
public String chooseEngineServerAlias ( String keyType , Principal [ ] issuers , SSLEngine engine ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "chooseEngineServerAlias" , new Object [ ] { keyType , issuers , engine } ) ; String rc = null ; if ( null != customKM && cus...
Handshakes that use the SSLEngine and not an SSLSocket require this method from the extended X509KeyManager .
162,145
public X509KeyManager getX509KeyManager ( ) { if ( customKM != null ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "getX509KeyManager -> " + customKM . getClass ( ) . getName ( ) ) ; return customKM ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnable...
Get the appropriate X509KeyManager for this instance .
162,146
protected static void getAlpnResult ( SSLEngine engine , SSLConnectionLink link ) { alpnNegotiator . tryToRemoveAlpnNegotiator ( link . getAlpnNegotiator ( ) , engine , link ) ; }
This must be called after the SSL handshake has completed . If an ALPN protocol was selected by the available provider that protocol will be set on the SSLConnectionLink . Also additional cleanup will be done for some ALPN providers .
162,147
void metadataProcessingInitialize ( ComponentNameSpaceConfiguration nameSpaceConfig ) { ivContext = ( InjectionProcessorContext ) nameSpaceConfig . getInjectionProcessorContext ( ) ; ivNameSpaceConfig = nameSpaceConfig ; ivCheckAppConfig = nameSpaceConfig . isCheckApplicationConfiguration ( ) ; }
d730349 . 1
162,148
protected void mergeError ( Object oldValue , Object newValue , boolean xml , String elementName , boolean property , String key ) throws InjectionConfigurationException { JNDIEnvironmentRefType refType = getJNDIEnvironmentRefType ( ) ; String component = ivNameSpaceConfig . getDisplayName ( ) ; String module = ivNameS...
Indication that an error has occurred while merging an attribute value .
162,149
protected Boolean mergeAnnotationBoolean ( Boolean oldValue , boolean oldValueXML , boolean newValue , String elementName , boolean defaultValue ) throws InjectionConfigurationException { if ( newValue == defaultValue || oldValueXML ) { return oldValue ; } if ( isComplete ( ) ) { mergeError ( oldValue , newValue , fals...
Merges the value of a boolean annotation value .
162,150
protected Integer mergeAnnotationInteger ( Integer oldValue , boolean oldValueXML , int newValue , String elementName , int defaultValue , Map < Integer , String > valueNames ) throws InjectionConfigurationException { if ( newValue == defaultValue ) { return oldValue ; } if ( oldValueXML ) { return oldValue ; } if ( ol...
Merges the value of an integer annotation value .
162,151
protected < T > T mergeAnnotationValue ( T oldValue , boolean oldValueXML , T newValue , String elementName , T defaultValue ) throws InjectionConfigurationException { if ( newValue . equals ( defaultValue ) || oldValueXML ) { return oldValue ; } if ( oldValue == null ? isComplete ( ) : ! newValue . equals ( oldValue )...
Merges the value of a String or Enum annotation value .
162,152
protected < T > T mergeXMLValue ( T oldValue , T newValue , String elementName , String key , Map < T , String > valueNames ) throws InjectionConfigurationException { if ( newValue == null ) { return oldValue ; } if ( oldValue != null && ! newValue . equals ( oldValue ) ) { Object oldValueName = valueNames == null ? ol...
Merges a value specified in XML .
162,153
protected Map < String , String > mergeXMLProperties ( Map < String , String > oldProperties , Set < String > oldXMLProperties , List < Property > properties ) throws InjectionConfigurationException { if ( ! properties . isEmpty ( ) ) { if ( oldProperties == null ) { oldProperties = new HashMap < String , String > ( ) ...
Merges the properties specified in XML .
162,154
protected static < K , V > void addOrRemoveProperty ( Map < K , V > props , K key , V value ) { if ( value == null ) { props . remove ( key ) ; } else { props . put ( key , value ) ; } }
Add the specified property if the value is non - null or remove it from the map if it is null .
162,155
public Reference createDefinitionReference ( String bindingName , String type , Map < String , Object > properties ) throws InjectionException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) { Map < String , Object > traceProps = properties ; if ( trace...
Create a Reference to a resource definition .
162,156
public void setObjects ( Object injectionObject , Reference bindingObject ) throws InjectionException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "setObjects" , injectionObject , bindingObjectToString ( bindingObject ) ) ; ivInject...
Sets the object to use for injection and the Reference to use for binding . Usually the injection object is null .
162,157
public void setReferenceObject ( Reference bindingObject , Class < ? extends ObjectFactory > objectFactory ) throws InjectionException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "setReferenceObject" , bindingObjectToString ( bindi...
F623 - 841 . 1
162,158
protected Object getInjectionObjectInstance ( Object targetObject , InjectionTargetContext targetContext ) throws Exception { ObjectFactory objectFactory = ivObjectFactory ; InjectionObjectFactory injObjFactory = ivInjectionObjectFactory ; if ( objectFactory == null ) { try { InternalInjectionEngine ie = InjectionEngin...
F48603 . 4
162,159
public final void setJndiName ( String jndiName ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) && jndiName . length ( ) != 0 ) Tr . debug ( tc , "setJndiName: " + jndiName ) ; ivJndiName = InjectionScope . normalize ( jndiName ) ; }
d367834 . 14 Ends
162,160
public void setInjectionClassType ( Class < ? > injectionClassType ) throws InjectionException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "setInjectionClassType: " + injectionClassType ) ; if ( ivInjectionClassType == null || ivInjectionClassType == Object . class ) {...
Set the InjectionClassType to be most fine grained injection target Class type .
162,161
public void setInjectionClassTypeName ( String name ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "setInjectionClassType: " + name ) ; if ( ivInjectionClassTypeName != null ) { throw new IllegalStateException ( "duplicate reference data for " + getJndiName ( ) ) ; } iv...
Sets the injection class type name . When class names are specified in XML rather than annotation sub - classes must call this method or override getInjectionClassTypeName in order to support callers of the injection engine that do not have a class loader .
162,162
public static boolean isClassesCompatible ( Class < ? > memberClass , Class < ? > injectClass ) { if ( memberClass . isAssignableFrom ( injectClass ) ) return true ; if ( injectClass . isAssignableFrom ( memberClass ) ) return true ; return getPrimitiveClass ( memberClass ) == getPrimitiveClass ( injectClass ) ; }
Test if the input two classes are auto - boxing compatible .
162,163
public static Class < ? > mostSpecificClass ( Class < ? > classOne , Class < ? > classTwo ) { if ( classOne . isAssignableFrom ( classTwo ) ) { return classTwo ; } else if ( classTwo . isAssignableFrom ( classOne ) ) { return classOne ; } return null ; }
Returns the most most specific class to the caller . If the two classes are not compatible a null is returned .
162,164
public static String toStringSecure ( Annotation ann ) { Class < ? > annType = ann . annotationType ( ) ; StringBuilder sb = new StringBuilder ( ) ; sb . append ( '@' ) . append ( annType . getName ( ) ) . append ( '(' ) ; boolean any = false ; for ( Method m : annType . getMethods ( ) ) { Object defaultValue = m . get...
Convert an annotation to a string but mask members named password .
162,165
@ FFDCIgnore ( Exception . class ) protected int overQualLastAccessTimeUpdate ( BackedSession sess , long nowTime ) { final boolean trace = TraceComponent . isAnyTracingEnabled ( ) ; String id = sess . getId ( ) ; int updateCount ; try { if ( trace && tc . isDebugEnabled ( ) ) tcInvoke ( tcSessionMetaCache , "get" , id...
Attempts to update the last access time ensuring the old value matches . This verifies that the copy we have in cache is still valid .
162,166
public static String typeToString ( MediaType type , List < String > ignoreParams ) { if ( type == null ) { throw new IllegalArgumentException ( "MediaType parameter is null" ) ; } StringBuilder sb = new StringBuilder ( ) ; sb . append ( type . getType ( ) ) . append ( '/' ) . append ( type . getSubtype ( ) ) ; Map < S...
to the implementation
162,167
private static void createHandshakeInstance ( ) throws Exception { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "createHandshakeInstance" ) ; try { instance = Class . forName ( MfpConstants . COMP_HANDSHAKE_CLASS ) . newInstance ( ) ; } catch ( Exception e ) { FFDCFilt...
Create the singleton ComponentHandshake instance .
162,168
synchronized void setProperties ( Map < Object , Object > m ) throws ChannelFactoryPropertyIgnoredException { this . myProperties = m ; if ( cf != null ) { cf . updateProperties ( m ) ; } }
internally set the properties associated with this object
162,169
synchronized void setProperty ( Object key , Object value ) throws ChannelFactoryPropertyIgnoredException { if ( null == key ) { throw new ChannelFactoryPropertyIgnoredException ( "Ignored channel factory property key of null" ) ; } if ( myProperties == null ) { this . myProperties = new HashMap < Object , Object > ( )...
Iternally set a property associated with this object
162,170
synchronized void setChannelFactory ( ChannelFactory factory ) throws ChannelFactoryException { if ( factory != null && cf != null ) { throw new ChannelFactoryException ( "ChannelFactory already exists" ) ; } this . cf = factory ; }
Internally set the channel factory in this data object .
162,171
public void dissociate ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "dissociate" ) ; } if ( WSSecurityHelper . isServerSecurityEnabled ( ) ) { J2CSecurityHelper . removeRunAsSubject ( ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) )...
This method is called by the WorkProxy class to dissociate the inflown SecurityContext from the workmanager thread after it has run the work By the time this method is called the WSSubject . doAs method call would have exited and the runAs subject would be dissociated . So all that is left to do here is to clear the Th...
162,172
public static void validateStatusAtInstanceRestart ( long jobInstanceId , Properties restartJobParameters ) throws JobRestartException , JobExecutionAlreadyCompleteException { IPersistenceManagerService iPers = ServicesManagerStaticAnchor . getServicesManager ( ) . getPersistenceManagerService ( ) ; WSJobInstance jobIn...
validates job is restart - able validates the jobInstance is in failed or stopped
162,173
protected void write ( WriteableLogRecord logRecord ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "write" , new Object [ ] { logRecord , this } ) ; byte [ ] data = this . getData ( ) ; if ( tc . isDebugEnabled ( ) ) Tr . debug ( tc , "Writing '" + data . length + "' bytes " + RLSUtils . toHexString ( data , RLSU...
Instructs this DataItem to write its data to the given WriteableLogRecord . The write involves writing the length of the data as an int followed by the data itself . The data is written at the log record s current position .
162,174
protected byte [ ] getData ( ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "getData" , this ) ; byte [ ] data = _data ; if ( data != null ) { if ( tc . isDebugEnabled ( ) ) Tr . debug ( tc , "Cached data located" ) ; } else { if ( _storageMode == MultiScopeRecoveryLog . FILE_BACKED ) { if ( tc . isDebugEnabled (...
Returns the data encapsulated by this DataItem instance . If this DataItem is memory back the in memory copy of the data is always returned . If the DataItem is file backed and it has been written to disk the data is retrieved from disk and then returned .
162,175
private UserRegistry getActiveUserRegistry ( ) throws WSSecurityException { final String METHOD = "getUserRegistry" ; UserRegistry activeUserRegistry = null ; try { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , METHOD + " securityServiceRef " + securityServiceRef ) ; } S...
Returns the active UserRegistry . If the active user registry is an instance of com . ibm . ws . security . registry . UserRegistry then it will be wrapped . Otherwise if the active user registry is an instance of CustomUserRegistryWrapper then the underlying com . ibm . websphere . security . UserRegistry will be retu...
162,176
public synchronized UserTransaction getUserTransaction ( ) { if ( state == PRE_CREATE ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "Incorrect state: " + getStateName ( state ) ) ; throw new IllegalStateException ( getStateName ( state ) ) ; } return UserTransactionWra...
Get user transaction object that bean can use to demarcate transactions .
162,177
public Map < String , Object > getContextData ( ) { if ( state == PRE_CREATE || state == DESTROYED ) { IllegalStateException ise ; ise = new IllegalStateException ( "SessionBean: getContextData " + "not allowed from state = " + getStateName ( state ) ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnab...
F743 - 21028
162,178
protected void canBeRemoved ( ) throws RemoveException { ContainerTx tx = container . getCurrentContainerTx ( ) ; if ( tx == null ) { return ; } if ( tx . isTransactionGlobal ( ) && tx . ivRemoveBeanO != this ) { throw new RemoveException ( "Cannot remove session bean " + "within a transaction." ) ; } }
Checks if beanO can be removed . Throws RemoveException if cannot be removed .
162,179
private static String toKey ( String name , String filter , SearchControls cons ) { int length = name . length ( ) + filter . length ( ) + 100 ; StringBuffer key = new StringBuffer ( length ) ; key . append ( name ) ; key . append ( "|" ) ; key . append ( filter ) ; key . append ( "|" ) ; key . append ( cons . getSearc...
Returns a hash key for the name|filter|cons tuple used in the search query - results cache .
162,180
private static String toKey ( String name , String filterExpr , Object [ ] filterArgs , SearchControls cons ) { int length = name . length ( ) + filterExpr . length ( ) + filterArgs . length + 200 ; StringBuffer key = new StringBuffer ( length ) ; key . append ( name ) ; key . append ( "|" ) ; key . append ( filterExpr...
Returns a hash key for the name|filterExpr|filterArgs|cons tuple used in the search query - results cache .
162,181
public NameParser getNameParser ( ) throws WIMException { if ( iNameParser == null ) { TimedDirContext ctx = iContextManager . getDirContext ( ) ; try { try { iNameParser = ctx . getNameParser ( "" ) ; } catch ( NamingException e ) { if ( ! ContextManager . isConnectionException ( e ) ) { throw e ; } ctx = iContextMana...
Retrieves the parser associated with the root context .
162,182
private void initializeCaches ( Map < String , Object > configProps ) { final String METHODNAME = "initializeCaches(DataObject)" ; iAttrsCacheName = iReposId + "/" + iAttrsCacheName ; iSearchResultsCacheName = iReposId + "/" + iSearchResultsCacheName ; List < Map < String , Object > > cacheConfigs = Nester . nest ( CAC...
Initialize search and attribute caches .
162,183
private void createSearchResultsCache ( ) { final String METHODNAME = "createSearchResultsCache" ; if ( iSearchResultsCacheEnabled ) { if ( FactoryManager . getCacheUtil ( ) . isCacheAvailable ( ) ) { iSearchResultsCache = FactoryManager . getCacheUtil ( ) . initialize ( "SearchResultsCache" , iSearchResultsCacheSize ,...
Method to create the search results cache if configured .
162,184
private void createAttributesCache ( ) { final String METHODNAME = "createAttributesCache" ; if ( iAttrsCacheEnabled ) { if ( FactoryManager . getCacheUtil ( ) . isCacheAvailable ( ) ) { iAttrsCache = FactoryManager . getCacheUtil ( ) . initialize ( "AttributesCache" , iAttrsCacheSize , iAttrsCacheSize , iAttrsCacheTim...
Method to create the attributes cache if configured .
162,185
public void invalidateAttributes ( String DN , String extId , String uniqueName ) { final String METHODNAME = "invalidateAttributes(String, String, String)" ; if ( getAttributesCache ( ) != null ) { if ( DN != null ) { getAttributesCache ( ) . invalidate ( toKey ( DN ) ) ; } if ( extId != null ) { getAttributesCache ( ...
Method to invalidate the specified entry from the attributes cache . One or all parameters can be set in a single call . If all parameters are null then this operation no - ops .
162,186
public LdapEntry getEntityByIdentifier ( IdentifierType id , List < String > inEntityTypes , List < String > propNames , boolean getMbrshipAttr , boolean getMbrAttr ) throws WIMException { return getEntityByIdentifier ( id . getExternalName ( ) , id . getExternalId ( ) , id . getUniqueName ( ) , inEntityTypes , propNam...
Get an LDAP entity by an identifier .
162,187
public LdapEntry getEntityByIdentifier ( String dn , String extId , String uniqueName , List < String > inEntityTypes , List < String > propNames , boolean getMbrshipAttr , boolean getMbrAttr ) throws WIMException { String [ ] attrIds = iLdapConfigMgr . getAttributeNames ( inEntityTypes , propNames , getMbrshipAttr , g...
Get an LDAP entity by an identifier . One of dn extId or uniqueName must be non - null .
162,188
private String getUniqueName ( String dn , String entityType , Attributes attrs ) throws WIMException { final String METHODNAME = "getUniqueName" ; String uniqueName = null ; dn = iLdapConfigMgr . switchToNode ( dn ) ; if ( iLdapConfigMgr . needTranslateRDN ( ) && iLdapConfigMgr . needTranslateRDN ( entityType ) ) { tr...
Get the unique name for the specified distinguished name .
162,189
@ FFDCIgnore ( { NamingException . class , NameNotFoundException . class } ) private Attributes getAttributes ( String name , String [ ] attrIds ) throws WIMException { Attributes attributes = null ; if ( iLdapConfigMgr . getUseEncodingInSearchExpression ( ) != null ) name = LdapHelper . encodeAttribute ( name , iLdapC...
Get the specified attributes for the distinguished name .
162,190
public Attributes checkAttributesCache ( String name , String [ ] attrIds ) throws WIMException { final String METHODNAME = "checkAttributesCache" ; Attributes attributes = null ; if ( getAttributesCache ( ) != null ) { String key = toKey ( name ) ; Object cached = getAttributesCache ( ) . get ( key ) ; if ( cached != ...
Check the attributes cache for the attributes on the distinguished name . If any of the attributes are missing a call to the LDAP server will be made to retrieve them .
162,191
private void updateAttributesCache ( String uniqueNameKey , String dn , Attributes newAttrs , String [ ] attrIds ) { final String METHODNAME = "updateAttributesCache(key,dn,newAttrs)" ; getAttributesCache ( ) . put ( uniqueNameKey , dn , 1 , iAttrsCacheTimeOut , 0 , null ) ; if ( tc . isDebugEnabled ( ) ) { Tr . debug ...
Update the attributes cache by adding a mapping of the unique name to distinguished name and mapping the distinguished name to the updated attributes .
162,192
private void updateAttributesCache ( String key , Attributes missAttrs , Attributes cachedAttrs , String [ ] missAttrIds ) { final String METHODNAME = "updateAttributesCache(key,missAttrs,cachedAttrs,missAttrIds)" ; if ( missAttrIds != null ) { boolean newattr = false ; if ( missAttrIds . length > 0 ) { if ( cachedAttr...
Update the cached attributes for the specified key . Only attribute IDs that are in the missAttrIds array will be added into the cached attributes .
162,193
private void updateAttributesCache ( String key , Attributes missAttrs , Attributes cachedAttrs ) { final String METHODNAME = "updateAttributeCache(key,missAttrs,cachedAttrs)" ; if ( missAttrs . size ( ) > 0 ) { boolean newAttr = false ; if ( cachedAttrs != null ) { cachedAttrs = ( Attributes ) cachedAttrs . clone ( ) ...
Update the attributes cache for the specified key .
162,194
private NamingEnumeration < SearchResult > checkSearchCache ( String name , String filterExpr , Object [ ] filterArgs , SearchControls cons ) throws WIMException { final String METHODNAME = "checkSearchCache" ; NamingEnumeration < SearchResult > neu = null ; if ( getSearchResultsCache ( ) != null ) { String key = null ...
Check the search cache for previously performed searches . If the result is not cached query the LDAP server .
162,195
@ FFDCIgnore ( NamingException . class ) private NamingEnumeration < SearchResult > updateSearchCache ( String searchBase , String key , NamingEnumeration < SearchResult > neu , String [ ] reqAttrIds ) throws WIMSystemException { final String METHODNAME = "updateSearchCache" ; CachedNamingEnumeration clone1 = new Cache...
Update the search cache with search results .
162,196
public Map < String , LdapEntry > getDynamicGroups ( String bases [ ] , List < String > propNames , boolean getMbrshipAttr ) throws WIMException { Map < String , LdapEntry > dynaGrps = new HashMap < String , LdapEntry > ( ) ; String [ ] attrIds = iLdapConfigMgr . getAttributeNames ( iLdapConfigMgr . getGroupTypes ( ) ,...
Get dynamic groups .
162,197
public boolean isMemberInURLQuery ( LdapURL [ ] urls , String dn ) throws WIMException { boolean result = false ; String [ ] attrIds = { } ; String rdn = LdapHelper . getRDN ( dn ) ; if ( urls != null ) { for ( int i = 0 ; i < urls . length ; i ++ ) { LdapURL ldapURL = urls [ i ] ; if ( ldapURL . parsedOK ( ) ) { Strin...
Determine whether the distinguished name is in the LDAP URL query .
162,198
public SearchResult searchByOperationalAttribute ( String dn , String filter , List < String > inEntityTypes , List < String > propNames , String oprAttribute ) throws WIMException { String inEntityType = null ; List < String > supportedProps = propNames ; if ( inEntityTypes != null && inEntityTypes . size ( ) > 0 ) { ...
Search using operational attribute specified in the parameter .
162,199
private String getBinaryAttributes ( ) { StringBuffer binaryAttrNamesBuffer = new StringBuffer ( ) ; Map < String , LdapAttribute > attrMap = iLdapConfigMgr . getAttributes ( ) ; for ( String attrName : attrMap . keySet ( ) ) { LdapAttribute attr = attrMap . get ( attrName ) ; if ( LdapConstants . LDAP_ATTR_SYNTAX_OCTE...
Get the list of configure binary attributes .