idx
int64
0
165k
question
stringlengths
73
4.15k
target
stringlengths
5
918
len_question
int64
21
890
len_target
int64
3
255
161,700
protected InputStream getInputStreamToLicenseInsideZip ( final ZipInputStream zis , final String assetId , final String attachmentId ) throws IOException { InputStream is = null ; try { ZipEntry ze = zis . getNextEntry ( ) ; while ( ze != null ) { if ( ze . isDirectory ( ) ) { //do nothing } else { String name = getNam...
Given a ZipInputStream to an asset within the repo get an input stream to the license attachment within the asset .
362
23
161,701
void reset ( Object key ) { _nodeKey [ 0 ] = key ; _nodeKey [ midPoint ( ) ] = key ; _population = 1 ; _rightChild = null ; _leftChild = null ; _balance = 0 ; }
Return the node to its post - construction state .
51
10
161,702
boolean hasChild ( ) { boolean has = false ; if ( ( leftChild ( ) != null ) || ( rightChild ( ) != null ) ) has = true ; return has ; }
Return true if the node has either a right child or a left child .
40
15
161,703
public short balance ( ) { if ( ( _balance == - 1 ) || ( _balance == 0 ) || ( _balance == 1 ) ) return _balance ; else { String x = "Found invalid balance factor: " + _balance ; throw new RuntimeException ( x ) ; } }
Return the balance factor for the node .
60
8
161,704
void setBalance ( int b ) { if ( ( b == - 1 ) || ( b == 0 ) || ( b == 1 ) ) _balance = ( short ) b ; else { String x = "Attempt to set invalid balance factor: " + b ; throw new IllegalArgumentException ( x ) ; } }
Set the node s balance factor to a new value .
66
11
161,705
public boolean isLeafNode ( ) { boolean leaf = false ; if ( ( _leftChild == null ) && ( _rightChild == null ) ) leaf = true ; return leaf ; }
Return true if the node is a leaf node .
40
10
161,706
void findInsertPointInLeft ( Object new1 , NodeInsertPoint point ) { int endp = endPoint ( ) ; findIndex ( 0 , endp , new1 , point ) ; }
Find the insert point in the left half of the node for a new key .
41
16
161,707
public int searchLeft ( SearchComparator comp , Object searchKey ) { int idx = - 1 ; int top = middleIndex ( ) ; if ( comp . type ( ) == SearchComparator . EQ ) idx = findEqual ( comp , 0 , top , searchKey ) ; else idx = findGreater ( comp , 0 , top , searchKey ) ; return idx ; }
Search the left half of the node .
84
8
161,708
public int searchRight ( SearchComparator comp , Object searchKey ) { int idx = - 1 ; int bot = middleIndex ( ) ; int right = rightMostIndex ( ) ; if ( bot > right ) { String x = "bot = " + bot + ", right = " + right ; throw new OptimisticDepthException ( x ) ; } if ( comp . type ( ) == SearchComparator . EQ ) idx = fi...
Search the right half of the node .
128
8
161,709
int searchAll ( SearchComparator comp , Object searchKey ) { int idx = - 1 ; if ( comp . type ( ) == SearchComparator . EQ ) idx = findEqual ( comp , 0 , rightMostIndex ( ) , searchKey ) ; else idx = findGreater ( comp , 0 , rightMostIndex ( ) , searchKey ) ; return idx ; }
Search the whole node .
83
5
161,710
private int findEqual ( SearchComparator comp , int lower , int upper , Object searchKey ) { int nkeys = numKeys ( lower , upper ) ; int idx = - 1 ; if ( nkeys < 4 ) idx = sequentialSearchEqual ( comp , lower , upper , searchKey ) ; else idx = binarySearchEqual ( comp , lower , upper , searchKey ) ; return idx ; }
Find an index entry that is equal to the supplied key .
90
12
161,711
private int sequentialSearchEqual ( SearchComparator comp , int lower , int upper , Object searchKey ) { int xcc ; /* Current compare result */ int idx = - 1 ; /* The returned index (-1 if not found) */ for ( int i = lower ; i <= upper ; i ++ ) { xcc = comp . compare ( searchKey , _nodeKey [ i ] ) ; if ( xcc == 0 ) /* ...
Use sequential search to find a matched key .
115
9
161,712
private int findGreater ( SearchComparator comp , int lower , int upper , Object searchKey ) { int nkeys = numKeys ( lower , upper ) ; int idx = - 1 ; if ( nkeys < 4 ) idx = sequentialSearchGreater ( comp , lower , upper , searchKey ) ; else idx = binarySearchGreater ( comp , lower , upper , searchKey ) ; return idx ; ...
Find an index entry that is either greater than or greater than or equal to the supplied key .
90
19
161,713
private void findIndex ( int lower , int upper , Object new1 , NodeInsertPoint point ) { int nkeys = numKeys ( lower , upper ) ; if ( nkeys < 4 ) sequentialFindIndex ( lower , upper , new1 , point ) ; else binaryFindIndex ( lower , upper , new1 , point ) ; }
Find the insert point for a new key .
70
9
161,714
private void binaryFindIndex ( int lower , int upper , Object new1 , NodeInsertPoint point ) { java . util . Comparator comp = insertComparator ( ) ; int xcc ; /* Current compare result */ int lxcc = + 1 ; /* Remembered compare result */ int i ; int idx = upper + 1 ; /* Found index plus one */ while ( lower <= upper ) ...
Use binary search to find the insert point .
279
9
161,715
int findDeleteInRight ( Object delKey ) { int idx = - 1 ; int r = rightMostIndex ( ) ; int m = midPoint ( ) ; if ( r > m ) idx = findDelete ( m , r , delKey ) ; return idx ; }
Find the delete key in the right half of the node .
60
12
161,716
int findDelete ( int lower , int upper , Object delKey ) { int nkeys = numKeys ( lower , upper ) ; int idx = - 1 ; if ( nkeys < 4 ) idx = sequentialFindDelete ( lower , upper , delKey ) ; else idx = binaryFindDelete ( lower , upper , delKey ) ; return idx ; }
Find the index of the key to delete .
77
9
161,717
private int sequentialFindDelete ( int lower , int upper , Object delKey ) { java . util . Comparator comp = deleteComparator ( ) ; int xcc ; /* Current compare result */ int idx = - 1 ; /* The returned index (-1 if not found) */ for ( int i = lower ; i <= upper ; i ++ ) { xcc = comp . compare ( delKey , _nodeKey [ i ]...
Use sequential search to find the delete key .
123
9
161,718
private int binaryFindDelete ( int lower , int upper , Object delKey ) { java . util . Comparator comp = insertComparator ( ) ; int xcc ; /* Current compare result */ int i ; int idx = - 1 ; /* Returned index (-1 if not found) */ while ( lower <= upper ) /* Until they cross */ { i = ( lower + upper ) >>> 1 ; /* Mid-poi...
Use binary search to find the delete key .
221
9
161,719
public int middleIndex ( ) { int x = midPoint ( ) ; int r = rightMostIndex ( ) ; if ( r < midPoint ( ) ) x = r ; return x ; }
Return the index to the key at the median position in the node .
41
14
161,720
void addRightLeaf ( Object new1 ) { GBSNode p = _index . getNode ( new1 ) ; if ( rightChild ( ) != null ) throw new RuntimeException ( "Help!" ) ; setRightChild ( p ) ; }
Add a right child to the node placing in the new right child the supplied key .
53
17
161,721
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 .
77
27
161,722
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 .
42
13
161,723
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 .
124
9
161,724
Object addRightMostKey ( Object new1 ) { Object old1 = null ; if ( isFull ( ) ) /* Node is currently full */ { /* We will overlay right-most key */ old1 = rightMostKey ( ) ; _nodeKey [ rightMostIndex ( ) ] = new1 ; } else { _population ++ ; _nodeKey [ rightMostIndex ( ) ] = new1 ; if ( midPoint ( ) > rightMostIndex ( )...
Add the right - most key to the node .
119
10
161,725
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 .
149
11
161,726
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 .
51
31
161,727
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 .
46
16
161,728
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 .
48
24
161,729
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 .
46
12
161,730
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 .
43
12
161,731
GBSNode lowerPredecessor ( NodeStack stack ) { GBSNode r = leftChild ( ) ; GBSNode lastr = r ; if ( r != null ) stack . push ( NodeStack . PROCESS_CURRENT , this ) ; while ( r != null ) /* Find right-most child of left child */ { if ( r . rightChild ( ) != null ) stack . push ( NodeStack . DONE_VISITS , r ) ; lastr = r...
Find the lower predecessor of this node .
117
8
161,732
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 .
133
23
161,733
@ Override 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 . ...
Get hold of the extension class names from the file of META - INF \ services \ javax . enterprise . inject . spi . Extension
195
30
161,734
public BeanDiscoveryMode getBeanDiscoveryMode ( CDIRuntime cdiRuntime , BeansXml beansXml ) { BeanDiscoveryMode mode = BeanDiscoveryMode . ANNOTATED ; if ( beansXml != null ) { mode = beansXml . getBeanDiscoveryMode ( ) ; } else if ( cdiRuntime . isImplicitBeanArchivesScanningDisabled ( this ) ) { // If the server.xml ...
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...
135
87
161,735
@ AfterClass 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/securitylibertyinternal...
Tear down the test .
100
6
161,736
private static void setupLibertyServer ( ) throws Exception { /* * Add LDAP variables to bootstrap properties file */ LDAPUtils . addLDAPVariables ( libertyServer ) ; Log . info ( c , "setUp" , "Starting the server... (will wait for userRegistry servlet to start)" ) ; libertyServer . copyFileToLibertyInstallRoot ( "lib...
Setup the Liberty server . This server will start with very basic configuration . The tests will configure the server dynamically .
377
22
161,737
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 ) ; /* * Add the partition entries. */ entry = new Entry ( "ou=Te...
Configure the embedded LDAP server .
667
8
161,738
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 .
266
15
161,739
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 .
315
9
161,740
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 ; // already...
Put synchronized into bucket .
356
5
161,741
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 .
136
14
161,742
void removeSession ( JmsSessionImpl sess ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "removeSession" , sess ) ; synchronized ( stateLock ) { // Remove the Session // Note that this is a synchronized collection. boolean res = sessions . remove ( sess ) ; // ...
This method is used to remove a Session from the list of sessions held by the Connection .
192
18
161,743
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 .
104
4
161,744
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 .
155
5
161,745
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 .
120
39
161,746
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 .
98
17
161,747
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 .
100
16
161,748
protected JmsJcaSession createJcaSession ( boolean transacted ) throws JMSException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "createJcaSession" , transacted ) ; JmsJcaSession jcaSess = null ; // If we have a JCA connection, then make a JCA session if ( jca...
Create a JCA Session . If this Connection contains a JCA Connection then use it to create a JCA Session .
318
24
161,749
protected void addTemporaryDestination ( JmsTemporaryDestinationInternal tempDest ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "addTemporaryDestination" , System . identityHashCode ( tempDest ) ) ; synchronized ( temporaryDestinations ) { // synchronize agai...
Add a TemporaryDestination to the list of temporary destinations created by sessions under this connection
137
17
161,750
protected void removeTemporaryDestination ( JmsTemporaryDestinationInternal tempDest ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "removeTemporaryDestination" , System . identityHashCode ( tempDest ) ) ; synchronized ( temporaryDestinations ) { // synchroniz...
Remove a TemporaryDestination from the list of temporary destinations created by sessions under this connection
137
17
161,751
public OrderingContext allocateOrderingContext ( ) throws SIConnectionDroppedException , SIConnectionUnavailableException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "allocateOrderingContext" ) ; // Synchronize on the state lock, and either re-use an existing // unu...
Called by each session when it is created to get an ordering context for that session .
240
18
161,752
private static void initExceptionThreadPool ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "initExceptionThreadPool" ) ; // Do a synchronous check to ensure once-only creation synchronized ( exceptionTPCreateSync ) { if ( exceptionThreadPool == null ) { // Get the ...
PK59962 Ensure the existence of a single thread pool within the process
388
14
161,753
private void addClientId ( String clientId ) { //Sometimes the client Id will be null. For instance in the case QueueConnectionFactory, there is no default client Id specified in metatype.xml. if ( clientId == null ) return ; //do nothing ConcurrentHashMap < String , Integer > clientIdTable = JmsFactoryFactoryImpl . ge...
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 .
140
36
161,754
private void removeClientId ( String clientId ) { //Sometimes the client Id will be null. For instance in the case QueueConnectionFactory, there is no default client Id specified in metatype.xml. if ( clientId == null ) return ; //do nothing ConcurrentHashMap < String , Integer > clientIdTable = JmsFactoryFactoryImpl ....
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 .
166
44
161,755
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 .
141
27
161,756
public Object doAroundInvoke ( InterceptorProxy [ ] proxies , Method businessMethod , Object [ ] parameters , EJSDeployedSupport s ) //LIDB3294-41 throws Exception { ivMethod = businessMethod ; ivParameters = parameters ; ivEJSDeployedSupport = s ; //LIDB3294-41 ivInterceptorProxies = proxies ; ivIsAroundConstruct = fa...
Invoke each AroundInvoke interceptor methods for a specified business method of an EJB being invoked .
259
21
161,757
private Object doAroundInterceptor ( ) throws Exception { // Note, we do not call setParameters since the assumption is the // wrapper code passes an Object array that always contains the // correct type. If we want type checking to ensure wrapper // code is correct, we could call setParameters(parameters) instead // o...
Invoke each AroundInvoke or AroundConstruct interceptor methods
124
12
161,758
public void doLifeCycle ( InterceptorProxy [ ] proxies , EJBModuleMetaDataImpl mmd ) // F743-14982 { ivMethod = null ; ivParameters = null ; // d367572.8 ivInterceptorProxies = proxies ; ivNumberOfInterceptors = ivInterceptorProxies . length ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) /...
d450431 - add appExceptionMap parameter .
268
10
161,759
private void lifeCycleExceptionHandler ( Throwable t , EJBModuleMetaDataImpl mmd ) // F743-14982 { if ( t instanceof RuntimeException ) { // Is the RuntimeException an application exception? RuntimeException rtex = ( RuntimeException ) t ; if ( mmd . getApplicationExceptionRollback ( rtex ) != null ) // F743-14982 { //...
d450431 - ensure runtime exception is not an application exception .
619
13
161,760
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 .
298
46
161,761
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 .
85
16
161,762
@ Override @ FFDCIgnore ( Exception . class ) public Subject getUnauthenticatedSubject ( ) { if ( unauthenticatedSubject == null ) { CredentialsService cs = credentialsServiceRef . getService ( ) ; String unauthenticatedUserid = cs . getUnauthenticatedUserid ( ) ; try { Subject subject = new Subject ( ) ; Hashtable < S...
Return the unauthenticated subject . If we don t already have one create it .
365
17
161,763
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 .
325
11
161,764
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 .
789
5
161,765
@ Override 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 != cust...
Handshakes that use the SSLEngine and not an SSLSocket require this method from the extended X509KeyManager .
249
27
161,766
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 .
132
11
161,767
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 .
52
45
161,768
void metadataProcessingInitialize ( ComponentNameSpaceConfiguration nameSpaceConfig ) { ivContext = ( InjectionProcessorContext ) nameSpaceConfig . getInjectionProcessorContext ( ) ; ivNameSpaceConfig = nameSpaceConfig ; // Following must be available after ivContext and ivNameSpaceConfig are cleared ivCheckAppConfig =...
d730349 . 1
80
5
161,769
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 .
533
13
161,770
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 .
153
10
161,771
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 .
170
10
161,772
protected < T > T mergeAnnotationValue ( T oldValue , boolean oldValueXML , T newValue , String elementName , T defaultValue ) throws InjectionConfigurationException { if ( newValue . equals ( defaultValue ) || oldValueXML ) { // d663356 return oldValue ; } if ( oldValue == null ? isComplete ( ) : ! newValue . equals (...
Merges the value of a String or Enum annotation value .
118
13
161,773
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 .
146
8
161,774
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 .
188
8
161,775
protected static < K , V > void addOrRemoveProperty ( Map < K , V > props , K key , V value ) { if ( value == null ) { // Generic properties have already been added to the map. Remove them // so they aren't confused with the builtin properties. 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 .
81
22
161,776
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 .
294
8
161,777
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 .
178
23
161,778
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
131
7
161,779
protected Object getInjectionObjectInstance ( Object targetObject , InjectionTargetContext targetContext ) throws Exception { ObjectFactory objectFactory = ivObjectFactory ; // volatile-read InjectionObjectFactory injObjFactory = ivInjectionObjectFactory ; if ( objectFactory == null ) { try { InternalInjectionEngine ie...
F48603 . 4
325
5
161,780
public final void setJndiName ( String jndiName ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) && jndiName . length ( ) != 0 ) Tr . debug ( tc , "setJndiName: " + jndiName ) ; // Starting with Java EE 6, reference names may now start with java: and // then global, app, module, or comp. 'en...
d367834 . 14 Ends
186
7
161,781
public void setInjectionClassType ( Class < ? > injectionClassType ) throws InjectionException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "setInjectionClassType: " + injectionClassType ) ; // if the injection class type hasn't been set yet ( null from XML or // Object...
Set the InjectionClassType to be most fine grained injection target Class type .
293
17
161,782
public void setInjectionClassTypeName ( String name ) // F743-32443 { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "setInjectionClassType: " + name ) ; if ( ivInjectionClassTypeName != null ) { throw new IllegalStateException ( "duplicate reference data for " + getJndiNam...
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 .
106
51
161,783
public static boolean isClassesCompatible ( Class < ? > memberClass , Class < ? > injectClass ) { // If the class of the field or method is the injection // type or a parent of it, then the injection may occur. d433391 if ( memberClass . isAssignableFrom ( injectClass ) ) return true ; // TODO : Remove this hack when E...
Test if the input two classes are auto - boxing compatible .
215
12
161,784
public static Class < ? > mostSpecificClass ( Class < ? > classOne , Class < ? > classTwo ) { if ( classOne . isAssignableFrom ( classTwo ) ) { return classTwo ; // d479669 } else if ( classTwo . isAssignableFrom ( classOne ) ) { return classOne ; // d479669 } return null ; }
Returns the most most specific class to the caller . If the two classes are not compatible a null is returned .
80
22
161,785
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 .
273
13
161,786
@ Override @ FFDCIgnore ( Exception . class ) //manually logged protected int overQualLastAccessTimeUpdate ( BackedSession sess , long nowTime ) { final boolean trace = TraceComponent . isAnyTracingEnabled ( ) ; String id = sess . getId ( ) ; int updateCount ; try { if ( trace && tc . isDebugEnabled ( ) ) tcInvoke ( tc...
Attempts to update the last access time ensuring the old value matches . This verifies that the copy we have in cache is still valid .
554
27
161,787
@ Trivial 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 ( ) )...
to the implementation
236
3
161,788
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 .
202
9
161,789
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
50
9
161,790
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
110
9
161,791
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 .
50
11
161,792
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...
110
86
161,793
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
149
17
161,794
protected void write ( WriteableLogRecord logRecord ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "write" , new Object [ ] { logRecord , this } ) ; // Retrieve the data stored within this data item. This will either come from // the cached in memory copy or retrieved from disk. byte [ ] data = this . getData ( )...
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 .
519
47
161,795
protected byte [ ] getData ( ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "getData" , this ) ; byte [ ] data = _data ; if ( data != null ) { // There is data cached in memory. Simply use this directly. if ( tc . isDebugEnabled ( ) ) Tr . debug ( tc , "Cached data located" ) ; } else { if ( _storageMode == Multi...
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 .
448
53
161,796
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...
422
74
161,797
@ Override public synchronized UserTransaction getUserTransaction ( ) { // d367572.1 start if ( state == PRE_CREATE ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "Incorrect state: " + getStateName ( state ) ) ; throw new IllegalStateException ( getStateName ( state ) )...
Get user transaction object that bean can use to demarcate transactions .
111
14
161,798
@ Override public Map < String , Object > getContextData ( ) { // Calling getContextData is not allowed from setSessionContext. if ( state == PRE_CREATE || state == DESTROYED ) { IllegalStateException ise ; ise = new IllegalStateException ( "SessionBean: getContextData " + "not allowed from state = " + getStateName ( s...
F743 - 21028
139
6
161,799
protected void canBeRemoved ( ) throws RemoveException { ContainerTx tx = container . getCurrentContainerTx ( ) ; //d171654 //------------------------------------------------------------- // If there is no current transaction then we are removing a // TX_BEAN_MANAGED session bean outside of a transaction which // is co...
Checks if beanO can be removed . Throws RemoveException if cannot be removed .
154
18