idx
int64
0
165k
question
stringlengths
73
5.81k
target
stringlengths
5
918
163,100
public final void enforceAutoCommit ( boolean autoCommit ) throws SQLException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "enforceAutoCommit" , autoCommit ) ; if ( autoCommit != currentAutoCommit || helper . alwaysSetAutoCo...
Enforce the autoCommit setting in the underlying database and update the current value on the MC . This method must be invoked by the Connection handle before doing any work on the database .
163,101
private CacheMap getStatementCache ( ) { int newSize = dsConfig . get ( ) . statementCacheSize ; if ( statementCache == null && newSize > 0 ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "enable statement cache with size" , newSize ) ; statementCache = new CacheM...
Processes any dynamic updates to the statement cache size and then returns the statement cache .
163,102
public final boolean isGlobalTransactionActive ( ) { UOWCurrent uow = ( UOWCurrent ) mcf . connectorSvc . getTransactionManager ( ) ; UOWCoordinator coord = uow == null ? null : uow . getUOWCoord ( ) ; return coord != null && coord . isGlobal ( ) ; }
Returns true if a global transaction is active on the thread otherwise false .
163,103
public final boolean isTransactional ( ) { if ( transactional == null ) { transactional = mcf . dsConfig . get ( ) . transactional ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "transactional=" , transactional ) ; } return transactional ; }
This method checks if transaction enlistment is enabled on the MC
163,104
public void processConnectionClosedEvent ( WSJdbcConnection handle ) throws ResourceException { if ( cleaningUpHandles ) return ; final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; connEvent . recycle ( ConnectionEvent . CONNECTION_CLOSED , null , handle ) ; if ( isTraceOn && tc . isEventEnabled ( ) )...
Process request for a CONNECTION_CLOSED event .
163,105
public void processLocalTransactionStartedEvent ( Object handle ) throws ResourceException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "processLocalTransactionStartedEvent" , handle ) ; if ( tc . isDebugEnabled ( ) ) {...
Process request for a LOCAL_TRANSACTION_STARTED event .
163,106
public void processLocalTransactionCommittedEvent ( Object handle ) throws ResourceException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "processLocalTransactionCommittedEvent" , handle ) ; if ( tc . isDebugEnabled ( )...
Process request for a LOCAL_TRANSACTION_COMMITTED event .
163,107
public void processConnectionErrorOccurredEvent ( Object handle , Exception ex , boolean logEvent ) { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( inCleanup ) { if ( isTraceOn && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "An error occured during connection cleanup. Since the contai...
Process request for a CONNECTION_ERROR_OCCURRED event .
163,108
public void statementClosed ( javax . sql . StatementEvent event ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEventEnabled ( ) ) Tr . event ( this , tc , "statementClosed" , "Notification of statement closed received from the JDBC driver" , AdapterUtil . toString ( event . getSource ( ) ) , AdapterUtil ....
Invoked by the JDBC driver when a prepared statement is closed .
163,109
public void statementErrorOccurred ( StatementEvent event ) { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "statementErrorOccurred" , "Notification of a fatal statement error received from the JDBC driver" , AdapterUtil . toStr...
Invoked by the JDBC driver when a fatal statement error occurs .
163,110
public void lazyEnlistInGlobalTran ( LazyEnlistableConnectionManager lazyEnlistableConnectionManager ) throws ResourceException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn ) { if ( tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "lazyEnlist" , lazyEnlistableConnectionManager...
Signal the Application Server for lazy enlistment if we aren t already enlisted in a transaction . The lazy enlistment signal should only be sent once for a transaction . Connection handles will always invoke this method when doing work in the database regardless of whether we are already enlisted . In the case where w...
163,111
void refreshCachedAutoCommit ( ) { try { boolean autoCommit = sqlConn . getAutoCommit ( ) ; if ( currentAutoCommit != autoCommit ) { currentAutoCommit = autoCommit ; for ( int i = 0 ; i < numHandlesInUse ; i ++ ) handlesInUse [ i ] . setCurrentAutoCommit ( autoCommit , key ) ; } } catch ( SQLException x ) { processConn...
After XAResource . end Oracle resets the autocommit value to whatever it was before the transaction instead of leaving it as the value that the application set during the transaction . Refresh our cached copy of the autocommit value to be consistent with the JDBC driver s behavior .
163,112
private final boolean removeHandle ( WSJdbcConnection handle ) { for ( int i = numHandlesInUse ; i > 0 ; ) if ( handle == handlesInUse [ -- i ] ) { handlesInUse [ i ] = handlesInUse [ -- numHandlesInUse ] ; handlesInUse [ numHandlesInUse ] = null ; return true ; } return false ; }
Remove a handle from the list of handles associated with this ManagedConnection .
163,113
private void replaceCRI ( WSConnectionRequestInfoImpl newCRI ) throws ResourceException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "replaceCRI" , "Current:" , cri , "New:" , newCRI ) ; if ( numHandlesInUse > 0 || ! cri . is...
Replace the CRI of this ManagedConnection with the new CRI .
163,114
private WSJdbcConnection [ ] resizeHandleList ( ) { System . arraycopy ( handlesInUse , 0 , handlesInUse = new WSJdbcConnection [ maxHandlesInUse > numHandlesInUse ? maxHandlesInUse : ( maxHandlesInUse = numHandlesInUse * 2 ) ] , 0 , numHandlesInUse ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabl...
Increase the size of the array that keeps track of handles associated with this ManagedConnection .
163,115
private void handleCleanReuse ( ) throws ResourceException { try { currentTransactionIsolation = sqlConn . getTransactionIsolation ( ) ; currentHoldability = defaultHoldability ; currentAutoCommit = sqlConn . getAutoCommit ( ) ; } catch ( SQLException sqlX ) { FFDCFilter . processException ( sqlX , getClass ( ) . getNa...
used to do some cleanup after a reuse of connection
163,116
public final Object getStatement ( StatementCacheKey key ) { Object stmt = statementCache . remove ( key ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { if ( stmt == null ) { Tr . debug ( this , tc , "No Matching Prepared Statement found in cache" ) ; } else { Tr . debug ( this , tc , "...
Return a statement from the cache matching the key provided . Null is returned if no statement matches .
163,117
public final void cacheStatement ( Statement statement , StatementCacheKey key ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEventEnabled ( ) ) Tr . event ( this , tc , "cacheStatement" , AdapterUtil . toString ( statement ) , key ) ; CacheMap cache = getStatementCache ( ) ; Object discardedStatement = ca...
Returns the statement into the cache . The statement is closed if an error occurs attempting to cache it . This method will only called if statement caching was enabled at some point although it might not be enabled anymore .
163,118
public void dissociateHandle ( WSJdbcConnection connHandle ) { if ( ! cleaningUpHandles && ! removeHandle ( connHandle ) ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "Unable to dissociate Connection handle with current ManagedConnection because it is not curren...
This method is invoked by the connection handle during dissociation to signal the ManagedConnection to remove all references to the handle . If the ManagedConnection is not associated with the specified handle this method is a no - op and a warning message is traced .
163,119
public final void clearStatementCache ( ) { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( statementCache == null ) { if ( isTraceOn && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "statement cache is null. caching is disabled" ) ; return ; } if ( isTraceOn && tc . isEntryEnabled ( ) ) ...
Removes and closes all statements in the statement cache for this ManagedConnection .
163,120
private ResourceException closeHandles ( ) { ResourceException firstX = null ; Object conn = null ; cleaningUpHandles = true ; for ( int i = numHandlesInUse ; i > 0 ; ) { conn = handlesInUse [ -- i ] ; handlesInUse [ i ] = null ; try { ( ( WSJdbcConnection ) conn ) . close ( ) ; } catch ( SQLException closeX ) { FFDCFi...
Closes all handles associated with this ManagedConnection . Processing continues even if close fails on a handle . All errors are logged and the first error is saved to be returned when processing completes .
163,121
public XAResource getXAResource ( ) throws ResourceException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "getXAResource" ) ; if ( xares != null ) { if ( isTraceOn && tc . isEventEnabled ( ) ) Tr . event ( this , tc , "Return...
Returns a javax . transaction . xa . XAresource instance . An application server enlists this XAResource instance with the Transaction Manager if the ManagedConnection instance is being used in a JTA transaction that is being coordinated by the Transaction Manager .
163,122
public final LocalTransaction getLocalTransaction ( ) throws ResourceException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "getLocalTransaction" ) ; localTran = localTran == null ? new WSRdbSpiLocalTransactionImpl ( this , s...
Returns an javax . resource . spi . LocalTransaction instance . The LocalTransaction interface is used by the container to manage local transactions for a RM instance .
163,123
public final void setTransactionIsolation ( int isoLevel ) throws SQLException { if ( currentTransactionIsolation != isoLevel ) { if ( isoLevel == Connection . TRANSACTION_NONE ) { throw new SQLException ( AdapterUtil . getNLSMessage ( "DSRA4011.tran.none.iso.switch.unsupported" , dsConfig . get ( ) . id ) ) ; } if ( T...
Set the transactionIsolation level to the requested Isolation Level . If the requested and current are the same then do not drive it to the database If they are different drive it all the way to the database .
163,124
public final int getTransactionIsolation ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { try { Tr . debug ( this , tc , "The current isolation level from our tracking is: " , currentTransactionIsolation ) ; Tr . debug ( this , tc , "Isolation reported by the JDBC driver: " , sqlConn ....
Get the transactionIsolation level
163,125
public final void setHoldability ( int holdability ) throws SQLException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "setHoldability" , "Set Holdability to " + AdapterUtil . getCursorHoldabilityString ( holdability ) ) ; sqlConn . setHoldability ( holdability ) ...
Set the cursor holdability value to the request value
163,126
public final void setCatalog ( String catalog ) throws SQLException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "Set Catalog to " + catalog ) ; sqlConn . setCatalog ( catalog ) ; connectionPropertyChanged = true ; }
Updates the value of the catalog property .
163,127
public final void setReadOnly ( boolean isReadOnly ) throws SQLException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "Set readOnly to " + isReadOnly ) ; sqlConn . setReadOnly ( isReadOnly ) ; connectionPropertyChanged = true ; }
Updates the value of the readOnly property .
163,128
public final void setShardingKeys ( Object shardingKey , Object superShardingKey ) throws SQLException { if ( mcf . beforeJDBCVersion ( JDBCRuntimeVersion . VERSION_4_3 ) ) throw new SQLFeatureNotSupportedException ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc ,...
Updates the value of the sharding keys .
163,129
public final boolean setShardingKeysIfValid ( Object shardingKey , Object superShardingKey , int timeout ) throws SQLException { if ( mcf . beforeJDBCVersion ( JDBCRuntimeVersion . VERSION_4_3 ) ) throw new SQLFeatureNotSupportedException ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) ...
Updates the value of the sharding keys after validating them .
163,130
public final void setTypeMap ( Map < String , Class < ? > > typeMap ) throws SQLException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "Set TypeMap to " + typeMap ) ; try { sqlConn . setTypeMap ( typeMap ) ; } catch ( SQLFeatureNotSupportedException nse ) { if ( ...
Updates the value of the typeMap property .
163,131
public final Object getSQLJConnectionContext ( Class < ? > DefaultContext , WSConnectionManager cm ) throws SQLException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "getSQLJConnectionContext" ) ; if ( sqljContext == null ) {...
This method returns the SQLJ ConnectionContext . This method is only called by the WSJccConnection class . The ConnectionContext caches all the RTStatements
163,132
public void setClaimedVictim ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "marking this mc as _claimedVictim" ) ; _claimedVictim = true ; }
Claim the unused managed connection as a victim connection which can then be reauthenticated and reused .
163,133
public void setSchema ( String schema ) throws SQLException { Transaction suspendTx = null ; if ( mcf . beforeJDBCVersion ( JDBCRuntimeVersion . VERSION_4_1 ) ) throw new SQLFeatureNotSupportedException ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "Set Schema...
Set a schema for this managed connection .
163,134
public String getSchema ( ) throws SQLException { Transaction suspendTx = null ; if ( mcf . beforeJDBCVersion ( JDBCRuntimeVersion . VERSION_4_1 ) ) return null ; if ( AdapterUtil . isZOS ( ) && isGlobalTransactionActive ( ) ) suspendTx = suspendGlobalTran ( ) ; String schema ; try { schema = mcf . jdbcRuntime . doGetS...
Retrieve the schema being used by this managed connection .
163,135
void setFileTag ( File file ) throws IOException { if ( initialized && fileEncodingCcsid != 0 ) { int returnCode = setFileTag ( file . getAbsolutePath ( ) , fileEncodingCcsid ) ; if ( returnCode != 0 ) { issueTaggingFailedMessage ( returnCode ) ; } } }
Tag the specified file as ISO8859 - 1 text .
163,136
private synchronized void issueTaggingFailedMessage ( int returnCode ) { if ( taggingFailedIssued ) { return ; } System . err . println ( MessageFormat . format ( BootstrapConstants . messages . getString ( "warn.unableTagFile" ) , returnCode ) ) ; taggingFailedIssued = true ; }
Issue the tagging failed message .
163,137
private static boolean registerNatives ( ) { try { final String methodDescriptor = "zJNIBOOT_" + TaggedFileOutputStream . class . getCanonicalName ( ) . replaceAll ( "\\." , "_" ) ; long dllHandle = NativeMethodHelper . registerNatives ( TaggedFileOutputStream . class , methodDescriptor , null ) ; if ( dllHandle > 0 ) ...
Register the native method needed for file tagging .
163,138
private static int acquireFileEncodingCcsid ( ) { Charset charset = null ; String fileEncoding = System . getProperty ( "file.encoding" ) ; try { charset = Charset . forName ( fileEncoding ) ; } catch ( Throwable t ) { } int ccsid = getCcsid ( charset ) ; if ( ccsid == 0 ) { System . err . println ( MessageFormat . for...
Get the character code set identifier that represents the JVM s file encoding . This should only be called by the class static initializer .
163,139
public static ParsedScheduleExpression parse ( ScheduleExpression expr ) { ParsedScheduleExpression parsedExpr = new ParsedScheduleExpression ( expr ) ; parse ( parsedExpr ) ; return parsedExpr ; }
Parses the specified schedule expression and returns the result .
163,140
static void parse ( ParsedScheduleExpression parsedExpr ) { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "parse: " + toString ( parsedExpr . getSchedule ( ) ) ) ; ScheduleExpression expr = parsedExpr . getSchedule ( ) ; ScheduleExpres...
Parses the schedule expression contained within the ParsedScheduleExpression object and store the results in that object .
163,141
private void parseTimeZone ( ParsedScheduleExpression parsedExpr , String string ) { if ( parsedExpr . timeZone == null ) { if ( string == null ) { parsedExpr . timeZone = TimeZone . getDefault ( ) ; } else { parsedExpr . timeZone = TimeZone . getTimeZone ( string . trim ( ) ) ; if ( parsedExpr . timeZone . getID ( ) ....
Parses the time zone ID and stores the result in parsedExpr . If the parsed schedule already has a time zone then it is kept . If the time zone ID is null then the default time zone is used .
163,142
private long parseDate ( Date date , long defaultValue ) { if ( date == null ) { return defaultValue ; } long value = date . getTime ( ) ; if ( value > 0 ) { long remainder = value % 1000 ; if ( remainder != 0 ) { long newValue = value - remainder + 1000 ; value = newValue > 0 || value < 0 ? newValue : Long . MAX_VALUE...
Parses the date to milliseconds and rounds up to the nearest second .
163,143
private void error ( ScheduleExpressionParserException . Error error ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "parse error in " + ivAttr + " at " + ivPos ) ; throw new ScheduleExpressionParserException ( error , ivAttr . getDisplayName ( ) , ivString ) ; }
Issues a lexical analysis or parsing error .
163,144
private void parseAttribute ( ParsedScheduleExpression parsedExpr , Attribute attr , String string ) { ivAttr = attr ; ivString = string ; ivPos = 0 ; if ( string == null ) { error ( ScheduleExpressionParserException . Error . VALUE ) ; } for ( boolean inList = false ; ; inList = true ) { skipWhitespace ( ) ; int value...
Parses the specified attribute of this parsers schedule expression and stores the result in parsedExpr . This method sets the ivAttr ivString and ivPos member variables that are accessed by other parsing methods . Only ivPos should be modified by those other methods .
163,145
private void skipWhitespace ( ) { while ( ivPos < ivString . length ( ) && Character . isWhitespace ( ivString . charAt ( ivPos ) ) ) { ivPos ++ ; } }
Skip any whitespace at the current position in the parse string .
163,146
private int scanToken ( ) { int begin = ivPos ; if ( ivPos < ivString . length ( ) ) { if ( ivString . charAt ( ivPos ) == '-' ) { ivPos ++ ; } while ( ivPos < ivString . length ( ) && isTokenChar ( ivString . charAt ( ivPos ) ) ) { ivPos ++ ; } } return begin ; }
Skip the minimum number of characters necessary to form a single unit of information within a value . Whitespace before the value is not skipped .
163,147
private int findNamedValue ( int begin , String [ ] namedValues , int min ) { int length = ivPos - begin ; for ( int i = 0 ; i < namedValues . length ; i ++ ) { String namedValue = namedValues [ i ] ; if ( length == namedValue . length ( ) && ivString . regionMatches ( true , begin , namedValue , 0 , length ) ) { retur...
Case - insensitively search the specified list of named values for a substring of the parse string . The substring of the parse string is the range [ begin ivPos ) .
163,148
public static byte [ ] generateSalt ( String saltString ) { byte [ ] output = null ; if ( saltString == null || saltString . length ( ) < 1 ) { output = new byte [ SEED_LENGTH ] ; SecureRandom rand = new SecureRandom ( ) ; rand . setSeed ( rand . generateSeed ( SEED_LENGTH ) ) ; rand . nextBytes ( output ) ; } else { t...
generate salt value by using given string . salt was generated as following format String format of current time + given string + hostname
163,149
public static byte [ ] digest ( char [ ] plainBytes , byte [ ] salt , String algorithm , int iteration , int length ) throws InvalidPasswordCipherException { if ( logger . isLoggable ( Level . FINE ) ) { logger . fine ( "algorithm : " + algorithm + " iteration : " + iteration ) ; logger . fine ( "input length: " + plai...
perform message digest and then append a salt at the end .
163,150
public DERObject toASN1Object ( ) { ASN1EncodableVector v = new ASN1EncodableVector ( ) ; v . add ( digestedObjectType ) ; if ( otherObjectTypeID != null ) { v . add ( otherObjectTypeID ) ; } v . add ( digestAlgorithm ) ; v . add ( objectDigest ) ; return new DERSequence ( v ) ; }
Produce an object suitable for an ASN1OutputStream .
163,151
private boolean findInList ( Entry oEntry ) { return findInList ( oEntry . getHashcodes ( ) , oEntry . getLengths ( ) , firstCell , oEntry . getCurrentSize ( ) - 1 ) ; }
Determine if an address represented by an Entry object is in the address tree
163,152
private boolean putInList ( Entry entry ) { FilterCellFastStr currentCell = firstCell ; FilterCellFastStr nextCell = null ; int [ ] hashcodes = entry . getHashcodes ( ) ; int [ ] lengths = entry . getLengths ( ) ; int lastIndex = entry . getCurrentSize ( ) - 1 ; for ( int i = lastIndex ; i >= 0 ; i -- ) { if ( ( hashco...
Add and new address to the address tree where the new address is represented by an Entry object .
163,153
private Entry convertToEntries ( String newAddress ) { byte [ ] ba = null ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "convertToEntries" ) ; } try { ba = newAddress . getBytes ( "ISO-8859-1" ) ; } catch ( UnsupportedEncodingException x ) { if ( TraceComponent . isAny...
Convert a single URL address to an Entry object . The entry object will contain the hashcode array and length array of the substrings of this address
163,154
public static void hash ( byte [ ] data , byte [ ] output ) { int len = output . length ; if ( len == 0 ) return ; int [ ] code = calculate ( data ) ; for ( int outIndex = 0 , codeIndex = 0 , shift = 24 ; outIndex < len && codeIndex < 5 ; ++ outIndex , shift -= 8 ) { output [ outIndex ] = ( byte ) ( code [ codeIndex ] ...
Calculates the SHA - 1 hash code of the input data and writes up to 20 bytes of it in the output byte array parameter .
163,155
public UIViewRoot createView ( FacesContext context , String viewId ) { checkNull ( context , "context" ) ; try { viewId = calculateViewId ( context , viewId ) ; Application application = context . getApplication ( ) ; UIViewRoot newViewRoot = ( UIViewRoot ) application . createComponent ( context , UIViewRoot . COMPON...
Process the specification required algorithm that is generic to all PDL .
163,156
private Object getDestinationName ( String destinationType , Object destination ) throws Exception { String methodName ; if ( "javax.jms.Queue" . equals ( destinationType ) ) methodName = "getQueueName" ; else if ( "javax.jms.Topic" . equals ( destinationType ) ) methodName = "getTopicName" ; else throw new InvalidProp...
Returns the name of the queue or topic .
163,157
JCAContextProvider getJCAContextProvider ( Class < ? > workContextClass ) { JCAContextProvider provider = null ; for ( Class < ? > cl = workContextClass ; provider == null && cl != null ; cl = cl . getSuperclass ( ) ) provider = contextProviders . getService ( cl . getName ( ) ) ; return provider ; }
Returns the JCAContextProvider for the specified work context class .
163,158
String getJCAContextProviderName ( Class < ? > workContextClass ) { ServiceReference < JCAContextProvider > ref = null ; for ( Class < ? > cl = workContextClass ; ref == null && cl != null ; cl = cl . getSuperclass ( ) ) ref = contextProviders . getReference ( cl . getName ( ) ) ; String name = ref == null ? null : ( S...
Returns the component name of the JCAContextProvider for the specified work context class .
163,159
public Class < ? > loadClass ( final String className ) throws ClassNotFoundException , UnableToAdaptException , MalformedURLException { ClassLoader raClassLoader = resourceAdapterSvc . getClassLoader ( ) ; if ( raClassLoader != null ) { return Utils . priv . loadClass ( raClassLoader , className ) ; } else { try { if ...
Load a resource adapter class .
163,160
protected void setContextProvider ( ServiceReference < JCAContextProvider > ref ) { contextProviders . putReference ( ( String ) ref . getProperty ( JCAContextProvider . TYPE ) , ref ) ; }
Declarative Services method for setting a JCAContextProvider service reference
163,161
private void stopResourceAdapter ( ) { if ( resourceAdapter != null ) try { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "stop" , resourceAdapter ) ; ArrayList < ThreadContext > threadContext = startTask ( raThreadContextDescriptor ) ; try { beginContext ( raMetaDa...
Stop the resource adapter if it has started .
163,162
@ SuppressWarnings ( "unchecked" ) private ThreadContextDescriptor captureRaThreadContext ( WSContextService contextSvc ) { Map < String , String > execProps = new HashMap < String , String > ( ) ; execProps . put ( WSContextService . DEFAULT_CONTEXT , WSContextService . ALL_CONTEXT_TYPES ) ; execProps . put ( WSContex...
Capture current thread context of the context service .
163,163
private ArrayList < ThreadContext > startTask ( ThreadContextDescriptor raThreadContextDescriptor ) { return raThreadContextDescriptor == null ? null : raThreadContextDescriptor . taskStarting ( ) ; }
Start task if there is a resource adapter context descriptor .
163,164
private void stopTask ( ThreadContextDescriptor raThreadContextDescriptor , ArrayList < ThreadContext > threadContext ) { if ( raThreadContextDescriptor != null ) raThreadContextDescriptor . taskStopping ( threadContext ) ; }
Stop the resource adapter context descriptor task if one was started .
163,165
protected void unsetContextProvider ( ServiceReference < JCAContextProvider > ref ) { contextProviders . removeReference ( ( String ) ref . getProperty ( JCAContextProvider . TYPE ) , ref ) ; }
Declarative Services method for unsetting a JCAContextProvider service reference
163,166
private WebAuthenticator getAuthenticatorForFailOver ( String authType , WebRequest webRequest ) { WebAuthenticator authenticator = null ; if ( LoginConfiguration . FORM . equals ( authType ) ) { authenticator = createFormLoginAuthenticator ( webRequest ) ; } else if ( LoginConfiguration . BASIC . equals ( authType ) )...
Get the appropriate Authenticator based on the authType
163,167
private boolean appHasWebXMLFormLogin ( WebRequest webRequest ) { return webRequest . getFormLoginConfiguration ( ) != null && webRequest . getFormLoginConfiguration ( ) . getLoginPage ( ) != null && webRequest . getFormLoginConfiguration ( ) . getErrorPage ( ) != null ; }
Determines if the application has a FORM login configuration in its web . xml
163,168
private boolean globalWebAppSecurityConfigHasFormLogin ( ) { WebAppSecurityConfig globalConfig = WebAppSecurityCollaboratorImpl . getGlobalWebAppSecurityConfig ( ) ; return globalConfig != null && globalConfig . getLoginFormURL ( ) != null ; }
Determine if the global WebAppSecurityConfig has a form login page .
163,169
public WebAuthenticator getWebAuthenticator ( WebRequest webRequest ) { String authMech = webAppSecurityConfig . getOverrideHttpAuthMethod ( ) ; if ( authMech != null && authMech . equals ( "CLIENT_CERT" ) ) { return createCertificateLoginAuthenticator ( ) ; } SecurityMetadata securityMetadata = webRequest . getSecurit...
Determine the correct WebAuthenticator to use based on the authentication method . If there authentication method is not specified in the web . xml file then we will use BasicAuth as default .
163,170
public BasicAuthAuthenticator getBasicAuthAuthenticator ( ) { try { return createBasicAuthenticator ( ) ; } catch ( RegistryException e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "RegistryException while trying to create BasicAuthAuthenticator" , e ) ; } } return ...
Create an instance of BasicAuthAuthenticator .
163,171
public boolean handleAttribute ( DDParser parser , String nsURI , String localName , int index ) throws ParseException { boolean result = false ; if ( nsURI != null ) { return result ; } if ( CONTEXT_ROOT_ATTRIBUTE_NAME . equals ( localName ) ) { this . contextRoot = parser . parseStringAttributeValue ( index ) ; resul...
parse the context - root attribute defined in the element .
163,172
public boolean isPersistent ( ) { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "isPersistent: " + this ) ; checkTimerAccess ( ) ; checkTimerExists ( ALLOW_CACHED_TIMER_IS_PERSISTENT ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr ....
Query whether this timer has persistent semantics .
163,173
public Entry getNext ( ) { checkEntryParent ( ) ; Entry entry = null ; if ( ! isLast ( ) ) { entry = next ; } return entry ; }
Unsynchronized . Get the next entry in the list .
163,174
Entry insertAfter ( Entry newEntry ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "insertAfter" , new Object [ ] { newEntry } ) ; checkEntryParent ( ) ; if ( newEntry . parentList == null ) { Entry nextEntry = getNext ( ) ; newEntry . previous = this ; newEntry . next = nextEntry ; newEntry . parentList = pare...
Unsynchronized . Insert a new entry in after this one .
163,175
Entry remove ( ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "remove" ) ; checkEntryParent ( ) ; Entry removedEntry = null ; Entry prevEntry = getPrevious ( ) ; if ( prevEntry != null ) { prevEntry . next = next ; } Entry nextEntry = getNext ( ) ; if ( nextEntry != null ) { nextEntry . previous = prevEntry ; ...
Unsynchronized . Removes this entry from the list .
163,176
void checkEntryParent ( ) { if ( parentList == null ) { SIErrorException e = new SIErrorException ( nls . getFormattedMessage ( "INTERNAL_MESSAGING_ERROR_CWSIP0001" , new Object [ ] { "com.ibm.ws.sib.processor.utils.linkedlist.Entry" , "1:239:1.3" } , null ) ) ; FFDCFilter . processException ( e , "com.ibm.ws.sib.proce...
Unsynchronized . Check that the parent list is not null and therefore the entry is still valid . Otherwise throw a runtime exception
163,177
public Object put ( Object key , Object value ) { return localMap . put ( key , value ) ; }
2 . As with the put may need methods that use the common map for any of these other methods below but assume not for now
163,178
static Converter getValueTypeConverter ( FacesContext facesContext , UISelectMany component ) { Converter converter = null ; Object valueTypeAttr = component . getAttributes ( ) . get ( VALUE_TYPE_KEY ) ; if ( valueTypeAttr != null ) { Class < ? > valueType = getClassFromAttribute ( facesContext , valueTypeAttr ) ; if ...
Uses the valueType attribute of the given UISelectMany component to get a by - type converter .
163,179
private final void checkTopicNotNull ( String topic ) throws InvalidTopicSyntaxException { if ( topic == null ) throw new InvalidTopicSyntaxException ( NLS . format ( "INVALID_TOPIC_ERROR_CWSIH0005" , new Object [ ] { topic } ) ) ; }
null topic check
163,180
private CookieData matchAndParse ( byte [ ] data , HeaderKeys hdr ) { int pos = this . bytePosition ; int start = - 1 ; int stop = - 1 ; for ( ; pos < data . length ; pos ++ ) { byte b = data [ pos ] ; if ( '=' == b ) { break ; } if ( ';' == b || ',' == b ) { if ( - 1 == start ) { continue ; } pos -- ; break ; } if ( '...
This method matches the cookie attribute header with the pre - established Cookie header types . If a match is established the appropriate Cookie header data type is returned .
163,181
private void parseValue ( byte [ ] data , CookieData token ) { int start = - 1 ; int stop = - 1 ; int pos = this . bytePosition ; int num_quotes = 0 ; for ( ; pos < data . length ; pos ++ ) { byte b = data [ pos ] ; if ( ';' == b ) { break ; } if ( '"' == b ) { num_quotes ++ ; } if ( ',' == b ) { if ( CookieData . cook...
This method parses the cookie attribute value .
163,182
protected static JwtContext parseJwtWithoutValidation ( String jwtString ) throws Exception { JwtConsumer firstPassJwtConsumer = new JwtConsumerBuilder ( ) . setSkipAllValidators ( ) . setDisableRequireSignature ( ) . setSkipSignatureVerification ( ) . build ( ) ; JwtContext jwtContext = firstPassJwtConsumer . process ...
Just parse without validation for now
163,183
public static boolean isValidJmxPropertyValue ( String s ) { if ( ( s . indexOf ( ":" ) >= 0 ) || ( s . indexOf ( "*" ) >= 0 ) || ( s . indexOf ( '"' ) >= 0 ) || ( s . indexOf ( "?" ) >= 0 ) || ( s . indexOf ( "," ) >= 0 ) || ( s . indexOf ( "=" ) >= 0 ) ) { return false ; } else return true ; }
Does the specified string contain characters valid in a JMX key property?
163,184
public static < R > MethodResult < R > success ( R result ) { return new MethodResult < > ( result , null , false ) ; }
Create a MethodResult for a method which returned a value
163,185
public static < R > MethodResult < R > failure ( Throwable failure ) { return new MethodResult < > ( null , failure , false ) ; }
Create a MethodResult for a method which threw an exception
163,186
public static < R > MethodResult < R > internalFailure ( Throwable failure ) { return new MethodResult < R > ( null , failure , true ) ; }
Create a MethodResult for an internal exception which occurred while trying to run a method
163,187
private final void clearUnreferencedEntries ( ) { for ( WeakEntry entry = ( WeakEntry ) queue . poll ( ) ; entry != null ; entry = ( WeakEntry ) queue . poll ( ) ) { WeakEntry removedEntry = ( WeakEntry ) super . remove ( entry . key ) ; if ( removedEntry != entry ) { super . put ( entry . key , removedEntry ) ; } } }
Remove the unreferenced Entries from the map .
163,188
protected void attachBifurcatedConsumer ( BifurcatedConsumerSessionImpl consumer ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "attachBifurcatedConsumer" , consumer ) ; if ( _bifurcatedConsumers == null ) { synchronized ( this ) { if ( _bifurcatedConsumers == null )...
Adds the bifurcated consumer to the list of associated consumers .
163,189
protected void removeBifurcatedConsumer ( BifurcatedConsumerSessionImpl consumer ) throws SIResourceException , SISessionDroppedException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "removeBifurcatedConsumer" , consumer ) ; synchronized ( _bifurcatedConsumers ) { _b...
Removes the bifurcated consumer to the list of associated consumers .
163,190
void _close ( ) throws SIResourceException , SIConnectionLostException , SIErrorException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "_close" ) ; try { _localConsumerPoint . close ( ) ; } catch ( SINotPossibleInCurrentConfigurationException e ) { if ( TraceComponen...
Performs any operations required to close this consumer session but it does not modify any references which the connection might have .
163,191
void checkNotClosed ( ) throws SISessionUnavailableException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "checkNotClosed" ) ; try { synchronized ( _localConsumerPoint ) { _localConsumerPoint . checkNotClosed ( ) ; } } catch ( SISessionUnavailableException e ) { SibT...
Check that this consumer session is not closed .
163,192
protected SICoreConnection getConnectionInternal ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && CoreSPIConsumerSession . tc . isEntryEnabled ( ) ) { SibTr . entry ( CoreSPIConsumerSession . tc , "getConnectionInternal" , this ) ; SibTr . exit ( CoreSPIConsumerSession . tc , "getConnectionInternal" , _connection...
Internal getter method which bypasses the not closed check .
163,193
public long getIdInternal ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , "getIdInternal" ) ; SibTr . exit ( tc , "getIdInternal" , new Long ( _consumerId ) ) ; } return _consumerId ; }
Gets the id for the consumer without any checking .
163,194
void setId ( long id ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "setId" , new Long ( id ) ) ; _consumerId = id ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "setId" ) ; }
Sets the id for this consumer .
163,195
private static void createFactoryInstance ( ) { if ( tc . isEntryEnabled ( ) ) tc . entry ( cclass , "createFactoryInstance" ) ; try { Class cls = Class . forName ( MATCHING_CLASS_NAME ) ; instance = ( Matching ) cls . newInstance ( ) ; } catch ( Exception e ) { FFDC . processException ( cclass , "com.ibm.ws.sib.matchs...
Create the Matching instance .
163,196
public static Matching getInstance ( ) throws Exception { if ( tc . isEntryEnabled ( ) ) tc . entry ( cclass , "getInstance" ) ; if ( instance == null ) throw createException ; if ( tc . isEntryEnabled ( ) ) tc . exit ( cclass , "getInstance" , "instance=" + instance ) ; return instance ; }
Obtain a reference to the singleton Matching instance
163,197
final boolean abort ( boolean removeFromQueue , Throwable cause ) { if ( removeFromQueue && executor . queue . remove ( this ) ) executor . maxQueueSizeConstraint . release ( ) ; if ( nsAcceptEnd == nsAcceptBegin - 1 ) nsRunEnd = nsQueueEnd = nsAcceptEnd = System . nanoTime ( ) ; boolean aborted = result . compareAndSe...
Invoked to abort a task .
163,198
final void accept ( boolean runOnSubmitter ) { long time ; nsAcceptEnd = time = System . nanoTime ( ) ; if ( runOnSubmitter ) nsQueueEnd = time ; state . setSubmitted ( ) ; }
Invoked to indicate the task was successfully submitted .
163,199
public static String resolve ( WebSphereConfig14 config , String raw ) { String resolved = raw ; StringCharacterIterator itr = new StringCharacterIterator ( resolved ) ; int startCount = 0 ; int startIndex = - 1 ; char c = itr . first ( ) ; while ( c != CharacterIterator . DONE ) { if ( c == Config14Constants . EVAL_ST...
This method takes a raw value which may contain nested properties and resolves those properties into their actual values .