idx
int64
0
165k
question
stringlengths
73
4.15k
target
stringlengths
5
918
len_question
int64
21
890
len_target
int64
3
255
163,500
private void configureServerSocket ( SSLServerSocket serverSocket , SSLServerSocketFactory serverSocketFactory , String sslConfigName , OptionsKey options ) throws IOException { try { String [ ] cipherSuites = sslConfig . getCipherSuites ( sslConfigName , serverSocketFactory . getSupportedCipherSuites ( ) ) ; serverSoc...
Set the server socket configuration to our required QOS values .
457
12
163,501
private Collection < String > getRolesForSpecialSubject ( String resourceName , String specialSubject ) { int found = 0 ; Collection < String > roles = null ; FeatureAuthorizationTableService featureAuthzTableSvc = featureAuthzTableServiceRef . getService ( ) ; String featureAuthzRoleHeaderValue = null ; if ( featureAu...
Check all of the authorization table services for the resourceName . If no authorization table can be found for the resourceName null is returned . If more than one authorization table can be found for the resourceName null is returned .
320
44
163,502
private boolean isSubjectAuthorized ( String resourceName , Collection < String > requiredRoles , Subject subject ) { AccessDecisionService accessDecisionService = accessDecisionServiceRef . getService ( ) ; // check user access first boolean isGranted = false ; WSCredential wsCred = getWSCredentialFromSubject ( subjec...
Check if the Subject is authorized to the required roles for a given resource . The user is checked first and if it s not authorized then each group is checked .
232
32
163,503
private WSCredential getWSCredentialFromSubject ( Subject subject ) { if ( subject != null ) { java . util . Collection < Object > publicCreds = subject . getPublicCredentials ( ) ; if ( publicCreds != null && publicCreds . size ( ) > 0 ) { java . util . Iterator < Object > publicCredIterator = publicCreds . iterator (...
Get the WSCredential from the given Subject
144
10
163,504
private String getAccessId ( WSCredential cred ) { String accessId = null ; try { accessId = cred . getAccessId ( ) ; } catch ( CredentialExpiredException e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Caught exception getting the access id: " + e ) ; } } catch ( C...
Get the access ID from the specified credential .
163
9
163,505
@ SuppressWarnings ( "unchecked" ) private String [ ] getGroupIds ( WSCredential cred ) { Collection < String > ids = null ; if ( cred != null ) { try { ids = cred . getGroupIds ( ) ; } catch ( CredentialExpiredException e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc ...
Get the group IDs from the specified credential .
221
9
163,506
protected boolean isAllAuthenticatedGranted ( String resourceName , Collection < String > requiredRoles , Subject subject ) { Collection < String > roles = getRolesForSpecialSubject ( resourceName , AuthorizationTableService . ALL_AUTHENTICATED_USERS ) ; AccessDecisionService accessDecisionService = accessDecisionServi...
Check if the special subject ALL_AUTHENTICATED_USERS is mapped to the requiredRole .
100
22
163,507
private boolean isSubjectValid ( Subject subject ) { final WSCredential wsCred = getWSCredentialFromSubject ( subject ) ; if ( wsCred == null ) { return false ; } else { // TODO revisit this when EJBs are supported add additional // checks would be required return ! wsCred . isUnauthenticated ( ) && ! wsCred . isBasicA...
Check if the subject has a WScredential is authenticated and is not a basic auth credential .
93
20
163,508
private String getRealmName ( WSCredential cred ) { String realmName = null ; if ( cred != null ) { try { realmName = cred . getRealmName ( ) ; } catch ( Exception e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Caught exception getting the realm name: " + e ) ; } }...
Get the realm name from the specified credential .
98
9
163,509
final void init ( ) throws DiagnosticModuleRegistrationFailureException { if ( initialized ) { return ; } initialized = true ; Method [ ] methods = getClass ( ) . getMethods ( ) ; for ( Method method : methods ) { String name = method . getName ( ) . toLowerCase ( ) ; if ( name . startsWith ( FFDC_DUMP_PREFIX ) ) { Cla...
The init method is provided to subclasses to initialize this particular DiagnosticModule . Called when the diagnostic module is registered .
363
24
163,510
public final boolean dumpComponentData ( String [ ] input_directives , Throwable ex , IncidentStream ffdcis , Object callerThis , Object [ ] catcherObjects , String sourceId , String [ ] callStack ) { startProcessing ( ) ; try { ffdcis . writeLine ( "==> Performing default dump from " + getClass ( ) . getName ( ) + " "...
This method is invoked to instruct the diagnostic module to capture all relevant information that it has about a particular incident
321
21
163,511
public final void getDataForDirectives ( String [ ] directives , Throwable ex , IncidentStream ffdcis , Object callerThis , Object [ ] catcherObjects , String sourceId ) { if ( directives == null || directives . length <= 0 || ! continueProcessing ( ) ) return ; for ( String s : directives ) { String sName = s . toLowe...
Invoke all the ffdcdump methods for a set of directives
164
14
163,512
private final void invokeDiagnosticMethod ( Method m , Throwable ex , IncidentStream ffdcis , Object callerThis , Object [ ] catcherObjects , String sourceId ) { try { m . invoke ( this , new Object [ ] { ex , ffdcis , callerThis , catcherObjects , sourceId } ) ; ffdcis . writeLine ( "+ Data for directive [" + m . getN...
Invoke dump method
176
4
163,513
public final boolean validate ( ) { if ( makeNoise ( ) ) { System . out . println ( "This method is NOT intended to be called from the runtime" ) ; System . out . println ( "but is provided as part of unit test for diagnostic modules" ) ; ListIterator < Method > im ; try { init ( ) ; System . out . println ( "default d...
Validate whether the diagnostic module is correctly coded . Method can be used as a simple validation of a components diagnostic module . The information printed can be used during the development of the DM .
279
37
163,514
private boolean continueProcessing ( ) { Boolean currentValue = _continueProcessing . get ( ) ; if ( currentValue != null ) return currentValue . booleanValue ( ) ; return true ; }
Check the the ThreadLocal to see if we should continue processing this FFDC exception
41
16
163,515
public static int [ ] parseSpecStr ( String in ) { if ( in == null ) { return new int [ 0 ] ; } in = in . replaceAll ( " " , "" ) ; in = in . trim ( ) ; if ( in . length ( ) == 0 ) { return new int [ 0 ] ; } String [ ] tokens = in . split ( "," ) ; int [ ] toReturn = new int [ tokens . length ] ; for ( int i = 0 ; i < ...
Helper function to parse the configuration s spec strings .
229
10
163,516
public static SelectionCriteriaFactory getInstance ( ) { if ( _instance == null ) { synchronized ( SIDestinationAddressFactory . class ) { try { Class cls = Class . forName ( MESSAGE_SELECTOR_FACTORY_CLASS ) ; _instance = ( SelectionCriteriaFactory ) cls . newInstance ( ) ; } catch ( Exception e ) { FFDCFilter . proces...
Get the singleton SIDestinationAddressFactory which is to be used for creating SIDestinationAddress instances .
168
24
163,517
private void setValue ( Object newValue ) { try { if ( this . type == null ) value = newValue ; else if ( this . type . equals ( "java.lang.String" ) ) value = newValue ; else if ( this . type . equals ( "java.lang.Boolean" ) ) value = Boolean . valueOf ( ( String ) newValue ) ; else if ( this . type . equals ( "java.l...
should be identical to version 1 . 3 except newValue is of type Object .
371
16
163,518
public void addSelectionCriteria ( SelectionCriteria selCriteria ) throws SIDiscriminatorSyntaxException , SISelectorSyntaxException , SIResourceException { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "addSelectionCriteria" , new Object [ ] { selCriteria } ) ; // We should really check discriminator access at t...
Add an additional selection criteria to the to the subscription Duplicate selection criterias are ignored
712
18
163,519
public SelectionCriteria [ ] getSelectionCriteria ( ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "getSelectionCriteria" ) ; SelectionCriteria [ ] list = _consumerDispatcher . getConsumerDispatcherState ( ) . getSelectionCriteriaList ( ) ; if ( tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "getSelectionCriter...
List existing selection criterias registered with the subscription
105
10
163,520
public void setUserProperties ( Map userData ) throws SIResourceException { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "setUserProperties" , new Object [ ] { userData } ) ; _consumerDispatcher . getConsumerDispatcherState ( ) . setUserData ( userData ) ; Transaction tran = _messageProcessor . getTXManager ( ) ...
Store a map of user properties with a subscription The map provided on this call will replace any existing map stored with the subscription
296
24
163,521
public Map getUserProperties ( ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "getUserProperties" ) ; Map map = _consumerDispatcher . getConsumerDispatcherState ( ) . getUserData ( ) ; if ( tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "getUserProperties" , map ) ; return map ; }
Get the map currently stored with the subscription
91
8
163,522
public String getSubscriberId ( ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "getSubscriberId" ) ; String subscriberId = _consumerDispatcher . getConsumerDispatcherState ( ) . getSubscriberID ( ) ; if ( tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "getSubscriberId" , subscriberId ) ; return subscriberId ; }
Get subscriberID for this subscription
99
6
163,523
public String getWPMTopicSpaceName ( ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "getWPMTopicSpaceName" ) ; String tsName = _consumerDispatcher . getConsumerDispatcherState ( ) . getTopicSpaceName ( ) ; if ( tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "getWPMTopicSpaceName" , tsName ) ; return tsName ; }
Get WPMTopicSpaceName for this subscription
101
9
163,524
public String getMEName ( ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "getMEName" ) ; String meName = _messageProcessor . getMessagingEngineName ( ) ; if ( tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "getMEName" , meName ) ; return meName ; }
Get MEName for this subscription
83
6
163,525
@ Override public int getLocalId ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "getLocalId" ) ; int localId = 0 ; final TransactionImpl tran = ( ( TranManagerSet ) TransactionManagerFactory . getTransactionManager ( ) ) . getTransactionImpl ( ) ; if ( tran != null ) ...
Returns a process - unique identifier for the transaction currently associated with the calling thread . The local - id is valid only within the local process . The local - id is recovered as part of the state of a recovered transaction .
148
44
163,526
public static void beforeCompletion ( TransactionImpl tran , int syncLevel ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "beforeCompletion" , new Object [ ] { tran , syncLevel } ) ; if ( syncLevel >= 0 ) { final ArrayList syncs = _syncLevels . get ( syncLevel ) ; if ( ...
Notify all the registered syncs of the begin of the completion phase of the given transaction
231
18
163,527
public static void afterCompletion ( TransactionImpl tran , int status , int syncLevel ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "afterCompletion" , new Object [ ] { tran , status , syncLevel } ) ; if ( syncLevel >= 0 ) { final ArrayList syncs = _syncLevels . get (...
Notify all the registered syncs of the end of the completion phase of the given transaction . The completion resulted in the transaction having the given status .
425
30
163,528
public static boolean callbacksRegistered ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "callbacksRegistered" ) ; if ( _syncLevel < 0 ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . exit ( tc , "callbacksRegistered" , Boolean . FAL...
which can still be called otherwise false .
246
8
163,529
private static void garbageCollectUnusedLevels ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "garbageCollectUnusedLevels" ) ; final int numLevels = _syncLevels . size ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( tc , "...
Null out levels that will never be referenced again . Null entries are candidates to be the next current level .
500
21
163,530
private static void setLevel ( ArrayList level ) { _syncLevel = nextLevel ( ) ; if ( _syncLevel == _syncLevels . size ( ) ) { _syncLevels . add ( level ) ; } else { _syncLevels . set ( _syncLevel , level ) ; } }
Utility method to make a list into the new current level
65
12
163,531
private void validateParameters ( String filePath , String password , int validity , String subjectDN , int keySize , String sigAlg ) { if ( ! validateFilePath ( filePath ) ) { throw new IllegalArgumentException ( "filePath must be a valid filePath within the file system." ) ; } if ( password == null || password . leng...
Validate the parameters .
400
5
163,532
private boolean validateFilePath ( String filePath ) { if ( filePath == null || filePath . isEmpty ( ) ) { throw new IllegalArgumentException ( "filePath must be a valid filePath within the file system." ) ; } // Check if the filename exists as a File -- use an absolute file to ensure we have // a parent: even if that ...
The specified filePath must either exist or in the case the file should be created its parent directory .
123
20
163,533
public < K2 extends K , E2 extends E > BlockingList < K2 , E2 > make ( ) { @ SuppressWarnings ( "unchecked" ) BlockingListMaker < K2 , E2 > stricterThis = ( BlockingListMaker < K2 , E2 > ) this ; return stricterThis . internalCreateBlockingList ( ) ; }
Construct a list
80
3
163,534
public BlockingListMaker < K , E > log ( Logger logger ) { this . logger = logger == null ? NULL_LOGGER : logger ; return this ; }
Define the logger to use to log interesting events within the list
36
13
163,535
public BlockingListMaker < K , E > waitFor ( long time , TimeUnit unit ) { this . nanoTimeout = time == 0 ? 1 : NANOSECONDS . convert ( time , unit ) ; return this ; }
Specify the total time to wait for the elements of the list to become available
50
16
163,536
public String getSystemMessageId ( ) { //based on com.ibm.ws.sib.mfp.impl.JsHdrsImpl if ( uuid != null ) { StringBuilder buff = new StringBuilder ( uuid . toString ( ) ) ; buff . append ( MfpConstants . MESSAGE_HANDLE_SEPARATOR ) ; buff . append ( value ) ; return new String ( buff ) ; } else { return null ; } }
Returns the SIMessageHandles System Message ID .
102
10
163,537
private void processExistingWSDL ( String wsdlLocation , Member newMember ) throws InjectionException { // if the wsdlLocation for this service reference is specified in the DD, log a debug statement and continue if ( wsrInfo . getWsdlLocation ( ) != null && ! "" . equals ( wsrInfo . getWsdlLocation ( ) ) ) { if ( tc ....
This will compare the wsdlLocation attribute of the various annotations that have refer to the same service reference . If they differ we will throw an exception as the runtime will not be able to determine which WSDL to use . We will only do this checking if there was not a WSDL location specified in the deployment de...
270
86
163,538
public int compare ( Object o1 , Object o2 ) { String re1 = ( ( ConnectionStatus ) o1 ) . getRemoteEngineName ( ) ; String re2 = ( ( ConnectionStatus ) o2 ) . getRemoteEngineName ( ) ; return re1 . compareTo ( re2 ) ; }
If o1 comes after o2 return 1
65
9
163,539
public synchronized void put ( byte item ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "put" , Byte . valueOf ( item ) ) ; checkValid ( ) ; getCurrentByteBuffer ( 1 ) . put ( item ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) ...
Puts a single byte into the byte buffer .
108
10
163,540
public synchronized void putShort ( short item ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "putShort" , Short . valueOf ( item ) ) ; checkValid ( ) ; getCurrentByteBuffer ( 2 ) . putShort ( item ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEn...
Puts a short into the byte buffer .
112
9
163,541
public synchronized void putInt ( int item ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "putInt" , Integer . valueOf ( item ) ) ; checkValid ( ) ; getCurrentByteBuffer ( 4 ) . putInt ( item ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEna...
Puts an int into the byte buffer .
112
9
163,542
public synchronized void putLong ( long item ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "putLong" , Long . valueOf ( item ) ) ; checkValid ( ) ; getCurrentByteBuffer ( 4 ) . putLong ( item ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEn...
Puts a long into the byte buffer .
112
9
163,543
public synchronized void setReadOnly ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "setReadOnly" ) ; // And actually mark the real buffers as read-only too for ( int x = 0 ; x < dataList . size ( ) ; x ++ ) { WsByteBuffer buff = dataList . get ( x ) ; buff ...
This method sets all the byte buffers that we have in the list as read only .
142
17
163,544
public synchronized long prepareForTransmission ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "prepareForTransmission" ) ; checkValid ( ) ; valid = false ; // Get the last buffer and flip it. Then we can simply return the list of buffers if ( dataList . siz...
This method prepares the byte buffers wrapped by this class for transmission . In practise this means that all the buffers are flipped and the number of bytes that will be transmitted is returned .
221
35
163,545
public synchronized WsByteBuffer [ ] getBuffersForTransmission ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getBufferForTransmission" ) ; // Ensure the buffer has been prepared checkNotValid ( ) ; WsByteBuffer [ ] bufferArray = new WsByteBuffer [ dataList...
This method is called just before this buffer is due to be transmitted by the JFap channel . When calling this method the underlying byte buffer is prepared by setting the correct limits and the buffer is added to a List that is returned . Once this method is called the buffer may not be used again and any attempt to m...
176
83
163,546
protected WsByteBuffer getCurrentByteBuffer ( int sizeNeeded ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getCurrentByteBuffer" , Integer . valueOf ( sizeNeeded ) ) ; WsByteBuffer byteBuffer = null ; // First have a look in the dataList for a buffer. if ( d...
This method will return a byte buffer that can be written to for the amount of data that needs to be written . If there is no room left in the current byte buffer a new one will be created and added to the list .
479
46
163,547
private WsByteBuffer createNewWsByteBuffer ( int sizeNeeded ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "createNewWsByteBuffer" , Integer . valueOf ( sizeNeeded ) ) ; if ( sizeNeeded < DEFAULT_BUFFER_SIZE ) { sizeNeeded = DEFAULT_BUFFER_SIZE ; } if ( TraceC...
This method will create a new WsByteBuffer . By default it will be created to hold 200 bytes but if the size needed is larger than this then the buffer will simply be allocated to hold the exact number of bytes requested .
203
46
163,548
public synchronized String getDumpReceivedBytes ( int bytesToDump ) { String dump = null ; if ( receivedBuffer != null ) { dump = getDumpBytes ( receivedBuffer , bytesToDump , false ) ; } return dump ; }
Returns the String that represents a dump of the bytes received in this comms byte buffer . This method is not intended to be used for buffers that are being contructed for outbound use .
53
39
163,549
private static String getDumpBytes ( WsByteBuffer buffer , int bytesToDump , boolean rewind ) { // Save the current position int pos = buffer . position ( ) ; if ( rewind ) { buffer . rewind ( ) ; } byte [ ] data = null ; int start ; int count = bytesToDump ; if ( count > buffer . remaining ( ) || count == ENTIRE_BUFFE...
Returns a dump of the specified number of bytes of the specified buffer .
224
14
163,550
private int getIntKeyForString ( ArrayList < String > uniqueStrings , Object value ) { String stringValue = String . valueOf ( value ) ; int retval = uniqueStrings . indexOf ( stringValue ) ; if ( retval < 0 ) { retval = uniqueStrings . size ( ) ; uniqueStrings . add ( stringValue ) ; } return retval ; }
Helper method to get or assign a unique key to a string from an ArrayList containing the unique keys .
83
21
163,551
public static void writeObjectInstanceOutput ( final RESTResponse response , final ObjectInstanceWrapper value , final JSONConverter converter ) { response . setContentType ( APIConstants . MEDIA_TYPE_APPLICATION_JSON ) ; OutputStream outStream = null ; try { outStream = response . getOutputStream ( ) ; //Converter the...
Write ObjectInstanceWrapper to the response
173
8
163,552
public static StatsGroup createStatsGroup ( String groupName , String statsTemplate , StatsGroup parentGroup , ObjectName mBean , StatisticActions actionLsnr ) throws StatsFactoryException { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , new StringBuffer ( "createStatsGroup:name=" ) . append ( groupName ) . append ( ...
Create a StatsGroup using the Stats template and add to the PMI tree under the specified parent group . This method will associate the MBean provided by the caller to the Stats group .
280
38
163,553
public static void removeStatsInstance ( StatsInstance instance ) throws StatsFactoryException { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , new StringBuffer ( "removeStatsInstance:name=" ) . append ( instance . getName ( ) ) . toString ( ) ) ; StatsFactoryUtil . unRegisterStats ( ( PmiModule ) instance , instance...
Removes a StatsInstance from the PMI tree . Note that any children under the instance will also be removed . If the instance is associated with a default CustomStats MBean the MBean will be de - activated .
111
46
163,554
public static void removeStatsGroup ( StatsGroup group ) throws StatsFactoryException { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , new StringBuffer ( "removeStatsGroup:name=" ) . append ( group . getName ( ) ) . toString ( ) ) ; StatsFactoryUtil . unRegisterStats ( ( PmiModule ) group , group . getMBean ( ) ) ; i...
Removes a StatsGroup from the PMI tree . Note that any children under the group will also be removed . If the group is associated with a default CustomStats MBean the MBean will be de - activated .
111
46
163,555
@ Override protected Validator createValidator ( ) throws JspException { if ( null == _minimum && null == _maximum ) { throw new JspException ( "a minimum and / or a maximum have to be specified" ) ; } ELContext elContext = FacesContext . getCurrentInstance ( ) . getELContext ( ) ; if ( null != _minimum ) { _min = getV...
This method returns the Validator you have to cast it to the correct type and apply the min and max values .
178
23
163,556
private String incrementAlias ( KeyStore jKeyStore , String alias ) throws KeyStoreException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "incrementAlias: " + alias ) ; int num = 0 ; String base ; int index = alias . lastIndexOf ( ' ' ) ; if ( - 1 == index ) { // no und...
Increment the trailing number on the alias value until one is found that does not currently exist in the input store .
286
23
163,557
public String getUserName ( boolean notAlternateUser ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "getUserName" , new Object [ ] { new Boolean ( notAlternateUser ) } ) ; String userName = null ; if ( ! notAlternateUser // this catches the case where we want the // user associated with the subject && isAltern...
Extract the appropriate username from this security context
209
9
163,558
public boolean isSIBServerSubject ( ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "isSIBServerSubject" ) ; boolean ispriv = false ; // If the context is userid or alternate user based then it cannot be the // privileged SIBServerSubject, so we only need to check the Subject and // msg based contexts. if ( isS...
Check whether this security context belongs to the privileged SIBServerSubject or not .
196
16
163,559
@ Override public void complete ( VirtualConnection vc , TCPWriteRequestContext wsc ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "complete() called: vc=" + vc ) ; } HttpInboundServiceContextImpl mySC = ( HttpInboundServiceContextImpl ) vc . getStateMap ( ) . get ( C...
Called by the channel below us when a write has finished .
526
13
163,560
@ Override public void error ( VirtualConnection vc , TCPWriteRequestContext wsc , IOException ioe ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "error called: vc=" + vc + " ioe=" + ioe ) ; } HttpInboundServiceContextImpl mySC = ( HttpInboundServiceContextImpl ) vc ....
Called by the channel below us when an error occurs during a write .
280
15
163,561
@ Deactivate protected void deactivate ( int reason ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEventEnabled ( ) ) { Tr . event ( tc , "Deactivating " + this , "reason=" + reason ) ; } // purge cached data from config this . cachedEncoding = null ; this . cachedLocale = null ; this . localeMap . clear (...
DS deactivation method for this component .
119
8
163,562
private List < List < String > > processAcceptLanguage ( String acceptLanguage ) { StringTokenizer languageTokenizer = new StringTokenizer ( acceptLanguage , "," ) ; TreeMap < Double , List < String > > map = new TreeMap < Double , List < String > > ( Collections . reverseOrder ( ) ) ; List < String > list ; while ( la...
Processes the accept language header into a sublists based on the qvalue . Each sublist is a list of string values for a given qvalue and the overall list is ordered with preferred languages first .
392
41
163,563
private List < Locale > extractLocales ( List < List < String > > allLangs ) { List < Locale > rc = new ArrayList < Locale > ( ) ; for ( List < String > langList : allLangs ) { for ( String language : langList ) { String country = "" ; String variant = "" ; int countryIndex = language . indexOf ( ' ' ) ; if ( countryIn...
Extract the locales from a passed in language list .
219
12
163,564
public Token getMetaDataToken ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( this , tc , "getMetaDataToken" ) ; SibTr . exit ( this , tc , "getMetaDataToken" , "return=" + _metaDataToken ) ; } return _metaDataToken ; }
startup of the message store
84
6
163,565
public void updateMetaDataOnly ( Transaction tran , Persistable persistable ) throws PersistenceException , ObjectManagerException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "updateMetaDataOnly" , new Object [ ] { "Tran=" + tran , "Persistable=" + persistabl...
Only update the persistent copy of the meta data associated with this Persistable . This variant is for a cached persistable in which the lock ID has been cached by the task .
287
36
163,566
@ Override public java . util . List < DataSlice > getData ( ) throws PersistentDataEncodingException , SevereMessageStoreException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getData" ) ; java . util . List < DataSlice > retval = null ; synchronized ( this ...
This method is used by the task layer to get hold of data from the cache layer before it is hardened to disk . It should therefore return the data from the Item and not that from the ManagedObject .
160
42
163,567
@ Override public void setWasSpillingAtAddition ( boolean wasSpillingAtAddition ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "setWasSpillingAtAddition" , Boolean . valueOf ( wasSpillingAtAddition ) ) ; _wasSpillingAtAddition = wasSpillingAtAddition ; if ( Tr...
we need to correctly track the value of this flag .
135
11
163,568
public void setWriter ( Object sysLogHolder , Object sysErrHolder ) { this . sysOutHolder = ( SystemLogHolder ) sysLogHolder ; this . sysErrHolder = ( SystemLogHolder ) sysErrHolder ; }
Set the writers for SystemOut and SystemErr respectfully
58
11
163,569
public static SecurityMetadata getSecurityMetadata ( ) { SecurityMetadata secMetadata = null ; ModuleMetaData mmd = ComponentMetaDataAccessorImpl . getComponentMetaDataAccessor ( ) . getComponentMetaData ( ) . getModuleMetaData ( ) ; if ( mmd instanceof WebModuleMetaData ) { secMetadata = ( SecurityMetadata ) ( ( WebMo...
Get the security metadata
162
4
163,570
public CompoundName getFirstInChain ( ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "getFirstInChain" ) ; CompoundName firstInChain = collector . getFirst ( ) ; if ( tc . isEntryEnabled ( ) ) SibTr . exit ( tc , "getFirstInChain" , firstInChain ) ; return firstInChain ; }
Get the first compound name in any alias chain we re validating .
87
14
163,571
public void validate ( String destName , String busName ) throws SINotPossibleInCurrentConfigurationException { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "validate" , new Object [ ] { destName , busName } ) ; if ( collector . contains ( destName , busName ) ) { // Throw out exception detailing loop // Add the...
Check that the given destination busname combination has not been seen before when resolving an alias . If it has not been seen we add it to the map for checking next time .
290
35
163,572
public String toStringPlus ( String destName , String busName ) { StringBuffer sb = new StringBuffer ( toString ( ) ) ; // Add the destination name which has triggered the exception to the end // of the list, making the problem obvious. String compoundName = new CompoundName ( destName , busName ) . toString ( ) ; sb ....
Return a string representation of the alias chain appended with the destination name given .
103
16
163,573
private void initialize ( final File logDirectory , final String aaplName ) { if ( logDirectory == null ) { captureEnabled = false ; return ; } AccessController . doPrivileged ( new PrivilegedAction < Void > ( ) { @ Override public Void run ( ) { // Create a new or reuse an existing base capture directory String captur...
Determines the existence of the server log directory and attempts to create a capture directory within the log directory . If this can be accomplished the field captureEnabled is set to true . Otherwise it is left to its default value false if the capture directory cannot be used .
266
53
163,574
private static boolean resourceExist ( ExternalContext externalContext , String path ) { if ( "/" . equals ( path ) ) { // The root context exists always return true ; } Object ctx = externalContext . getContext ( ) ; if ( ctx instanceof ServletContext ) { ServletContext servletContext = ( ServletContext ) ctx ; InputS...
doesnt exist . Otherwise the URL will fail on the first access .
140
14
163,575
public synchronized void addSlice ( CommsByteBuffer bufferContainingSlice , boolean last ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "addSlice" , new Object [ ] { bufferContainingSlice , last } ) ; slices . add ( bufferContainingSlice . getDataSlice ( ) ) ;...
This method will add a data slice to the list of slices for this message .
222
16
163,576
public void updateArrivalTime ( long messageArrivalTime ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "updateMessageArrivalTime" , messageArrivalTime ) ; this . arrivalTime = messageArrivalTime ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEn...
Used to update the message arrival time for this data .
110
11
163,577
public void stop ( int requestNumber , SendListener sendListener ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "stop" , requestNumber ) ; logicallyStarted = false ; super . stop ( requestNumber , sendListener ) ; if ( TraceComponent . isAnyTracingEnabled ( ) ...
Stops the session and marks it as stopped .
107
10
163,578
public void close ( int requestNumber ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "close" , requestNumber ) ; // Deregister any error callback created for this connection. if ( asynchReader != null ) { try { mainConsumer . getConsumerSession ( ) . getConnec...
Closes the session . If we are currently doing a receiveWithWait then that will be interrupted and a response will be sent to the client .
310
29
163,579
public void setAsynchConsumerCallback ( int requestNumber , int maxActiveMessages , long messageLockExpiry , int batchsize , OrderingContext orderContext ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "setAsynchConsumerCallback" , new Object [ ] { requestNumbe...
This will cause the synchronous session to become asynchrnous . As such this class will not handle the session anymore so we inform the main consumer and that will then switch over the delegated class to handle the consumer .
177
45
163,580
@ Override public void postConstruct ( Object instance , Object creationMetaData ) throws InjectionProviderException { // TODO the servlet spec is not clear about searching in superclass?? Class clazz = instance . getClass ( ) ; Method [ ] methods = getDeclaredMethods ( clazz ) ; if ( methods == null ) { methods = claz...
Call postConstruct method on the specified instance .
378
9
163,581
private WebSphereCDIDeployment createWebSphereCDIDeployment ( Application application , Set < ExtensionArchive > extensionArchives ) throws CDIException { WebSphereCDIDeployment webSphereCDIDeployment = new WebSphereCDIDeploymentImpl ( application , cdiRuntime ) ; DiscoveredBdas discoveredBdas = new DiscoveredBdas ( we...
This method creates the Deployment structure with all it s BDAs .
293
14
163,582
private void addRuntimeExtensions ( WebSphereCDIDeployment webSphereCDIDeployment , DiscoveredBdas discoveredBdas ) throws CDIException { //add the normal runtime extension using the bundle classloader to load the bda classes Set < WebSphereBeanDeploymentArchive > extensions = createExtensionBDAs ( webSphereCDIDeployme...
Create a BDA for each runtime extension and add it to the deployment .
236
15
163,583
private Set < WebSphereBeanDeploymentArchive > createExtensionBDAs ( WebSphereCDIDeployment applicationContext ) throws CDIException { Set < WebSphereBeanDeploymentArchive > extensionBdas = new HashSet < WebSphereBeanDeploymentArchive > ( ) ; Set < ExtensionArchive > extensions = getExtensionArchives ( ) ; if ( extensi...
Create BDAs for all runtime extensions that cannot see application bdas
157
14
163,584
private void processModules ( WebSphereCDIDeployment applicationContext , DiscoveredBdas discoveredBdas , Collection < CDIArchive > moduleArchives ) throws CDIException { List < WebSphereBeanDeploymentArchive > moduleBDAs = new ArrayList < WebSphereBeanDeploymentArchive > ( ) ; for ( CDIArchive archive : moduleArchives...
Create BDAs for either the EJB Web or Client modules and any libraries they reference on their classpath .
421
22
163,585
private synchronized Set < ExtensionArchive > getExtensionArchives ( ) throws CDIException { if ( runtimeExtensionSet == null ) { runtimeExtensionSet = new HashSet < ExtensionArchive > ( ) ; // get hold of the container for extension bundle //add create the bean deployment archive from the container Iterator < ServiceA...
Returns the extension container info with ContainerInfo classloader and container name
612
13
163,586
public int compareEntitysWithRespectToProperties ( Entity entity1 , Entity entity2 ) { List < SortKeyType > sortKeys = sortControl . getSortKeys ( ) ; int temp = 0 ; for ( int i = 0 ; i < sortKeys . size ( ) && temp == 0 ; i ++ ) { SortKeyType sortKey = ( SortKeyType ) sortKeys . get ( i ) ; String propName = sortKey ....
Compares the two entity data objects .
191
8
163,587
public List < Entity > sortEntities ( List < Entity > entities ) { if ( entities != null && entities . size ( ) > 0 ) { Entity [ ] ents = ( Entity [ ] ) entities . toArray ( new Entity [ entities . size ( ) ] ) ; WIMSortCompare < Entity > wimSortComparator = new WIMSortCompare < Entity > ( sortControl ) ; Arrays . sort...
Sorts the set of Member Objects
140
7
163,588
@ Override public void encodeBegin ( FacesContext context ) throws IOException { _initialDescendantComponentState = null ; if ( _isValidChilds && ! hasErrorMessages ( context ) ) { // Clear the data model so that when rendering code calls // getDataModel a fresh model is fetched from the backing // bean via the value-b...
Perform necessary actions when rendering of this component starts before delegating to the inherited implementation which calls the associated renderer s encodeBegin method .
159
28
163,589
private void processColumnFacets ( FacesContext context , int processAction ) { for ( int i = 0 , childCount = getChildCount ( ) ; i < childCount ; i ++ ) { UIComponent child = getChildren ( ) . get ( i ) ; if ( child instanceof UIColumn ) { if ( ! _ComponentUtils . isRendered ( context , child ) ) { // Column is not v...
Invoke the specified phase on all facets of all UIColumn children of this component . Note that no methods are called on the UIColumn child objects themselves .
144
35
163,590
private void processColumnChildren ( FacesContext context , int processAction ) { int first = getFirst ( ) ; int rows = getRows ( ) ; int last ; if ( rows == 0 ) { last = getRowCount ( ) ; } else { last = first + rows ; } for ( int rowIndex = first ; last == - 1 || rowIndex < last ; rowIndex ++ ) { setRowIndex ( rowInd...
Invoke the specified phase on all non - facet children of all UIColumn children of this component . Note that no methods are called on the UIColumn child objects themselves .
253
38
163,591
public void setRows ( int rows ) { if ( rows < 0 ) { throw new IllegalArgumentException ( "rows: " + rows ) ; } getStateHelper ( ) . put ( PropertyKeys . rows , rows ) ; }
Set the maximum number of rows displayed in the table .
50
11
163,592
@ JSFProperty ( literalOnly = true , faceletsOnly = true ) public boolean isRowStatePreserved ( ) { Boolean b = ( Boolean ) getStateHelper ( ) . get ( PropertyKeys . rowStatePreserved ) ; return b == null ? false : b . booleanValue ( ) ; }
Indicates whether the state for a component in each row should not be discarded before the datatable is rendered again .
64
23
163,593
@ Override public List < String > getManagedObjects ( ) { ArrayList < String > managedObjects = new ArrayList < String > ( ) ; if ( this . application != null ) { managedObjects . addAll ( application . getManagedObjects ( ) ) ; } if ( this . factory != null ) { managedObjects . addAll ( factory . getManagedObjects ( )...
This method is only called from jsf 2 . 2
126
11
163,594
public long getLastModified ( ) { if ( matchedEntry != null ) { return matchedEntry . getLastModified ( ) ; } else if ( matchedZipFile != null ) { return matchedZipFile . getLastModified ( ) ; } else if ( matchedFile != null ) { return matchedFile . lastModified ( ) ; } else { return 0 ; } }
Get the last modified date of the appropriate matched item
79
10
163,595
public void expiryAlarm ( AORequestedTick requestedTick ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "expiryAlarm" , requestedTick ) ; boolean transitionOccured = false ; ArrayList < AORequestedTick > satisfiedTicks = null ; try { this . lock ( ) ; try { // it is p...
Callback from the AORequestedTick when the expiry alarm occurs .
443
16
163,596
public void alarm ( Object thandle ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "alarm" , thandle ) ; boolean doClose = false ; // We're probably about to close this consumer, which needs us to remove it from the AOStream's // consciousness first (so that it doesn'...
The idle timeout has expired
555
5
163,597
public void cleanup ( ) { cleanupLock . lock ( ) ; try { // Clean up the write interface. if ( null != writeInterface ) { this . writeInterface . close ( ) ; this . writeInterface = null ; } // Clean up the read interface. if ( null != readInterface ) { this . readInterface . close ( ) ; this . readInterface = null ; }...
This method is called from both close and destroy to clean up local resources . Avoid object synchronization but ensure only one thread does cleanup at a time .
202
29
163,598
protected void readyInboundPostHandshake ( WsByteBuffer netBuffer , WsByteBuffer decryptedNetBuffer , WsByteBuffer encryptedAppBuffer , HandshakeStatus hsStatus ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "readyInboundPostHandshake, vc=" + getVCHash ( ) ) ; } // Re...
This method is called after the SSL handshake has taken place .
685
12
163,599
private void readyOutbound ( VirtualConnection inVC , boolean async ) throws IOException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { Tr . entry ( tc , "readyOutbound, vc=" + getVCHash ( ) ) ; } final SSLChannelData config = this . sslChannel . getConfig ( ) ; // Encrypted buffer from ...
Handle work required by the ready method for outbound connections . When called the outbound socket has been established . Establish the SSL connection before reporting to the next channel . Note this method is called in both sync and async flows .
712
46