idx int64 0 165k | question stringlengths 73 5.81k | target stringlengths 5 918 |
|---|---|---|
163,000 | static Class < ? > getTypeFromMember ( Member member ) throws InjectionException { Class < ? > memberType = null ; if ( member instanceof Field ) { memberType = ( ( Field ) member ) . getType ( ) ; } else if ( member instanceof Method ) { Method method = ( Method ) member ; if ( method . getParameterTypes ( ) == null |... | This returns the type of the injection being requested based on either the annotated field or annotated method . |
163,001 | public static void sendExceptionToClient ( Throwable throwable , String probeId , Conversation conversation , int requestNumber ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "sendExceptionToClient" , new Object [ ] { throwable , probeId , conversation , requestNumbe... | Sends an exception response back to the client . |
163,002 | public static void sendAsyncExceptionToClient ( Throwable throwable , String probeId , short clientSessionId , Conversation conversation , int requestNumber ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "sendAsyncExceptionToClient" , new Object [ ] { throwable , pro... | This method is used to flow a message down to the client that will get picked up and delivered to the asynchronousException method of any listeners that the client has registered . |
163,003 | public static void sendSessionCreateResponse ( int segmentType , int requestNumber , Conversation conversation , short sessionId , DestinationSession session , SIDestinationAddress originalDestinationAddr ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "sendSessionCre... | Because of the larger amount of data needed to be sent back on the response to a session create I have split this into a seperate method so that we are not repeating code all over the place . |
163,004 | private static JavaDumper createInstance ( ) { try { Class < ? > dumpClass = Class . forName ( "com.ibm.jvm.Dump" ) ; try { Class < ? > [ ] paramTypes = new Class < ? > [ ] { String . class } ; Method javaDumpToFileMethod = dumpClass . getMethod ( "javaDumpToFile" , paramTypes ) ; Method heapDumpToFileMethod = dumpClas... | Create a dumper for the current JVM . |
163,005 | private Map < String , String > filterProps ( Map < String , Object > props ) { HashMap < String , String > filteredProps = new HashMap < > ( ) ; Iterator < String > it = props . keySet ( ) . iterator ( ) ; boolean debug = tc . isDebugEnabled ( ) && TraceComponent . isAnyTracingEnabled ( ) ; while ( it . hasNext ( ) ) ... | given the map of properties remove ones we don t care about and translate some others . If it s not one we re familiar with transfer it unaltered |
163,006 | private String validateAuthn ( String value ) { String result = null ; String valueLower = value . toLowerCase ( ) ; do { if ( valueLower . equals ( "saml" ) ) { result = JAXRSClientConstants . SAML_HANDLER ; break ; } if ( valueLower . equals ( "oauth" ) ) { result = JAXRSClientConstants . OAUTH_HANDLER ; break ; } if... | validate the value for authnToken key and select appropriate new key Note that the check is not case sensitive . |
163,007 | private String getURI ( Map < String , Object > props ) { if ( props == null ) return null ; if ( props . keySet ( ) . contains ( URI ) ) { return ( props . get ( URI ) . toString ( ) ) ; } else { return null ; } } | find the uri parameter which we will key off of |
163,008 | private static XMLInputFactory getXMLInputFactory ( ) { if ( SAFE_INPUT_FACTORY != null ) { return SAFE_INPUT_FACTORY ; } XMLInputFactory f = NS_AWARE_INPUT_FACTORY_POOL . poll ( ) ; if ( f == null ) { f = createXMLInputFactory ( true ) ; } return f ; } | Return a cached namespace - aware factory . |
163,009 | public static void copy ( XMLStreamReader reader , XMLStreamWriter writer ) throws XMLStreamException { copy ( reader , writer , false , false ) ; } | Copies the reader to the writer . The start and end document methods must be handled on the writer manually . |
163,010 | public static QName readQName ( XMLStreamReader reader ) throws XMLStreamException { String value = reader . getElementText ( ) ; if ( value == null ) { return null ; } value = value . trim ( ) ; int index = value . indexOf ( ":" ) ; if ( index == - 1 ) { return new QName ( value ) ; } String prefix = value . substring... | Reads a QName from the element text . Reader must be positioned at the start tag . |
163,011 | public boolean addReference ( ServiceReference < T > reference ) { if ( reference == null ) return false ; ConcurrentServiceReferenceElement < T > element = new ConcurrentServiceReferenceElement < T > ( referenceName , reference ) ; synchronized ( elementMap ) { ConcurrentServiceReferenceElement < T > oldElement = elem... | Adds the service reference to the set or notifies the set that the service ranking for the reference might have been updated . |
163,012 | public boolean removeReference ( ServiceReference < T > reference ) { synchronized ( elementMap ) { ConcurrentServiceReferenceElement < T > element = elementMap . remove ( reference ) ; if ( element == null ) { return false ; } elementSet . remove ( element ) ; return true ; } } | Removes the service reference from the set |
163,013 | private Iterator < ConcurrentServiceReferenceElement < T > > elements ( ) { Collection < ConcurrentServiceReferenceElement < T > > set ; synchronized ( elementMap ) { if ( elementSetUnsorted ) { elementSet = new ConcurrentSkipListSet < ConcurrentServiceReferenceElement < T > > ( elementMap . values ( ) ) ; elementSetUn... | Return an iterator for the elements in service ranking order . |
163,014 | public void setChannelData ( ChannelData data ) throws ChannelException { this . channelData = data ; setValues ( data . getPropertyBag ( ) ) ; if ( tc . isDebugEnabled ( ) ) outputConfigToTrace ( ) ; } | Update the configuration with a new channel framework configuration object . |
163,015 | public void setChannelReceiveBufferSize ( int size ) { this . channelReceiveBufferSize = size ; if ( size < 0 || size > UDPConfigConstants . MAX_UDP_PACKET_SIZE ) { if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "Channel Receive buffer size not within Limits: " + size + " setting to default: " + UDPConfigConstants ... | Set the size of the bytebuffer to allocate when receiving data . |
163,016 | public void addSICoreConnection ( SICoreConnection conn , Conversation conversation ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "addSICoreConnection" ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { SibTr . debug ( tc , "Params: con... | Creates a new SICoreConnection that this listener is listening for events from . |
163,017 | public void asynchronousException ( ConsumerSession session , Throwable e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "asynchronousException" , new Object [ ] { session , e } ) ; FFDCFilter . processException ( e , CLASS_NAME + ".asynchronousException" , CommsCons... | This event is generated if an exception is thrown during the processing of an asynchronous callback . In practise this should never occur as we should ensure that we catch all the errors in the place they occur as no state is available here . |
163,018 | public void meTerminated ( SICoreConnection conn ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "meTerminated" ) ; final Conversation conversation = conversationTable . get ( conn ) ; if ( conversation != null ) { final ConversationState convState = ( ConversationSta... | This method is called when the ME terminates . |
163,019 | public void commsFailure ( SICoreConnection conn , SIConnectionLostException e ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "commsFailure" , new Object [ ] { conn , e } ) ; FFDCFilter . processException ( e , CLASS_NAME + ".commsFailure" , CommsConstants . SERVERSI... | This is used to indicate a communication failure on the client . Seeing as we are the only people who would ever generate this event for the client if this gets invoked on the server then someone has done something not bad not even wrong but silly . |
163,020 | public String getRequestURL ( ) { HttpServletRequest httpReq = getRequest ( ) ; if ( httpReq == null ) return null ; else return httpReq . getRequestURL ( ) . toString ( ) ; } | Get the URL of this invocation . |
163,021 | public HttpServletRequest getRequest ( ) { ServletRequest sReq = null ; if ( _req == null ) return null ; try { sReq = ServletUtil . unwrapRequest ( _req ) ; } catch ( RuntimeException re ) { if ( com . ibm . ejs . ras . TraceComponent . isAnyTracingEnabled ( ) && logger . isLoggable ( Level . FINE ) ) logger . logp ( ... | Get the request used for the servlet invocation . |
163,022 | public HttpServletResponse getResponse ( ) { ServletResponse sRes = null ; if ( _resp == null ) return null ; try { sRes = ServletUtil . unwrapResponse ( _resp ) ; } catch ( RuntimeException re ) { if ( com . ibm . ejs . ras . TraceComponent . isAnyTracingEnabled ( ) && logger . isLoggable ( Level . FINE ) ) logger . l... | Get the response used for the servlet invocation . |
163,023 | public boolean isAvailableInPlatform ( String p ) { if ( this . platform . equals ( PLATFORM_ALL ) ) return true ; else return ( this . platform . equals ( p ) ) ; } | Return true if this statistic is available in the given platform |
163,024 | protected byte [ ] loadClassDataFromFile ( String fileName ) { byte [ ] classBytes = null ; try { InputStream in = getResourceAsStream ( fileName ) ; if ( in == null ) { return null ; } ByteArrayOutputStream baos = new ByteArrayOutputStream ( ) ; byte buf [ ] = new byte [ 1024 ] ; for ( int i = 0 ; ( i = in . read ( bu... | Load JSP class data from file . |
163,025 | private final Object typeCheck ( Object value , int type ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . debug ( this , tc , "typecheck: value = " + value + ", " + value . getClass ( ) + " , type=" + type ) ; switch ( type ) { case Selector . UNKNOWN : return value ; case Selector... | Check the type of the value obtained from the message . |
163,026 | final Serializable restoreMapObject ( byte [ ] mapItemArray ) throws IOException , ClassNotFoundException { Serializable item = null ; ; if ( ( mapItemArray [ 0 ] == HEADER_BYTE_0 ) && ( mapItemArray [ 1 ] == HEADER_BYTE_1 ) ) { item = new byte [ mapItemArray . length - 2 ] ; System . arraycopy ( mapItemArray , 2 , ite... | Restore an item retrieved from a Property or SystemContext map as a byte array into whatever it originally was . |
163,027 | final void setTransportVersion ( Object value ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "setTransportVersion" , value ) ; getHdr2 ( ) . setField ( JsHdr2Access . TRANSPORTVERSION_DATA , value ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEnt... | Set the transportVersion field in the message header to the given value . This method is package visibility as it is also used by JsJmsMessageImpl |
163,028 | final void clearTransportVersion ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "clearTransportVersion" ) ; getHdr2 ( ) . setChoiceField ( JsHdr2Access . TRANSPORTVERSION , JsHdr2Access . IS_TRANSPORTVERSION_EMPTY ) ; if ( TraceComponent . isAnyTracingEnable... | Clear the transportVersion field in the message header . This method is package visibility as it is also used by JsJmsMessageImpl |
163,029 | public Object getInstanceOf ( String key ) { try { ClassLoader loader = Thread . currentThread ( ) . getContextClassLoader ( ) ; return Class . forName ( ( String ) classesMap . get ( key ) , true , loader ) . newInstance ( ) ; } catch ( IllegalAccessException e ) { logger . logp ( Level . SEVERE , "JspClassFactory" , ... | Creates an instance of the type of class specified by the key arg dependent on the value stored in the classesMap . |
163,030 | static ImmutableAttributes loadAttributes ( String repoType , File featureFile , ProvisioningDetails details ) throws IOException { details . ensureValid ( ) ; String symbolicName = details . getNameAttribute ( null ) ; int featureVersion = details . getIBMFeatureVersion ( ) ; Visibility visibility = Visibility . fromS... | Create the ImmutableAttributes based on the contents read from a subsystem manifest . |
163,031 | static ImmutableAttributes loadAttributes ( String line , ImmutableAttributes cachedAttributes ) { int index = line . indexOf ( '=' ) ; String key = line . substring ( 0 , index ) ; String repoType = FeatureDefinitionUtils . EMPTY ; String symbolicName = key ; int pfxIndex = key . indexOf ( ':' ) ; if ( pfxIndex > - 1 ... | Create the ImmutableAttributes based on an line in a cache file . There is no validation or warnings in this load path as it is assumed the definition would not have been added to the cache if it were invalid . |
163,032 | public final synchronized void commitDecrementReferenceCount ( PersistentTransaction transaction ) throws SevereMessageStoreException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "commitDecrementReferenceCount" ) ; if ( _referenceCount < 1 ) { SevereMessageSto... | This method is called when committing the removal of a reference . It should only be called by the message store code . |
163,033 | public final synchronized void incrementReferenceCount ( ) throws SevereMessageStoreException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "incrementReferenceCount" ) ; if ( _referenceCountIsDecreasing ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . ... | This method is called when a reference is being added by an active transaction and when a reference is being restored . It should only be called by the message store code . |
163,034 | public final synchronized void rollbackIncrementReferenceCount ( PersistentTransaction transaction ) throws SevereMessageStoreException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "rollbackIncrementReferenceCount" ) ; if ( _referenceCount < 1 ) { SevereMessag... | This method is called when rolling back the addition of a reference . It should only be called by the message store code . |
163,035 | public void performFileBasedAction ( Collection < File > modifiedFiles ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "performFileBasedAction" , new Object [ ] { modifiedFiles } ) ; try { com . ibm . ws . ssl . config . KeyStoreManager . getInstance ( ) . clearJavaKeySt... | The specified files have been modified and we need to clear the SSLContext caches and keystore caches . This will cause the new keystore file to get loaded on the next use of the ssl context . If the keystore associated with the SSLContext that the process is using then the process SSLContext needs to be reloaded . |
163,036 | protected void unsetFileMonitorRegistration ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEventEnabled ( ) ) { Tr . event ( this , tc , "unsetFileMonitorRegistration" ) ; } if ( keyStoreFileMonitorRegistration != null ) { keyStoreFileMonitorRegistration . unregister ( ) ; keyStoreFileMonitorRegistration... | Remove the reference to the file monitor . |
163,037 | protected void setFileMonitorRegistration ( ServiceRegistration < FileMonitor > keyStoreFileMonitorRegistration ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEventEnabled ( ) ) { Tr . event ( this , tc , "setFileMonitorRegistration" ) ; } this . keyStoreFileMonitorRegistration = keyStoreFileMonitorRegistr... | Sets the keystore file monitor registration . |
163,038 | private void createFileMonitor ( String ID , String keyStoreLocation , String trigger , long interval ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "createFileMonitor" , new Object [ ] { ID , keyStoreLocation , trigger , interval } ) ; try { keyStoreFileMonitor = new S... | Handles the creation of the keystore file monitor . |
163,039 | protected void unsetKeyringMonitorRegistration ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEventEnabled ( ) ) { Tr . event ( this , tc , "unsetKeyringMonitorRegistration" ) ; } if ( keyringMonitorRegistration != null ) { keyringMonitorRegistration . unregister ( ) ; keyringMonitorRegistration = null ;... | Remove the reference to the keyRing monitor . |
163,040 | protected void setKeyringMonitorRegistration ( ServiceRegistration < KeyringMonitor > keyringMonitorRegistration ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEventEnabled ( ) ) { Tr . event ( this , tc , "setKeyringMonitorRegistration" ) ; } this . keyringMonitorRegistration = keyringMonitorRegistration ... | Sets the keyring monitor registration . |
163,041 | private void createKeyringMonitor ( String ID , String trigger , String keyStoreLocation ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "createKeyringMonitor" , new Object [ ] { ID , trigger } ) ; try { KeyringMonitor = new KeyringMonitorImpl ( this ) ; setKeyringMonito... | Handles the creation of the keyring monitor . |
163,042 | public static byte [ ] encodeDN ( Codec codec , String distinguishedName ) throws Exception { X500Principal issuer = new X500Principal ( distinguishedName ) ; X509CertSelector certSelector = new X509CertSelector ( ) ; certSelector . setIssuer ( issuer ) ; byte [ ] asnX501DN = certSelector . getIssuerAsBytes ( ) ; Any a... | Encode a distinguished name into a codec encoded ASN . 1 X501 encoded Distinguished Name . |
163,043 | public static String decodeDN ( Codec codec , byte [ ] encodedDN ) throws SASException { String dn = null ; try { Any any = codec . decode_value ( encodedDN , X501DistinguishedNameHelper . type ( ) ) ; byte [ ] asnX501DN = X501DistinguishedNameHelper . extract ( any ) ; X500Principal x500Principal = new X500Principal (... | Decode a distinguished name from an ASN . 1 X501 encoded Distinguished Name |
163,044 | private static String upperCaseIndexString ( String iiopName ) { StringBuilder StringBuilder = new StringBuilder ( ) ; for ( int i = 0 ; i < iiopName . length ( ) ; i ++ ) { char c = iiopName . charAt ( i ) ; if ( Character . isUpperCase ( c ) ) { StringBuilder . append ( '_' ) . append ( i ) ; } } return StringBuilder... | Return the a string containing an underscore _ index of each uppercase character in the iiop name . |
163,045 | private static String replace ( String source , char oldChar , String newString ) { StringBuilder StringBuilder = new StringBuilder ( source . length ( ) ) ; for ( int i = 0 ; i < source . length ( ) ; i ++ ) { char c = source . charAt ( i ) ; if ( c == oldChar ) { StringBuilder . append ( newString ) ; } else { String... | Replaces any occurnace of the specified oldChar with the nes string . |
163,046 | private static String buildOverloadParameterString ( Class < ? > parameterType ) { String name = "_" ; int arrayDimensions = 0 ; while ( parameterType . isArray ( ) ) { arrayDimensions ++ ; parameterType = parameterType . getComponentType ( ) ; } if ( arrayDimensions > 0 ) { name += "_org_omg_boxedRMI" ; } if ( IDLEnti... | Returns a single parameter type encoded using the Java to IDL rules . |
163,047 | private static String buildClassName ( Class < ? > type ) { if ( type . isArray ( ) ) { throw new IllegalArgumentException ( "type is an array: " + type ) ; } String typeName = type . getName ( ) ; int endIndex = typeName . lastIndexOf ( '.' ) ; if ( endIndex < 0 ) { return typeName ; } StringBuilder className = new St... | Returns a string contianing an encoded class name . |
163,048 | public List < Persistence . PersistenceUnit > getPersistenceUnit ( ) { if ( persistenceUnit == null ) { persistenceUnit = new ArrayList < Persistence . PersistenceUnit > ( ) ; } return this . persistenceUnit ; } | Gets the value of the persistenceUnit property . |
163,049 | public final static PersistenceType getPersistenceType ( Byte aValue ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . debug ( tc , "Value = " + aValue ) ; return set [ aValue . intValue ( ) ] ; } | Returns the corresponding PersistenceType for a given Byte . This method should NOT be called by any code outside the MFP component . It is only public so that it can be accessed by sub - packages . |
163,050 | protected void register ( String [ ] specificPackageList ) { if ( TraceComponent . isAnyTracingEnabled ( ) && _tc . isEntryEnabled ( ) ) SibTr . entry ( _tc , "register" , new Object [ ] { this , specificPackageList } ) ; synchronized ( SibDiagnosticModule . class ) { if ( ! _registeredMasterDiagnosticModule ) { SibDia... | Register a subclass of this diagnostic module with FFDC |
163,051 | protected void captureDefaultInformation ( IncidentStream is , Throwable th ) { is . writeLine ( "Platform Messaging :: Messaging engine:" , SibTr . getMEName ( null ) ) ; if ( th != null ) { StackTraceElement [ ] ste = th . getStackTrace ( ) ; Set classes = new HashSet ( ) ; for ( int i = 0 ; i < ste . length ; i ++ )... | Capture the default information about the messaging engine exception etc . |
163,052 | public void ffdcDumpDefault ( Throwable t , IncidentStream is , Object callerThis , Object [ ] objs , String sourceId ) { is . writeLine ( "SIB FFDC dump for:" , t ) ; captureDefaultInformation ( is , t ) ; if ( callerThis != null ) { is . writeLine ( "SibDiagnosticModule :: Dump of callerThis (DiagnosticModule)" , toF... | Capture information about this problem into the incidentStream |
163,053 | public final String toFFDCString ( Object obj ) { if ( obj instanceof Map ) { return toFFDCString ( ( Map ) obj ) ; } else if ( obj instanceof Collection ) { return toFFDCString ( ( Collection ) obj ) ; } else if ( obj instanceof Object [ ] ) { return toFFDCString ( ( Object [ ] ) obj ) ; } return toFFDCStringSingleObj... | Generates a string representation of the object for FFDC . If the object is an Object Array Collection or Map the elements are inspected individually up to a maximum of multiple_object_count_to_ffdc |
163,054 | protected String toFFDCStringSingleObject ( Object obj ) { if ( obj == null ) { return "<null>" ; } else if ( obj instanceof Traceable ) { return ( ( Traceable ) obj ) . toTraceString ( ) ; } else if ( obj instanceof String ) { return ( ( String ) obj ) ; } else if ( obj instanceof byte [ ] ) { return toFFDCString ( ( ... | Generates a string representation of an object for FFDC . |
163,055 | public final String toFFDCString ( Collection aCollection ) { StringBuffer buffer = new StringBuffer ( ) ; buffer . append ( '{' ) ; if ( aCollection == null ) { buffer . append ( "<null>" ) ; } else { Iterator i = aCollection . iterator ( ) ; boolean hasNext = i . hasNext ( ) ; int ctr = 0 ; while ( hasNext ) { Object... | Generates a String representation of a Collection calling toFFDCStringObject for the first multiple_object_count_to_ffdc elements |
163,056 | public final String toFFDCString ( Map aMap ) { StringBuffer buffer = new StringBuffer ( ) ; buffer . append ( '{' ) ; if ( aMap == null ) { buffer . append ( "<null>" ) ; } else { Iterator i = aMap . entrySet ( ) . iterator ( ) ; boolean hasNext = i . hasNext ( ) ; int ctr = 0 ; while ( hasNext ) { Map . Entry entry =... | Generates a String representation of a Map calling toFFDCStringObject for the first multiple_object_count_to_ffdc elements |
163,057 | private boolean removeComments ( DocumentBuilder parser , Document doc ) { try { DOMImplementation impl = parser . getDOMImplementation ( ) ; if ( ! impl . hasFeature ( "traversal" , "2.0" ) ) { return false ; } Node root = doc . getDocumentElement ( ) ; DocumentTraversal traversable = ( DocumentTraversal ) doc ; NodeI... | Removes all comments from the document except for the Properties comment All exceptions are suppressed because this is just a nicety to improve human readability . |
163,058 | public static void nodeListRemoveAll ( Element xEml , NodeList nodes ) { int cnt = nodes . getLength ( ) ; for ( int i = 0 ; i < cnt ; i ++ ) xEml . removeChild ( nodes . item ( 0 ) ) ; } | Removes all nodes contained in the NodeList from the Element . Convenience method because NodeList objects in the DOM are live . |
163,059 | private ServiceRegistration < ? > registerMBeanService ( String jmsResourceName , BundleContext bundleContext ) { Dictionary < String , String > props = new Hashtable < String , String > ( ) ; props . put ( KEY_SERVICE_VENDOR , "IBM" ) ; JmsServiceProviderMBeanImpl jmsProviderMBean = new JmsServiceProviderMBeanImpl ( g... | Registers MBean for JMSServiceProvider .. in future can be made generic . |
163,060 | private static Object invokeDefaultMethodUsingPrivateLookup ( Class < ? > declaringClass , Object o , Method m , Object [ ] params ) throws WrappedException , NoSuchMethodException { try { final Method privateLookup = MethodHandles . class . getDeclaredMethod ( "privateLookupIn" , Class . class , MethodHandles . Lookup... | For JDK 9 + we could use MethodHandles . privateLookupIn which is not available in JDK 8 . |
163,061 | public WsByteBuffer buildFrameForWrite ( ) { WsByteBuffer [ ] output = buildFrameArrayForWrite ( ) ; int size = 0 ; for ( WsByteBuffer b : output ) { if ( b != null ) { size += b . remaining ( ) ; } } WsByteBuffer singleBuffer = this . getBuffer ( size ) ; singleBuffer . put ( output ) ; singleBuffer . flip ( ) ; retur... | The test code expects a single buffer instead of an array of buffers as returned by buildFrameArrayForWrite |
163,062 | public EJSHome create ( BeanMetaData beanMetaData ) throws RemoteException { J2EEName name = beanMetaData . j2eeName ; HomeRecord hr = beanMetaData . homeRecord ; StatelessBeanO homeBeanO = null ; EJSHome result = null ; try { result = ( EJSHome ) beanMetaData . homeBeanClass . newInstance ( ) ; homeBeanO = ( Stateless... | Create a new EJSHome instance . |
163,063 | public void addHome ( BeanMetaData bmd ) throws RemoteException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "addHome : " + bmd . j2eeName ) ; if ( homesByName . get ( bmd . j2eeName ) != null ) { throw new DuplicateHomeNameExceptio... | LIDB859 - 4 d429866 . 2 |
163,064 | private void updateAppLinkData ( AppLinkData linkData , boolean add , J2EEName j2eeName , BeanMetaData bmd ) { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "updateAppLinkData: " + j2eeName + ", add=" + add ) ; int numBeans ; synchroni... | Updates the EJB - link and auto - link data for a bean . |
163,065 | private static < T > void updateAppLinkDataTable ( Map < String , Set < T > > table , boolean add , String key , T value , String tracePrefix ) { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; Set < T > values = table . get ( key ) ; if ( add ) { if ( isTraceOn && tc . isDebugEnabled ( ) && traceP... | Updates a map from name to set of values . |
163,066 | private void updateAutoLink ( AppLinkData linkData , boolean add , J2EEName j2eeName , BeanMetaData bmd ) { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( tc , "updateAutoLink" ) ; String module = j2eeName . getModule ( ) ; String beanInterf... | d429866 . 2 |
163,067 | public BeanO createBeanO ( EJBThreadData threadData , ContainerTx tx , BeanId id ) throws RemoteException { J2EEName homeKey = id . getJ2EEName ( ) ; HomeRecord hr = homesByName . get ( homeKey ) ; BeanO result = null ; if ( hr != null ) { result = hr . beanO ; } if ( result == null ) { String msgTxt = "The referenced ... | Added ContainerTx d168509 |
163,068 | public String getEnterpriseBeanClassName ( Object homeKey ) { HomeRecord hr = homesByName . get ( homeKey ) ; return hr . homeInternal . getEnterpriseBeanClassName ( homeKey ) ; } | Return the name of the class that implements the bean s owned by the given home . |
163,069 | public Object resolveVariable ( String pName ) throws ELException { ELContext ctx = this . getELContext ( ) ; return ctx . getELResolver ( ) . getValue ( ctx , null , pName ) ; } | LIDB4147 - 9 Begin - modified for JSP 2 . 1 |
163,070 | private void copyTagToPageScope ( int scope ) { Iterator iter = null ; switch ( scope ) { case VariableInfo . NESTED : if ( nestedVars != null ) { iter = nestedVars . iterator ( ) ; } break ; case VariableInfo . AT_BEGIN : if ( atBeginVars != null ) { iter = atBeginVars . iterator ( ) ; } break ; case VariableInfo . AT... | Copies the variables of the given scope from the virtual page scope of this JSP context wrapper to the page scope of the invoking JSP context . |
163,071 | private void saveNestedVariables ( ) { if ( nestedVars != null ) { Iterator iter = nestedVars . iterator ( ) ; while ( iter . hasNext ( ) ) { String varName = ( String ) iter . next ( ) ; varName = findAlias ( varName ) ; Object obj = invokingJspCtxt . getAttribute ( varName ) ; if ( obj != null ) { originalNestedVars ... | Saves the values of any NESTED variables that are present in the invoking JSP context so they can later be restored . |
163,072 | private void restoreNestedVariables ( ) { if ( nestedVars != null ) { Iterator iter = nestedVars . iterator ( ) ; while ( iter . hasNext ( ) ) { String varName = ( String ) iter . next ( ) ; varName = findAlias ( varName ) ; Object obj = originalNestedVars . get ( varName ) ; if ( obj != null ) { invokingJspCtxt . setA... | Restores the values of any NESTED variables in the invoking JSP context . |
163,073 | public RangeObject getNext ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getNext" , Integer . valueOf ( cursor ) ) ; int curr = cursor ; cursor = cursor < ( blockVector . size ( ) - 1 ) ? cursor + 1 : cursor ; if ( TraceComponent . isAnyTracingEnabled ( ) ... | Returns the next range object |
163,074 | public void replacePrefix ( RangeObject w ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "replacePrefix" , w ) ; long lstamp = w . endstamp ; int lindex ; RangeObject lastro ; for ( lindex = 0 ; ; lindex ++ ) { lastro = ( RangeObject ) blockVector . get ( lind... | return a list of RangeObjects that are removed |
163,075 | protected final int getIndex ( long stamp ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getIndex" , Long . valueOf ( stamp ) ) ; int first = 0 ; int last = blockVector . size ( ) ; int index = linearSearch ( stamp , first , last - 1 ) ; if ( TraceComponent .... | gets the index in blockVector for the RangeObject containing stamp |
163,076 | protected void handleJwtRequest ( HttpServletRequest request , HttpServletResponse response , ServletContext servletContext , JwtConfig jwtConfig , EndpointType endpointType ) throws IOException { if ( jwtConfig == null ) { if ( tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "No JwtConfig object provided" ) ; } return ;... | Handle the request for the respective endpoint to which the request was directed . |
163,077 | private boolean isTransportSecure ( HttpServletRequest req ) { String url = req . getRequestURL ( ) . toString ( ) ; if ( req . getScheme ( ) . equals ( "https" ) ) { return true ; } String value = req . getHeader ( "X-Forwarded-Proto" ) ; if ( value != null && value . toLowerCase ( ) . equals ( "https" ) ) { return tr... | determine if transport is secure . Either the protocol must be https or we must see a forwarding header that indicates it was https upstream of a proxy . Use of a configuration property to allow plain http was rejected in review . |
163,078 | private void processTokenRequest ( HttpServletResponse response , JwtConfig jwtConfig ) throws IOException { String tokenString = new TokenBuilder ( ) . createTokenString ( jwtConfig ) ; addNoCacheHeaders ( response ) ; response . setStatus ( 200 ) ; if ( tokenString == null ) { return ; } try { PrintWriter pw = respon... | produces a JWT token based upon the jwt Configuration and the security credentials of the authenticated user that called this method . Returns the token as JSON in the response . |
163,079 | private void processJWKRequest ( HttpServletResponse response , JwtConfig jwtConfig ) throws IOException { String signatureAlg = jwtConfig . getSignatureAlgorithm ( ) ; if ( ! Constants . SIGNATURE_ALG_RS256 . equals ( signatureAlg ) ) { String errorMsg = Tr . formatMessage ( tc , "JWK_ENDPOINT_WRONG_ALGORITHM" , new O... | Obtains the JWK string that is active in the specified config and prints it in JSON format in the response . If a JWK is not found the response will be empty . |
163,080 | protected void addNoCacheHeaders ( HttpServletResponse response ) { String cacheControlValue = response . getHeader ( WebConstants . HEADER_CACHE_CONTROL ) ; if ( cacheControlValue != null && ! cacheControlValue . isEmpty ( ) ) { cacheControlValue = cacheControlValue + ", " + WebConstants . CACHE_CONTROL_NO_STORE ; } e... | Adds header values to avoid caching of the provided response . |
163,081 | protected void activate ( ) throws Exception { String runtimeVersion = getRuntimeClassVersion ( ) ; if ( runtimeVersion != null && ! runtimeVersion . equals ( getCurrentVersion ( ) ) ) { throw new IllegalStateException ( "Incompatible proxy code (version " + runtimeVersion + ")" ) ; } if ( runtimeVersion == null ) { Ja... | Activate this declarative services component . Bundles that are currently active will be examined for monitoring metadata and registered as appropriate . |
163,082 | @ FFDCIgnore ( Exception . class ) String getRuntimeClassVersion ( ) { String runtimeVersion = null ; try { Class < ? > clazz = Class . forName ( PROBE_PROXY_CLASS_NAME ) ; Field version = ReflectionHelper . getDeclaredField ( clazz , VERSION_FIELD_NAME ) ; runtimeVersion = ( String ) version . get ( null ) ; } catch (... | Determine if the boot delegated proxy is already available and if so what its version is . |
163,083 | JarFile getBootProxyJarIfCurrent ( ) { File dataFile = bundleContext . getDataFile ( "boot-proxy.jar" ) ; if ( ! dataFile . exists ( ) ) { return null ; } JarFile jarFile = null ; try { jarFile = new JarFile ( dataFile ) ; Manifest manifest = jarFile . getManifest ( ) ; Attributes attrs = manifest . getMainAttributes (... | Get the boot proxy jar from the current data area if the code matches the current bundle version . |
163,084 | JarFile createBootProxyJar ( ) throws IOException { File dataFile = bundleContext . getDataFile ( "boot-proxy.jar" ) ; if ( ! dataFile . exists ( ) ) { dataFile . createNewFile ( ) ; } Manifest manifest = createBootJarManifest ( ) ; FileOutputStream fileOutputStream = new FileOutputStream ( dataFile , false ) ; JarOutp... | Create a jar file that contains the proxy code that will live in the boot delegation package . |
163,085 | public void createDirectoryEntries ( JarOutputStream jarStream , String packageName ) throws IOException { StringBuilder entryName = new StringBuilder ( packageName . length ( ) ) ; for ( String str : packageName . split ( "\\." ) ) { entryName . append ( str ) . append ( "/" ) ; JarEntry jarEntry = new JarEntry ( entr... | Create the jar directory entries corresponding to the specified package name . |
163,086 | private void writeRemappedClass ( URL classUrl , JarOutputStream jarStream , String targetPackage ) throws IOException { InputStream inputStream = classUrl . openStream ( ) ; String sourceInternalName = getClassInternalName ( classUrl ) ; String targetInternalName = getTargetInternalName ( sourceInternalName , targetPa... | Transform the proxy template class that s in this package into a class that s in a package on the framework boot delegation package list . |
163,087 | String getTargetInternalName ( String sourceInternalName , String targetPackage ) { StringBuilder targetInternalName = new StringBuilder ( ) ; targetInternalName . append ( targetPackage . replaceAll ( "\\." , "/" ) ) ; int lastSlashIndex = sourceInternalName . lastIndexOf ( '/' ) ; targetInternalName . append ( source... | Get the class internal name that should be used where moving the internal class across packages . |
163,088 | void activateProbeProxyTarget ( ) throws Exception { Method method = ReflectionHelper . getDeclaredMethod ( probeManagerImpl . getClass ( ) , ProbeMethodAdapter . FIRE_PROBE_METHOD_NAME , long . class , Object . class , Object . class , Object . class ) ; ReflectionHelper . setAccessible ( method , true ) ; if ( ! Type... | Hook up the monitoring boot proxy delegate . |
163,089 | public void setWebApp ( com . ibm . ws . webcontainer . webapp . WebApp webApp ) { super . setWebApp ( ( WebApp ) webApp ) ; } | Override to ensure all WebApp are osgi . WebApp . |
163,090 | public static boolean isBeanValidationAvailable ( ) { if ( beanValidationAvailable == null ) { try { try { beanValidationAvailable = ( Class . forName ( "javax.validation.Validation" ) != null ) ; } catch ( ClassNotFoundException e ) { beanValidationAvailable = Boolean . FALSE ; } if ( beanValidationAvailable ) { try {... | This method determines if Bean Validation is present . |
163,091 | void handleRollback ( SubscriptionMessage subMessage , LocalTransaction transaction ) { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "handleRollback" , new Object [ ] { subMessage , transaction } ) ; try { if ( transaction != null ) { try { transaction . rollback ( ) ; } catch ( SIException e ) { FFDCFilter . pr... | Rolls back and readds the proxy subscriptions that may have been removed . |
163,092 | void handleDeleteProxySubscription ( SubscriptionMessage deleteMessage , Transaction transaction ) throws SIResourceException { if ( tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "handleDeleteProxySubscription" , new Object [ ] { deleteMessage , transaction } ) ; final Iterator topics = deleteMessage . getTopics ( ) .... | Used to remove a proxy subscription on this Neighbour |
163,093 | public void setKerberosConnection ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "setting this mc to indicate it was gotten using kerberos" ) ; kerberosConnection = true ; } | new code RRS |
163,094 | public void markStale ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "mark mc stale" ) ; _mcStale = true ; } | Marks the managed connection as stale . |
163,095 | private final void addHandle ( WSJdbcConnection handle ) throws ResourceException { ( numHandlesInUse < handlesInUse . length - 1 ? handlesInUse : resizeHandleList ( ) ) [ numHandlesInUse ++ ] = handle ; if ( ! inRequest && dsConfig . get ( ) . enableBeginEndRequest ) try { inRequest = true ; mcf . jdbcRuntime . beginR... | Add a handle to this ManagedConnection s list of handles . Signal the JDBC 4 . 3 + driver that a request is starting . |
163,096 | public void connectionClosed ( javax . sql . ConnectionEvent event ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEventEnabled ( ) ) Tr . event ( this , tc , "connectionClosed" , "Notification of connection closed received from the JDBC driver" , AdapterUtil . toString ( event . getSource ( ) ) ) ; if ( is... | Invoked by the JDBC driver when the java . sql . Connection is closed . |
163,097 | private void destroyStatement ( Object unwantedStatement ) { try { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) Tr . debug ( this , tc , "Statement cache at capacity. Discarding a statement." , AdapterUtil . toString ( unwantedStatement ) ) ; ( ( Statement ) unwantedStatement ) . close ( )... | Destroy an unwanted statement . This method should close the statement . |
163,098 | final void detectMultithreadedAccess ( ) { Thread currentThreadID = Thread . currentThread ( ) ; if ( currentThreadID == threadID ) return ; if ( threadID == null ) threadID = currentThreadID ; else { mcf . detectedMultithreadedAccess = true ; java . io . StringWriter writer = new java . io . StringWriter ( ) ; new Err... | Detect multithreaded access . This method is called only if detection is enabled . The method ensures that the current thread id matches the saved thread id for this MC . If the MC was just taken out the pool the thread id may not have been recorded yet . In this case we save the current thread id . Otherwise if the th... |
163,099 | public void dissociateConnections ( ) throws ResourceException { final boolean isTraceOn = TraceComponent . isAnyTracingEnabled ( ) ; if ( isTraceOn && tc . isEntryEnabled ( ) ) Tr . entry ( this , tc , "dissociateConnections" ) ; ResourceException firstX = null ; cleaningUpHandles = true ; for ( int i = numHandlesInUs... | Dissociate all connection handles from this ManagedConnection transitioning the handles to an inactive state where are not associated with any ManagedConnection . Processing continues when errors occur . All errors are logged and the first error is saved to be thrown when processing completes . |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.