idx int64 0 165k | question stringlengths 73 4.15k | target stringlengths 5 918 | len_question int64 21 890 | len_target int64 3 255 |
|---|---|---|---|---|
158,900 | public void setSharingPolicy ( int sharingPolicy ) { if ( lock == SET ) { throw new IllegalStateException ( "EntryInfo is locked" ) ; } sharingPolicyFlag = SET ; this . sharingPolicy = sharingPolicy ; if ( ( sharingPolicy != NOT_SHARED ) && ( sharingPolicy != SHARED_PUSH ) && ( sharingPolicy != SHARED_PULL ) && ( shari... | This sets the sharing policy in the sharingPolicy variable . Included for forward compatibility with distributed caches . | 119 | 19 |
158,901 | public void setTimeLimit ( int timeLimit ) { if ( lock == SET ) { throw new IllegalStateException ( "EntryInfo is locked" ) ; } expirationTimeFlag = SET ; this . timeLimit = timeLimit ; if ( timeLimit > 0 ) { long ttlmsec = ( ( long ) timeLimit ) * 1000 ; expirationTime = ttlmsec + System . currentTimeMillis ( ) ; } } | This sets the time limit in the timeLimit variable . Once an entry is cached it will remain in the cache for this many seconds | 90 | 26 |
158,902 | public int getInactivity ( ) { // CPF-Inactivity if ( com . ibm . ws . cache . TimeLimitDaemon . UNIT_TEST_INACTIVITY ) { System . out . println ( "EntryInfo.getInactivity() " + inactivity ) ; } return inactivity ; } | This gets the inactivity timer for this cache entry . | 69 | 11 |
158,903 | public void setInactivity ( int inactivity ) { // CPF-Inactivity if ( lock == SET ) { throw new IllegalStateException ( "EntryInfo is locked" ) ; } inactivityFlag = SET ; this . inactivity = inactivity ; // Seconds if ( com . ibm . ws . cache . TimeLimitDaemon . UNIT_TEST_INACTIVITY ) { System . out . println ( "EntryI... | This sets the inactivity timer variable . Once an entry is cached it will remain in the cache for this many seconds if not accessed . | 106 | 27 |
158,904 | public void setExpirationTime ( long expirationTime ) { if ( lock == SET ) { throw new IllegalStateException ( "EntryInfo is locked" ) ; } expirationTimeFlag = SET ; this . expirationTime = expirationTime ; this . timeLimit = ( int ) ( ( expirationTime - System . currentTimeMillis ( ) ) / 1000L ) ; } | This sets the expirationTime variable . | 76 | 7 |
158,905 | public void addTemplate ( String template ) { if ( lock == SET ) { throw new IllegalStateException ( "EntryInfo is locked" ) ; } if ( template != null && ! template . equals ( "" ) ) { templates . add ( template ) ; } } | This adds a template name to the templates variable . | 55 | 10 |
158,906 | public void addDataId ( Object dataId ) { if ( lock == SET ) { throw new IllegalStateException ( "EntryInfo is locked" ) ; } if ( dataId != null && ! dataId . equals ( "" ) ) { dataIds . add ( dataId ) ; } } | This unions a new data id into the dataIds variable . | 62 | 13 |
158,907 | public void addAlias ( Object alias ) { if ( lock == SET ) { throw new IllegalStateException ( "EntryInfo is locked" ) ; } if ( alias != null && ! alias . equals ( "" ) ) { aliasList . add ( alias ) ; } } | This unions a new alias into the aliasList variable . | 56 | 11 |
158,908 | @ FFDCIgnore ( Exception . class ) protected final void shutdownFramework ( ) { try { Bundle bundle = context . getBundle ( Constants . SYSTEM_BUNDLE_LOCATION ) ; if ( bundle != null ) bundle . stop ( ) ; } catch ( Exception e ) { // Exception could happen here if bundle context is bad, or system bundle // is already s... | When an error occurs during startup then this method is used to stop the root bundle thus bringing down the OSGi framework . | 97 | 24 |
158,909 | List < String > getNames ( ) { if ( addrList == null ) return jmfNames ; // Create a readonly list that extracts the 'names' information from the main list return new AbstractList < String > ( ) { public int size ( ) { return addrList . size ( ) ; } public String get ( int index ) { return ( ( JsDestinationAddress ) ad... | measurements may show otherwise . | 101 | 7 |
158,910 | public int readInt ( InputStream in ) throws ConversionException , IOException { JSONArray json = parseArray ( in ) ; if ( json . size ( ) != 1 ) { throwConversionException ( "readInt() expects one item in the array: [ Integer ]." , json ) ; } return readIntInternal ( json . get ( 0 ) ) ; } | Decode a JSON document to retrieve an integer value . | 76 | 11 |
158,911 | public boolean readBoolean ( InputStream in ) throws ConversionException , IOException { JSONArray json = parseArray ( in ) ; if ( json . size ( ) != 1 ) { throwConversionException ( "readBoolean() expects one item in the array: [ true | false ]." , json ) ; } return readBooleanInternal ( json . get ( 0 ) ) ; } | Decode a JSON document to retrieve an boolean value . | 81 | 11 |
158,912 | public String readString ( InputStream in ) throws ConversionException , IOException { JSONArray json = parseArray ( in ) ; if ( json . size ( ) != 1 ) { throwConversionException ( "readString() expects one item in the array: [ String ]." , json ) ; } return readStringInternal ( json . get ( 0 ) ) ; } | Decode a JSON document to retrieve a String value . | 76 | 11 |
158,913 | public Object readPOJO ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { return readPOJOInternal ( parse ( in ) ) ; } | Decode a JSON document to retrieve an Object . | 35 | 10 |
158,914 | public JMXServerInfo readJMX ( InputStream in ) throws ConversionException , IOException { JSONObject json = parseObject ( in ) ; JMXServerInfo ret = new JMXServerInfo ( ) ; ret . version = readIntInternal ( json . get ( N_VERSION ) ) ; ret . mbeansURL = readStringInternal ( json . get ( N_MBEANS ) ) ; ret . createMBea... | Decode a JSON document to retrieve a JMX instance . | 289 | 12 |
158,915 | public ObjectInstanceWrapper [ ] readObjectInstances ( InputStream in ) throws ConversionException , IOException { JSONArray json = parseArray ( in ) ; ObjectInstanceWrapper [ ] ret = new ObjectInstanceWrapper [ json . size ( ) ] ; int pos = 0 ; for ( Object item : json ) { ret [ pos ++ ] = readObjectInstanceInternal (... | Decode a JSON document to retrieve an ObjectInstanceWrapper array . | 86 | 14 |
158,916 | public MBeanQuery readMBeanQuery ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { JSONObject json = parseObject ( in ) ; MBeanQuery ret = new MBeanQuery ( ) ; ret . objectName = readObjectName ( json . get ( N_OBJECTNAME ) ) ; Object queryExp = readSerialized ( json . get ( N_QUERY... | Decode a JSON document to retrieve an MBeanQuery instance . | 182 | 14 |
158,917 | public CreateMBean readCreateMBean ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { JSONObject json = parseObject ( in ) ; CreateMBean ret = new CreateMBean ( ) ; ret . objectName = readObjectName ( json . get ( N_OBJECTNAME ) ) ; ret . className = readStringInternal ( json . get (... | Decode a JSON document to retrieve a CreateMBean instance . | 204 | 14 |
158,918 | @ SuppressWarnings ( "unchecked" ) public MBeanInfoWrapper readMBeanInfo ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { JSONObject json = parseObject ( in ) ; MBeanInfoWrapper ret = new MBeanInfoWrapper ( ) ; if ( USE_BASE64_FOR_MBEANINFO ) { Object o = readSerialized ( json . ge... | Decode a JSON document to retrieve an MBeanInfoWrapper instance . | 742 | 16 |
158,919 | public AttributeList readAttributeList ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { JSONArray json = parseArray ( in ) ; AttributeList ret = new AttributeList ( ) ; for ( Object item : json ) { if ( ! ( item instanceof JSONObject ) ) { throwConversionException ( "readAttributeL... | Decode a JSON document to retrieve an AttributeList instance . | 155 | 13 |
158,920 | public Invocation readInvocation ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { JSONObject json = parseObject ( in ) ; Invocation ret = new Invocation ( ) ; ret . params = readPOJOArray ( json . get ( N_PARAMS ) ) ; ret . signature = readStringArrayInternal ( json . get ( N_SIGNA... | Decode a JSON document to retrieve an Invocation instance . | 87 | 12 |
158,921 | public NotificationArea readNotificationArea ( InputStream in ) throws ConversionException , IOException { JSONObject json = parseObject ( in ) ; NotificationArea ret = new NotificationArea ( ) ; ret . registrationsURL = readStringInternal ( json . get ( N_REGISTRATIONS ) ) ; ret . serverRegistrationsURL = readStringIn... | Decode a JSON document to retrieve a NotificationArea instance . | 132 | 12 |
158,922 | public NotificationRegistration readNotificationRegistration ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { JSONObject json = parseObject ( in ) ; NotificationRegistration ret = new NotificationRegistration ( ) ; ret . objectName = readObjectName ( json . get ( N_OBJECTNAME ) ) ;... | Decode a JSON document to retrieve a NotificationRegistration instance . | 92 | 12 |
158,923 | public ServerNotificationRegistration readServerNotificationRegistration ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { JSONObject json = parseObject ( in ) ; ServerNotificationRegistration ret = new ServerNotificationRegistration ( ) ; String name = readStringInternal ( json . g... | Decode a JSON document to retrieve a ServerNotificationRegistration instance . | 221 | 14 |
158,924 | public boolean isSupportedNotificationFilter ( NotificationFilter filter ) { Class < ? > clazz = filter . getClass ( ) ; return clazz == AttributeChangeNotificationFilter . class || clazz == MBeanServerNotificationFilter . class || clazz == NotificationFilterSupport . class ; } | Check if a NotificationFilter is a standard filter that can be send to a JMX server . | 63 | 19 |
158,925 | public NotificationFilter [ ] readNotificationFilters ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { return readNotificationFiltersInternal ( parseArray ( in ) ) ; } | Decode a JSON document to retrieve a NotificationFilter array . | 43 | 12 |
158,926 | public Notification [ ] readNotifications ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { final NotificationRecord [ ] records = readNotificationRecords ( in ) ; final Notification [ ] ret = new Notification [ records . length ] ; for ( int i = 0 ; i < records . length ; ++ i ) { ... | Decode a JSON document to retrieve an array of Notification instances . | 92 | 13 |
158,927 | public NotificationSettings readNotificationSettings ( InputStream in ) throws ConversionException , IOException { JSONObject json = parseObject ( in ) ; NotificationSettings ret = new NotificationSettings ( ) ; ret . deliveryInterval = readIntInternal ( json . get ( N_DELIVERYINTERVAL ) ) ; ret . inboxExpiry = readInt... | Decode a JSON document to retrieve a NotificationSettings instance . | 93 | 12 |
158,928 | public Throwable readThrowable ( InputStream in ) throws ConversionException , IOException , ClassNotFoundException { byte [ ] byteInputStream = convertInputStreamToBytes ( in ) ; ByteArrayInputStream bais = new ByteArrayInputStream ( byteInputStream ) ; JSONObject json = null ; try { json = parseObject ( bais ) ; } ca... | Decode a JSON document to retrieve a Throwable instance . | 180 | 12 |
158,929 | private byte [ ] convertInputStreamToBytes ( InputStream in ) throws IOException { ByteArrayOutputStream buffer = new ByteArrayOutputStream ( ) ; int len ; byte [ ] data = new byte [ 16384 ] ; while ( ( len = in . read ( data , 0 , data . length ) ) != - 1 ) { buffer . write ( data , 0 , len ) ; } buffer . flush ( ) ; ... | Converts inputstream to bytearray | 98 | 9 |
158,930 | public String encodeStringAsBase64 ( String value ) throws ConversionException { try { return encodeStringAsBase64Internal ( value ) ; } catch ( IOException e ) { // Will never happen return null ; } } | Encode a String in base64 . The content of the string is first encoded as UTF - 8 bytes the bytes are then base64 encoded . The resulting base64 value is returned as a String . | 45 | 40 |
158,931 | private void writeSimpleString ( OutputStream out , CharSequence value ) throws IOException { out . write ( ' ' ) ; for ( int i = 0 ; i < value . length ( ) ; i ++ ) { out . write ( value . charAt ( i ) ) ; } out . write ( ' ' ) ; } | The value can t be null . | 69 | 7 |
158,932 | @ Override public String getTemporaryQueueNamePrefix ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getTemporaryQueueNamePrefix" ) ; String prefix = jcaConnectionFactory . getTemporaryQueueNamePrefix ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc... | Get the temp queue name prefix | 123 | 6 |
158,933 | public String getPassword ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getPassword" ) ; String password = jcaConnectionFactory . getPassword ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this , tc , "getPa... | This method is not added in the interface JmsManagedConnectionFactory since it s for internal use only . | 98 | 22 |
158,934 | @ Override public String getConnectionProximity ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getConnectionProximity" ) ; String connectionProximity = jcaConnectionFactory . getConnectionProximity ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc .... | Gets the connection proximity | 124 | 5 |
158,935 | @ Override public String getProviderEndpoints ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getProviderEndpoints" ) ; String providerEndpoints = jcaConnectionFactory . getProviderEndpoints ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntry... | Gets the provider endpoints 181802 . 2 | 117 | 11 |
158,936 | @ Override public String getTargetTransportChain ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getTargetTransportChain" ) ; String targetTransportChain = jcaConnectionFactory . getTargetTransportChain ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && ... | Gets the remote protocol | 124 | 5 |
158,937 | @ Override public String getTarget ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getTarget" ) ; String remoteTargetGroup = jcaConnectionFactory . getTarget ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . exit ( this... | Gets the target | 109 | 4 |
158,938 | @ Override public String getTargetType ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( this , tc , "getTargetType" ) ; String remoteTargetType = jcaConnectionFactory . getTargetType ( ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . ... | Gets the target type | 113 | 5 |
158,939 | @ SuppressWarnings ( "rawtypes" ) public Class getException ( ) { try { return Class . forName ( errorParam , true , Thread . currentThread ( ) . getContextClassLoader ( ) ) . newInstance ( ) . getClass ( ) ; } catch ( Exception e ) { return null ; } } | Use of the WAR class loader is correct . | 69 | 9 |
158,940 | @ SuppressWarnings ( "rawtypes" ) public Class getException ( ClassLoader warClassLoader ) { try { return Class . forName ( errorParam , true , warClassLoader ) ; } catch ( Exception e ) { return null ; } } | PK52168 - STARTS | 54 | 6 |
158,941 | private byte [ ] readIndefiniteLengthFully ( ) throws IOException { ByteArrayOutputStream bOut = new ByteArrayOutputStream ( ) ; int b , b1 ; b1 = read ( ) ; while ( ( b = read ( ) ) >= 0 ) { if ( b1 == 0 && b == 0 ) { break ; } bOut . write ( b1 ) ; b1 = b ; } return bOut . toByteArray ( ) ; } | read a string of bytes representing an indefinite length object . | 99 | 11 |
158,942 | public static String [ ] generateUniqueIdCache ( String prefix , int count ) { String [ ] cache = new String [ count ] ; SectionUniqueIdCounter counter = new SectionUniqueIdCounter ( prefix ) ; for ( int i = 0 ; i < count ; i ++ ) { cache [ i ] = counter . generateUniqueId ( ) ; } return cache ; } | Creates an array of the generated unique ids for an specified prefix than can be used later to prevent calculate the same String over and over . | 76 | 29 |
158,943 | @ Override public Set < HeaderField > getHeaders ( ) { HashSet < HeaderField > headerFields = new HashSet < HeaderField > ( ) ; if ( _headers . size ( ) > 0 ) { Iterator < String > headerNames = _headers . keySet ( ) . iterator ( ) ; while ( headerNames . hasNext ( ) ) { Iterator < HttpHeaderField > headers = _headers ... | Methods required by com . ibm . wsspi . http . ee8 . HttpPushBuilder | 208 | 22 |
158,944 | private void reset ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) { Tr . debug ( tc , "reset()" , "Clearing the path and removing conditional headers" ) ; } //clear the path _path = null ; _pathURI = null ; _queryString = null ; _pathQueryString = null ; //remove conditional headers re... | Reset the state of this PushBuilder before next push | 152 | 11 |
158,945 | protected synchronized void installJAASConfigurationFromJAASConfigFile ( ) { JAASLoginConfig jaasLoginConfig = jaasLoginConfigRef . getService ( ) ; if ( jaasLoginConfig != null ) { jaasConfigurationEntriesFromJaasConfig = jaasLoginConfig . getEntries ( ) ; if ( jaasConfigurationEntriesFromJaasConfig != null ) { if ( j... | This method optional install the JAAS configuration that specified in the jaas . conf file | 141 | 17 |
158,946 | @ SuppressWarnings ( "unchecked" ) // SelfExtractor has no generics public static List < ProductRequirementInformation > createFromAppliesTo ( String appliesTo ) { if ( appliesTo == null || appliesTo . isEmpty ( ) ) { throw new InvalidParameterException ( "Applies to must be set to a valid value but is " + appliesTo ) ... | Parse an appliesTo string to produce a list of product requirements | 349 | 13 |
158,947 | Neighbour [ ] getMembers ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , "getMembers" ) ; SibTr . exit ( tc , "getMembers" ) ; } return iNeighbours ; } | Method that returns all the Neighbours for this Bus | 67 | 11 |
158,948 | Hashtable getLocalSubscriptions ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , "getLocalSubscriptions" ) ; SibTr . exit ( tc , "getLocalSubscriptions" , iLocalSubscriptions ) ; } return ( Hashtable ) iLocalSubscriptions . clone ( ) ; } | Gets all the local subscriptions that have been sent to this Bus . | 89 | 14 |
158,949 | Hashtable getRemoteSubscriptions ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , "getRemoteSubscriptions" ) ; SibTr . exit ( tc , "getRemoteSubscriptions" , iRemoteSubscriptions ) ; } return ( Hashtable ) iRemoteSubscriptions . clone ( ) ; } | Gets all the remote subscriptions that have been sent to this Bus . | 89 | 14 |
158,950 | SubscriptionMessageHandler addRemoteSubscription ( SIBUuid12 topicSpace , String topic , SubscriptionMessageHandler messageHandler , boolean sendProxy ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "addRemoteSubscription" , new Object [ ] { topicSpace , topic , messa... | Adds a remote subscription to this ME . | 155 | 8 |
158,951 | SubscriptionMessageHandler removeRemoteSubscription ( SIBUuid12 topicSpace , String topic , SubscriptionMessageHandler messageHandler , boolean sendProxy ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "removeRemoteSubscription" , new Object [ ] { topicSpace , topic ,... | Called when an unsubscribe needs to be propagated to the group . Decrements the reference count on the subscription for any subscriptions registered remotely . | 153 | 29 |
158,952 | private SubscriptionMessageHandler removeSubscription ( SIBUuid12 topicSpace , String topic , SubscriptionMessageHandler messageHandler , Hashtable subscriptionsTable , boolean sendProxy ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "removeSubscription" , new Object... | Called when an unsubscribe needs to be propagated to the group . Decrements the reference count on the subscription . | 321 | 24 |
158,953 | protected void sendToNeighbours ( SubscriptionMessage msg , Transaction transaction , boolean startup ) throws SIResourceException { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "sendToNeighbours" , new Object [ ] { msg , transaction , new Boolean ( startup ) } ) ; for... | Sends the messages to all the Neighbours in this Bus . | 214 | 14 |
158,954 | void addNeighbour ( Neighbour neighbour ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "addNeighbour" , neighbour ) ; final Neighbour [ ] tmp = new Neighbour [ iNeighbours . length + 1 ] ; System . arraycopy ( iNeighbours , 0 , tmp , 0 , iNeighbours . length ) ; tmp ... | Adds a reference of Neighbour to this Bus group | 149 | 10 |
158,955 | void removeNeighbour ( Neighbour neighbour ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "removeNeighbour" , neighbour ) ; Neighbour [ ] tmp = iNeighbours ; // Loop through the Neighbours in this Bus for ( int i = 0 ; i < iNeighbours . length ; ++ i ) if ( iNeighbou... | Removes a Neighbour reference from this Bus group | 236 | 10 |
158,956 | private SubscriptionMessageHandler doProxySubscribeOp ( int op , MESubscription subscription , SubscriptionMessageHandler messageHandler , Hashtable subscriptionsTable , boolean sendProxy ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "doProxySubscribeOp" , new Objec... | Performs a proxy subscription operation for the given subscription . | 646 | 11 |
158,957 | protected SubscriptionMessage generateResetSubscriptionMessage ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "generateResetSubscriptionMessage" ) ; // Get the Message Handler for doing this operation. final SubscriptionMessageHandler messageHandler = iProxyHandler... | Generates the reset subscription message that should be sent to a member or members of this Bus . | 219 | 19 |
158,958 | protected SubscriptionMessage generateReplySubscriptionMessage ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "generateReplySubscriptionMessage" ) ; // Get the Message Handler for doing this operation. final SubscriptionMessageHandler messageHandler = iProxyHandler... | Generates the reply subscription message that should be sent to a the neighbor on the Bus who sent the request . | 243 | 22 |
158,959 | private final void addToMessage ( SubscriptionMessageHandler messageHandler , Hashtable subscriptions ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "addToMessage" , new Object [ ] { messageHandler , subscriptions } ) ; // Get the enumeration of the subscriptions. En... | Adds the subscriptions to the subscription message | 183 | 7 |
158,960 | void resetListFailed ( ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "resetListFailed" ) ; for ( int i = 0 ; i < iNeighbours . length ; i ++ ) { iNeighbours [ i ] . resetListFailed ( ) ; } if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) Si... | If at startup the reset list failed then we need to try and send it again . Each Neighbour needs to be told that the send failed so that it can retry . | 119 | 35 |
158,961 | protected MultiThreadedWorker getMultiThreadedWorker ( SelectionKey key , long threadIdfWQM ) { MultiThreadedWorker worker = null ; synchronized ( multiThreadedObjectPool ) { worker = ( MultiThreadedWorker ) multiThreadedObjectPool . get ( ) ; } if ( worker == null ) { worker = new MultiThreadedWorker ( this ) ; } work... | Retrieve a MultiThreadedWorker object from the object pool . | 95 | 14 |
158,962 | String resolveSymbolicString ( String symbolicPath ) { if ( symbolicPath == null ) throw new NullPointerException ( "Path must be non-null" ) ; return resolveStringSymbols ( symbolicPath , symbolicPath , true , 0 , true ) ; } | Resolves the given string evaluating all symbols and path - normalizes the value . | 57 | 16 |
158,963 | String resolveRawSymbolicString ( String string ) { if ( string == null ) throw new NullPointerException ( "String must be non-null" ) ; return resolveStringSymbols ( string , string , true , 0 , false ) ; } | Resolves the given string evaluating all symbols but does NOT path - normalize the value . | 54 | 18 |
158,964 | protected boolean addJwtCookies ( String cookieByteString , HttpServletRequest req , HttpServletResponse resp ) { String baseName = getJwtCookieName ( ) ; if ( baseName == null ) { return false ; } if ( ( ! req . isSecure ( ) ) && getJwtCookieSecure ( ) ) { Tr . warning ( tc , "JWT_COOKIE_SECURITY_MISMATCH" , new Objec... | Add the cookie or cookies as needed depending on size of token . Return true if any cookies were added | 301 | 20 |
158,965 | @ Override public void removeSSOCookieFromResponse ( HttpServletResponse resp ) { if ( resp instanceof com . ibm . wsspi . webcontainer . servlet . IExtendedResponse ) { ( ( com . ibm . wsspi . webcontainer . servlet . IExtendedResponse ) resp ) . removeCookie ( getSSOCookiename ( ) ) ; removeJwtSSOCookies ( ( com . ib... | Remove a cookie from the response | 119 | 6 |
158,966 | protected synchronized void updateCookieCache ( ByteArray cookieBytes , String cookieByteString ) { if ( cookieByteStringCache . size ( ) > MAX_COOKIE_STRING_ENTRIES ) cookieByteStringCache . clear ( ) ; if ( cookieByteString != null ) cookieByteStringCache . put ( cookieBytes , cookieByteString ) ; } | Perform some cookie cache maintenance . If the cookie cache has grown too large clear it . Otherwise store the cookieByteString into the cache based on the cookieBytes . | 76 | 33 |
158,967 | protected boolean isJwtCookie ( String baseName , String cookieName ) { if ( baseName . equalsIgnoreCase ( cookieName ) ) return true ; if ( ! ( cookieName . startsWith ( baseName ) ) ) { return false ; } if ( cookieName . length ( ) != baseName . length ( ) + 2 ) { return false ; } String lastTwoChars = cookieName . s... | see if cookiename is a jwtsso cookie based on the name . | 114 | 17 |
158,968 | protected String resolveCookieName ( Cookie [ ] cookies ) { boolean foundCookie = false ; String ssoCookieName = this . getSSOCookiename ( ) ; if ( cookies != null ) { for ( int i = 0 ; i < cookies . length ; i ++ ) { if ( cookies [ i ] . getName ( ) . equalsIgnoreCase ( ssoCookieName ) ) { foundCookie = true ; break ;... | 1 ) If we found the cookie associate with the cookie name we will use the cookie name 2 ) If we can not find the cookie associate with the cookie name we will use the default cookie name LTPAToken2 if isUseOnlyCustomCookieName is false | 145 | 54 |
158,969 | @ Override public String getJwtSsoTokenFromCookies ( HttpServletRequest req , String baseName ) { StringBuffer tokenStr = new StringBuffer ( ) ; String cookieName = baseName ; for ( int i = 1 ; i <= 99 ; i ++ ) { if ( i > 1 ) { cookieName = baseName + ( i < 10 ? "0" : "" ) + i ; //name02... name99 } String cookieValue ... | The token can be split across multiple cookies if it is over 3900 chars . Look for subsequent cookies and concatenate them in that case . The counterpart for this method is SSOCookieHelperImpl . addJwtSsoCookiesToResponse . | 164 | 51 |
158,970 | public static DERGeneralizedTime getInstance ( Object obj ) { if ( obj == null || obj instanceof DERGeneralizedTime ) { return ( DERGeneralizedTime ) obj ; } if ( obj instanceof ASN1OctetString ) { return new DERGeneralizedTime ( ( ( ASN1OctetString ) obj ) . getOctets ( ) ) ; } throw new IllegalArgumentException ( "il... | return a generalized time from the passed in object | 112 | 9 |
158,971 | public final void start ( ) throws XAException { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "start" , new Object [ ] { _resource , printState ( _state ) } ) ; if ( tcSummary . isDebugEnabled ( ) ) Tr . debug ( tcSummary , "xa_start" , this ) ; int rc = - 1 ; // not an XA RC try { int flags ; // Check the current ... | Associate the underlying XAResource with a transaction . | 612 | 12 |
158,972 | public final void end ( int flag ) throws XAException { if ( tc . isEntryEnabled ( ) ) Tr . entry ( tc , "end" , new Object [ ] { _resource , Util . printFlag ( flag ) , printState ( _state ) } ) ; if ( tcSummary . isDebugEnabled ( ) ) Tr . debug ( tcSummary , "xa_end" , new Object [ ] { this , "flags = " + Util . prin... | Terminate the association of the XAResource with this transaction . | 813 | 14 |
158,973 | @ Activate protected void activate ( ComponentContext context , Map < String , Object > properties ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , CLASS_NAME + "activate" , new Object [ ] { context , properties } ) ; } try { service = new JsMainAdminServiceImpl ( ) ... | This method is call by the declarative service when the feature is activated | 227 | 15 |
158,974 | @ Modified protected void modified ( ComponentContext context , Map < String , Object > properties ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) { SibTr . entry ( tc , CLASS_NAME + "modified" , new Object [ ] { context , properties } ) ; } try { // If ME is stopped we start it again.Thi... | This method is call by the declarative service when there is configuration change | 388 | 15 |
158,975 | @ Reference ( name = KEY_MESSAGE_STORE , service = MessageStore . class ) protected void setMessageStore ( ServiceReference < MessageStore > ref ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . entry ( tc , "setMessageStore" , ref ) ; messageStoreRef . setReference ( ref ) ; if ( T... | Declarative Services method for setting the MessageStore service reference . | 122 | 13 |
158,976 | protected void unsetMessageStore ( ServiceReference < MessageStore > ref ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . entry ( tc , "unsetMessageStore" , ref ) ; messageStoreRef . unsetReference ( ref ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) )... | Declarative Services method for unsetting the MessageStore service reference . | 104 | 14 |
158,977 | @ Reference ( name = KEY_DESTINATION_ADDRESS_FACTORY , service = SIDestinationAddressFactory . class ) protected void setDestinationAddressFactory ( ServiceReference < SIDestinationAddressFactory > ref ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . entry ( tc , "setDestinationAdd... | Declarative Services method for setting the DestinationAddressFactory service reference . | 142 | 14 |
158,978 | protected void unsetDestinationAddressFactory ( ServiceReference < SIDestinationAddressFactory > ref ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . entry ( tc , "unsetDestinationAddressFactory" , ref ) ; destinationAddressFactoryRef . setReference ( ref ) ; if ( TraceComponent . ... | Declarative Services method for unsetting the DestinationAddressFactory service reference . | 114 | 15 |
158,979 | @ Reference ( name = KEY_JS_ADMIN_SERVICE , service = JsAdminService . class ) protected void setJsAdminService ( ServiceReference < JsAdminService > ref ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . entry ( tc , "setJsAdminService" , ref ) ; jsAdminServiceref . setReference ( r... | Declarative Services method for setting the JsAdminService service reference . | 130 | 15 |
158,980 | protected void unsetJsAdminService ( ServiceReference < JsAdminService > ref ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled ( ) ) SibTr . entry ( tc , "unsetJsAdminService" , ref ) ; jsAdminServiceref . setReference ( ref ) ; if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isDebugEnabled... | Declarative Services method for unsetting the JsAdminService service reference . | 109 | 16 |
158,981 | public static void initialiseAcceptListenerFactory ( AcceptListenerFactory _acceptListenerFactory ) { if ( TraceComponent . isAnyTracingEnabled ( ) && tc . isEntryEnabled ( ) ) SibTr . entry ( tc , "initialiseAcceptListenerFactory" , _acceptListenerFactory ) ; Class clientImpl = instance . getClass ( ) ; Method initial... | Sets an AcceptListenerFactory on the full implementation of the ServerConnectionManager implementation . | 362 | 17 |
158,982 | private void setCredential ( Subject subject , WSPrincipal principal ) throws CredentialException { String securityName = principal . getName ( ) ; Hashtable < String , ? > customProperties = getUniqueIdHashtableFromSubject ( subject ) ; if ( customProperties == null || customProperties . isEmpty ( ) ) { UserRegistrySe... | Create a WSCredential for the specified accessId . If this accessId came from the current UserRegistry create a WsCredential . If not then do nothing . | 581 | 37 |
158,983 | private List < String > getUniqueGroupAccessIds ( UserRegistry userRegistry , String realm , String uniqueName ) throws EntryNotFoundException , RegistryException { List < String > uniqueGroupAccessIds = new ArrayList < String > ( ) ; List < String > uniqueGroupIds = userRegistry . getUniqueGroupIdsForUser ( uniqueName... | Get a list of all of the groups the user belongs to formated as group access IDs . | 162 | 19 |
158,984 | private String getPrimaryGroupId ( List < String > uniqueGroupIds ) { return uniqueGroupIds . isEmpty ( ) ? null : uniqueGroupIds . get ( 0 ) ; } | Get the primary group ID . This is assumed to be the first group in the group list . | 41 | 19 |
158,985 | @ Override @ FFDCIgnore ( { CredentialDestroyedException . class , CredentialExpiredException . class } ) public boolean isSubjectValid ( Subject subject ) { boolean valid = false ; try { WSCredential wsCredential = getWSCredential ( subject ) ; if ( wsCredential != null ) { long credentialExpirationInMillis = wsCreden... | Checks if the subject is valid . Currently a subject is REQUIRED to have a WSCredential and it is only valid if the WSCredential is not expired . | 330 | 37 |
158,986 | public void storeRecord ( RepositoryLogRecord record ) { if ( isClosed ) { throw new IllegalStateException ( "This instance of the exporter is already closed" ) ; } if ( ! isInitialized ) { throw new IllegalStateException ( "This instance of the exporter does not have header information yet" ) ; } String formatRecord =... | Stores a RepositoryLogRecord into the proper text format | 107 | 12 |
158,987 | protected boolean acceptAnnotationsFrom ( String className , boolean acceptPartial , boolean acceptExcluded ) { String methodName = "acceptAnnotationsFrom" ; // Don't unnecessarily obtain the annotation targets table: // No seed annotations will be obtained when the module is metadata-complete. if ( config . isMetadata... | Tell if annotations on a target class are to be processed . This is controlled by the metadata - complete and absolute ordering settings of the web module . | 234 | 29 |
158,988 | protected void createSessionContext ( DeployedModule moduleConfig ) throws Throwable { try { // added sessionIdListeners for Servlet 3.1 ArrayList sessionRelatedListeners [ ] = new ArrayList [ ] { sessionListeners , sessionAttrListeners , sessionIdListeners } ; // cmd // PQ81253 this . sessionCtx = ( ( WebGroup ) paren... | Method createSessionContext . | 173 | 5 |
158,989 | protected void initializeTargetMappings ( ) throws Exception { // NOTE: namespace preinvoke/postinvoke not necessary as the only // external // code being run is the servlet's init() and that is handled in the // ServletWrapper // check if an extensionFactory is present for *.jsp: // We do this by constructing an arbit... | Method initializeTargetMappings . | 330 | 6 |
158,990 | private void initializeNonDDRepresentableAnnotation ( IServletConfig servletConfig ) { if ( com . ibm . ws . webcontainer . osgi . WebContainer . isServerStopping ( ) ) return ; String methodName = "initializeNonDDRepresentableAnnotation" ; String configClassName = servletConfig . getClassName ( ) ; if ( configClassNam... | Process any annotation which could not be managed by an update to the the descriptor based configuration . | 439 | 18 |
158,991 | @ FFDCIgnore ( Exception . class ) protected void addStaticFilePatternMappings ( RequestProcessor proxyReqProcessor ) { String nextPattern ; ExtensionProcessor fileExtensionProcessor = getDefaultExtensionProcessor ( this , getConfiguration ( ) . getFileServingAttributes ( ) ) ; List patternList = fileExtensionProcessor... | defect 39851 needs to stop the exception from always being thrown | 352 | 13 |
158,992 | public IServletWrapper getServletWrapper ( String servletName , boolean addMapping ) throws Exception // PK61140 { IServletWrapper targetWrapper = null ; IServletConfig sconfig = config . getServletInfo ( servletName ) ; if ( sconfig != null ) { IServletWrapper existingServletWrapper = sconfig . getServletWrapper ( ) ;... | Method getServletWrapper . | 652 | 7 |
158,993 | private ServletConfig loadInternalConfig ( String servletName , int internalIndex ) throws ServletException { ServletConfig sconfig = createConfig ( "InternalServlet_" + servletName , internalIndex ) ; sconfig . setServletName ( servletName ) ; sconfig . setDisplayName ( servletName ) ; sconfig . setServletContext ( th... | Method loadInternalConfig . | 131 | 5 |
158,994 | protected Object loadListener ( String lClassName ) throws InjectionException , Throwable //596191 :: PK97815 { Object listener = null ; try { if ( com . ibm . ejs . ras . TraceComponent . isAnyTracingEnabled ( ) && logger . isLoggable ( Level . FINE ) ) logger . logp ( Level . FINE , CLASS_NAME , "loadListener" , "loa... | LIDB1234 . 2 - added method below to load a listener class | 208 | 16 |
158,995 | public void addToStartWeightList ( IServletConfig sc ) { // we haven't started sorting the startup weights yet so just ignore. It // will be added later. if ( this . sortedServletConfigs == null ) return ; int size = this . sortedServletConfigs . size ( ) ; int pos = 0 ; boolean added = false ; if ( size == 0 || ! sc .... | Method addToStartWeightList . | 275 | 7 |
158,996 | public void notifyStart ( ) { try { eventSource . onApplicationAvailableForService ( new ApplicationEvent ( this , this , new com . ibm . ws . webcontainer . util . IteratorEnumerator ( config . getServletNames ( ) ) ) ) ; // LIBERTY: next line added by V8 sync //this.setInitialized(true); } catch ( Exception e ) { com... | use the started method above for any started specific requirements | 166 | 10 |
158,997 | public void addMappingFilter ( IServletConfig sConfig , IFilterConfig config ) { IFilterMapping fmapping = new FilterMapping ( null , config , sConfig ) ; _addMapingFilter ( config , fmapping ) ; } | Adds a filter against a specified servlet config into this context | 55 | 12 |
158,998 | public void initialize ( ) throws ServletException , Throwable { if ( com . ibm . ejs . ras . TraceComponent . isAnyTracingEnabled ( ) && logger . isLoggable ( Level . FINE ) ) logger . entering ( CLASS_NAME , "Initialize : app = " + config . getApplicationName ( ) + ", initialized = " + initialized + ", destroyed = " ... | LIBERTY Added for delayed start . | 243 | 8 |
158,999 | public void setModuleContainer ( com . ibm . wsspi . adaptable . module . Container c ) { container = c ; metaInfResourceFinder = new MetaInfResourceFinder ( container ) ; } | LIBERTY add to set the Adaptable API Container | 45 | 11 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.