repo
stringlengths
7
58
path
stringlengths
12
218
func_name
stringlengths
3
140
original_string
stringlengths
73
34.1k
language
stringclasses
1 value
code
stringlengths
73
34.1k
code_tokens
list
docstring
stringlengths
3
16k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
105
339
partition
stringclasses
1 value
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/impl/LockedMessageEnumerationImpl.java
LockedMessageEnumerationImpl.getUnSeenMessageCount
private int getUnSeenMessageCount() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc,"getUnseenMessageCount"); int remain = 0; for (int x = nextIndex; x < messages.length; x++) { if (messages[x] != null) remain++; } if...
java
private int getUnSeenMessageCount() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc,"getUnseenMessageCount"); int remain = 0; for (int x = nextIndex; x < messages.length; x++) { if (messages[x] != null) remain++; } if...
[ "private", "int", "getUnSeenMessageCount", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getUnseenMessageCount\"", ")...
Private method to determine how many messages have not been seen as yet. It does this by looking at the number of non-null elements from the current item to the end of the array. @return Returns the number of unseen items.
[ "Private", "method", "to", "determine", "how", "many", "messages", "have", "not", "been", "seen", "as", "yet", ".", "It", "does", "this", "by", "looking", "at", "the", "number", "of", "non", "-", "null", "elements", "from", "the", "current", "item", "to"...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/impl/LockedMessageEnumerationImpl.java#L479-L491
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/impl/LockedMessageEnumerationImpl.java
LockedMessageEnumerationImpl.unlockUnseen
public void unlockUnseen() throws SIResourceException, SIConnectionDroppedException, SIConnectionLostException, // F247845 SIIncorrectCallException, SIMessageNotLockedException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc,"unlockUnseen"); ...
java
public void unlockUnseen() throws SIResourceException, SIConnectionDroppedException, SIConnectionLostException, // F247845 SIIncorrectCallException, SIMessageNotLockedException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc,"unlockUnseen"); ...
[ "public", "void", "unlockUnseen", "(", ")", "throws", "SIResourceException", ",", "SIConnectionDroppedException", ",", "SIConnectionLostException", ",", "// F247845", "SIIncorrectCallException", ",", "SIMessageNotLockedException", "{", "if", "(", "TraceComponent", ".", "isA...
begin F219476.2
[ "begin", "F219476", ".", "2" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/impl/LockedMessageEnumerationImpl.java#L499-L540
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/impl/LockedMessageEnumerationImpl.java
LockedMessageEnumerationImpl.getConsumerSession
public ConsumerSession getConsumerSession() throws SISessionUnavailableException, SISessionDroppedException, SIConnectionUnavailableException, SIConnectionDroppedException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc,"getConsumerSession"); //...
java
public ConsumerSession getConsumerSession() throws SISessionUnavailableException, SISessionDroppedException, SIConnectionUnavailableException, SIConnectionDroppedException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc,"getConsumerSession"); //...
[ "public", "ConsumerSession", "getConsumerSession", "(", ")", "throws", "SISessionUnavailableException", ",", "SISessionDroppedException", ",", "SIConnectionUnavailableException", ",", "SIConnectionDroppedException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", ...
Returns the consumer session this enumeration contains messages delivered to. @see com.ibm.wsspi.sib.core.LockedMessageEnumeration#getConsumerSession()
[ "Returns", "the", "consumer", "session", "this", "enumeration", "contains", "messages", "delivered", "to", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/impl/LockedMessageEnumerationImpl.java#L550-L559
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/impl/LockedMessageEnumerationImpl.java
LockedMessageEnumerationImpl.markInvalid
protected void markInvalid() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc,"markInvalid"); invalid = true; if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc,"markInvalid"); }
java
protected void markInvalid() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc,"markInvalid"); invalid = true; if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.exit(this, tc,"markInvalid"); }
[ "protected", "void", "markInvalid", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"markInvalid\"", ")", ";", "inva...
Marks the enumeration as invalid. This is called once the asynchronous consumer callback returns to ensure that this locked message enumeration cannot be used from outside the callback.
[ "Marks", "the", "enumeration", "as", "invalid", ".", "This", "is", "called", "once", "the", "asynchronous", "consumer", "callback", "returns", "to", "ensure", "that", "this", "locked", "message", "enumeration", "cannot", "be", "used", "from", "outside", "the", ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/comms/client/proxyqueue/impl/LockedMessageEnumerationImpl.java#L595-L600
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/internal/HTTPSRedirectHandler.java
HTTPSRedirectHandler.shouldRedirectToHttps
public boolean shouldRedirectToHttps(WebRequest webRequest) { HttpServletRequest req = webRequest.getHttpServletRequest(); return !req.isSecure() && webRequest.isSSLRequired(); }
java
public boolean shouldRedirectToHttps(WebRequest webRequest) { HttpServletRequest req = webRequest.getHttpServletRequest(); return !req.isSecure() && webRequest.isSSLRequired(); }
[ "public", "boolean", "shouldRedirectToHttps", "(", "WebRequest", "webRequest", ")", "{", "HttpServletRequest", "req", "=", "webRequest", ".", "getHttpServletRequest", "(", ")", ";", "return", "!", "req", ".", "isSecure", "(", ")", "&&", "webRequest", ".", "isSSL...
Determines if HTTPS redirect is required for this request. @param webRequest @return {@code true} if the request requires SSL but the request is not secure, {@code false} otherwise.
[ "Determines", "if", "HTTPS", "redirect", "is", "required", "for", "this", "request", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/internal/HTTPSRedirectHandler.java#L34-L37
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/internal/HTTPSRedirectHandler.java
HTTPSRedirectHandler.getHTTPSRedirectWebReply
public WebReply getHTTPSRedirectWebReply(HttpServletRequest req) { Integer httpsPort = (Integer) SRTServletRequestUtils.getPrivateAttribute(req, "SecurityRedirectPort"); if (httpsPort == null) { Tr.error(tc, "SSL_PORT_IS_NULL"); // return a 403 if we don't know what the port is ...
java
public WebReply getHTTPSRedirectWebReply(HttpServletRequest req) { Integer httpsPort = (Integer) SRTServletRequestUtils.getPrivateAttribute(req, "SecurityRedirectPort"); if (httpsPort == null) { Tr.error(tc, "SSL_PORT_IS_NULL"); // return a 403 if we don't know what the port is ...
[ "public", "WebReply", "getHTTPSRedirectWebReply", "(", "HttpServletRequest", "req", ")", "{", "Integer", "httpsPort", "=", "(", "Integer", ")", "SRTServletRequestUtils", ".", "getPrivateAttribute", "(", "req", ",", "\"SecurityRedirectPort\"", ")", ";", "if", "(", "h...
Get the new URL for the redirect which contains the https port. @param req @return WebReply to the redirect URL, or a 403 is any unexpected behaviour occurs
[ "Get", "the", "new", "URL", "for", "the", "redirect", "which", "contains", "the", "https", "port", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/internal/HTTPSRedirectHandler.java#L45-L79
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/CATMainConsumer.java
CATMainConsumer.receive
public void receive(int requestNumber, int tran, long timeout) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "receive", new Object[] { ...
java
public void receive(int requestNumber, int tran, long timeout) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "receive", new Object[] { ...
[ "public", "void", "receive", "(", "int", "requestNumber", ",", "int", "tran", ",", "long", "timeout", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(...
Performs a receive on this consumer. This is only a valid operation when the consumer is in synchronous mode. If the sub consumer has not been set up then this has to be created here. @param requestNumber The JFAP request. @param tran The transaction to use. @param timeout The timeout for the receive.
[ "Performs", "a", "receive", "on", "this", "consumer", ".", "This", "is", "only", "a", "valid", "operation", "when", "the", "consumer", "is", "in", "synchronous", "mode", ".", "If", "the", "sub", "consumer", "has", "not", "been", "set", "up", "then", "thi...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/CATMainConsumer.java#L420-L440
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/CATMainConsumer.java
CATMainConsumer.unsetAsynchConsumerCallback
public void unsetAsynchConsumerCallback(int requestNumber, boolean stoppable) //SIB0115d.comms { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "unsetAsynchConsumerCallback", "requestNumber="+requestNumber+",stoppable="+stoppable); checkNotB...
java
public void unsetAsynchConsumerCallback(int requestNumber, boolean stoppable) //SIB0115d.comms { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "unsetAsynchConsumerCallback", "requestNumber="+requestNumber+",stoppable="+stoppable); checkNotB...
[ "public", "void", "unsetAsynchConsumerCallback", "(", "int", "requestNumber", ",", "boolean", "stoppable", ")", "//SIB0115d.comms", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ...
This method will unset the asynch consumer callback. This means that the client has requested that the session should be converted from asynchronous to synchronous and so the sub consumer must be changed @param requestNumber
[ "This", "method", "will", "unset", "the", "asynch", "consumer", "callback", ".", "This", "means", "that", "the", "client", "has", "requested", "that", "the", "session", "should", "be", "converted", "from", "asynchronous", "to", "synchronous", "and", "so", "the...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/CATMainConsumer.java#L594-L608
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/CATMainConsumer.java
CATMainConsumer.start
public void start(int requestNumber, boolean deliverImmediately, boolean sendReply, SendListener sendListener) { //471642 if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "start", new Object[]{requestNumber, deliverImmediately,sendRepl...
java
public void start(int requestNumber, boolean deliverImmediately, boolean sendReply, SendListener sendListener) { //471642 if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "start", new Object[]{requestNumber, deliverImmediately,sendRepl...
[ "public", "void", "start", "(", "int", "requestNumber", ",", "boolean", "deliverImmediately", ",", "boolean", "sendReply", ",", "SendListener", "sendListener", ")", "{", "//471642", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", "...
Start the consumer @param requestNumber The request number which replies should be sent to. @param deliverImmediately Whether we should deliver on this thread if we can. @param sendReply Whether a reply is needed for this flow @param sendListener A send listener that will be notified when the start reply is sent
[ "Start", "the", "consumer" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/CATMainConsumer.java#L618-L625
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/CATMainConsumer.java
CATMainConsumer.setBifurcatedSession
public void setBifurcatedSession(BifurcatedConsumerSession sess) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setBifurcatedSession", sess); subConsumer = new CATBifurcatedConsumer(this, sess); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabl...
java
public void setBifurcatedSession(BifurcatedConsumerSession sess) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setBifurcatedSession", sess); subConsumer = new CATBifurcatedConsumer(this, sess); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabl...
[ "public", "void", "setBifurcatedSession", "(", "BifurcatedConsumerSession", "sess", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ...
This method will put the main consumer into bifurcated mode. @param sess The bifurcated session.
[ "This", "method", "will", "put", "the", "main", "consumer", "into", "bifurcated", "mode", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/CATMainConsumer.java#L1124-L1131
train
OpenLiberty/open-liberty
dev/com.ibm.ws.microprofile.faulttolerance.2.0/src/com/ibm/ws/microprofile/faulttolerance20/state/impl/AsyncBulkheadStateImpl.java
AsyncBulkheadStateImpl.tryRunNext
private void tryRunNext() { while (runningSemaphore.tryAcquire()) { ExecutionTask execution = queue.poll(); if (execution != null) { // Note: we've removed the execution from the queue so we're committed to running it // if we fail to do so for any reason,...
java
private void tryRunNext() { while (runningSemaphore.tryAcquire()) { ExecutionTask execution = queue.poll(); if (execution != null) { // Note: we've removed the execution from the queue so we're committed to running it // if we fail to do so for any reason,...
[ "private", "void", "tryRunNext", "(", ")", "{", "while", "(", "runningSemaphore", ".", "tryAcquire", "(", ")", ")", "{", "ExecutionTask", "execution", "=", "queue", ".", "poll", "(", ")", ";", "if", "(", "execution", "!=", "null", ")", "{", "// Note: we'...
Attempt to run any queued executions
[ "Attempt", "to", "run", "any", "queued", "executions" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.microprofile.faulttolerance.2.0/src/com/ibm/ws/microprofile/faulttolerance20/state/impl/AsyncBulkheadStateImpl.java#L73-L91
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java
Expirer.removeExpirable
public final boolean removeExpirable(Expirable expirable) throws SevereMessageStoreException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "removeExpirable", "objId=" + (expirable == null ? "null" : St...
java
public final boolean removeExpirable(Expirable expirable) throws SevereMessageStoreException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "removeExpirable", "objId=" + (expirable == null ? "null" : St...
[ "public", "final", "boolean", "removeExpirable", "(", "Expirable", "expirable", ")", "throws", "SevereMessageStoreException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "{", "SibTr", ...
Remove an Expirable reference for an item from the expiry index. @param expirable the Expirable item for which a reference is to be removed from the expiry index. @return true if the reference was removed from the index, false otherwise. @throws SevereMessageStoreException
[ "Remove", "an", "Expirable", "reference", "for", "an", "item", "from", "the", "expiry", "index", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java#L198-L238
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java
Expirer.start
public final void start(long expiryInterval, JsMessagingEngine jsme) throws SevereMessageStoreException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "start", "interval=" + expiryInterval + " indexSize=" + expiryIndex.size()); messagingEngine = jsme; ...
java
public final void start(long expiryInterval, JsMessagingEngine jsme) throws SevereMessageStoreException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "start", "interval=" + expiryInterval + " indexSize=" + expiryIndex.size()); messagingEngine = jsme; ...
[ "public", "final", "void", "start", "(", "long", "expiryInterval", ",", "JsMessagingEngine", "jsme", ")", "throws", "SevereMessageStoreException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ...
Start the expiry daemon. @param expiryInterval An interval in milliseconds which may be set via a custom property and if zero or more will be used to override the default expiry interval which was set when the Expirer was created. @throws SevereMessageStoreException
[ "Start", "the", "expiry", "daemon", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java#L258-L332
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java
Expirer.stop
public final void stop() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "stop"); synchronized (lockObject) { addEnabled = false; // Prevent further expirables being added if (runEnabled) { runEnabl...
java
public final void stop() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "stop"); synchronized (lockObject) { addEnabled = false; // Prevent further expirables being added if (runEnabled) { runEnabl...
[ "public", "final", "void", "stop", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"stop\"", ")", ";", "synchroniz...
Stop the expiry daemon.
[ "Stop", "the", "expiry", "daemon", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java#L337-L357
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java
Expirer.remove
private final boolean remove(ExpirableReference expirableRef, boolean expired) { boolean reply = expiryIndex.remove(); if (reply) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.debug(tc,"Removed ("+ (expired ? "expired" : "gone")+ ")"+ " ET="+ expirable...
java
private final boolean remove(ExpirableReference expirableRef, boolean expired) { boolean reply = expiryIndex.remove(); if (reply) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.debug(tc,"Removed ("+ (expired ? "expired" : "gone")+ ")"+ " ET="+ expirable...
[ "private", "final", "boolean", "remove", "(", "ExpirableReference", "expirableRef", ",", "boolean", "expired", ")", "{", "boolean", "reply", "=", "expiryIndex", ".", "remove", "(", ")", ";", "if", "(", "reply", ")", "{", "if", "(", "TraceComponent", ".", "...
Remove the expirable reference from the expiry index. This will remove the current entry pointed-to by the iterator. @param expirableRef our reference to the expirable @param expired true if the item is being removed after expiry, false if being removed because it is no longer in store. Used for diagnostics only. @re...
[ "Remove", "the", "expirable", "reference", "from", "the", "expiry", "index", ".", "This", "will", "remove", "the", "current", "entry", "pointed", "-", "to", "by", "the", "iterator", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java#L600-L613
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java
Expirer.saveStartTime
private int saveStartTime(long time) { int indexUsed = diagIndex; alarmTime[diagIndex++] = time; if (diagIndex >= MAX_DIAG_LOG) { diagIndex = 0; } return indexUsed; }
java
private int saveStartTime(long time) { int indexUsed = diagIndex; alarmTime[diagIndex++] = time; if (diagIndex >= MAX_DIAG_LOG) { diagIndex = 0; } return indexUsed; }
[ "private", "int", "saveStartTime", "(", "long", "time", ")", "{", "int", "indexUsed", "=", "diagIndex", ";", "alarmTime", "[", "diagIndex", "++", "]", "=", "time", ";", "if", "(", "diagIndex", ">=", "MAX_DIAG_LOG", ")", "{", "diagIndex", "=", "0", ";", ...
Keep last n expiry cycle start times for diagnostic dump. @param time the time this cycle started. @return the log index used for this entry.
[ "Keep", "last", "n", "expiry", "cycle", "start", "times", "for", "diagnostic", "dump", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java#L620-L629
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java
Expirer.scheduleAlarm
private void scheduleAlarm(long timeOut) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "scheduleAlarm timeOut=" + timeOut); // NB PM27294 implementation now means you cannot decrease the the timeOut if an alarm is already scheduled. // This...
java
private void scheduleAlarm(long timeOut) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "scheduleAlarm timeOut=" + timeOut); // NB PM27294 implementation now means you cannot decrease the the timeOut if an alarm is already scheduled. // This...
[ "private", "void", "scheduleAlarm", "(", "long", "timeOut", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"scheduleAlarm ...
Schedule the next alarm. Callers of this method would typically hold lockObject already. @param timeOut the interval for the alarm.
[ "Schedule", "the", "next", "alarm", ".", "Callers", "of", "this", "method", "would", "typically", "hold", "lockObject", "already", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/expiry/Expirer.java#L635-L653
train
OpenLiberty/open-liberty
dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java
EntryInfo.reset
public void reset() { expirationTimeFlag = UNSET; inactivityFlag = UNSET; idFlag = UNSET; priorityFlag = UNSET; sharingPolicyFlag = UNSET; lock = UNSET; id = null; timeLimit = -1; inactivity = -1; expirationTime = -1; validatorExpirationTime = -1; priority = -1; shari...
java
public void reset() { expirationTimeFlag = UNSET; inactivityFlag = UNSET; idFlag = UNSET; priorityFlag = UNSET; sharingPolicyFlag = UNSET; lock = UNSET; id = null; timeLimit = -1; inactivity = -1; expirationTime = -1; validatorExpirationTime = -1; priority = -1; shari...
[ "public", "void", "reset", "(", ")", "{", "expirationTimeFlag", "=", "UNSET", ";", "inactivityFlag", "=", "UNSET", ";", "idFlag", "=", "UNSET", ";", "priorityFlag", "=", "UNSET", ";", "sharingPolicyFlag", "=", "UNSET", ";", "lock", "=", "UNSET", ";", "id",...
resets this EntryInfo for reuse @ibm-private-in-use
[ "resets", "this", "EntryInfo", "for", "reuse" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java#L222-L245
train
OpenLiberty/open-liberty
dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java
EntryInfo.setId
public void setId(Object id) { if (lock == SET) { throw new IllegalStateException("EntryInfo is locked"); } /*if (idFlag == SET) { if (tc.isDebugEnabled()) Tr.debug(tc, "Illegal State: tried to set id to "+id+ ", but id was already set to "+this.id ); throw new IllegalStateException("i...
java
public void setId(Object id) { if (lock == SET) { throw new IllegalStateException("EntryInfo is locked"); } /*if (idFlag == SET) { if (tc.isDebugEnabled()) Tr.debug(tc, "Illegal State: tried to set id to "+id+ ", but id was already set to "+this.id ); throw new IllegalStateException("i...
[ "public", "void", "setId", "(", "Object", "id", ")", "{", "if", "(", "lock", "==", "SET", ")", "{", "throw", "new", "IllegalStateException", "(", "\"EntryInfo is locked\"", ")", ";", "}", "/*if (idFlag == SET) {\n\t\t if (tc.isDebugEnabled()) Tr.debug(tc, \"Illegal Stat...
This sets the id variable. @param id The cache id. @ibm-private-in-use
[ "This", "sets", "the", "id", "variable", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java#L276-L289
train
OpenLiberty/open-liberty
dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java
EntryInfo.setSharingPolicy
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) && (sharingP...
java
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) && (sharingP...
[ "public", "void", "setSharingPolicy", "(", "int", "sharingPolicy", ")", "{", "if", "(", "lock", "==", "SET", ")", "{", "throw", "new", "IllegalStateException", "(", "\"EntryInfo is locked\"", ")", ";", "}", "sharingPolicyFlag", "=", "SET", ";", "this", ".", ...
This sets the sharing policy in the sharingPolicy variable. Included for forward compatibility with distributed caches. @param The new sharing policy. @ibm-private-in-use
[ "This", "sets", "the", "sharing", "policy", "in", "the", "sharingPolicy", "variable", ".", "Included", "for", "forward", "compatibility", "with", "distributed", "caches", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java#L362-L371
train
OpenLiberty/open-liberty
dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java
EntryInfo.setTimeLimit
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()...
java
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()...
[ "public", "void", "setTimeLimit", "(", "int", "timeLimit", ")", "{", "if", "(", "lock", "==", "SET", ")", "{", "throw", "new", "IllegalStateException", "(", "\"EntryInfo is locked\"", ")", ";", "}", "expirationTimeFlag", "=", "SET", ";", "this", ".", "timeLi...
This sets the time limit in the timeLimit variable. Once an entry is cached, it will remain in the cache for this many seconds @param timeLimit This time limit. @ibm-private-in-use
[ "This", "sets", "the", "time", "limit", "in", "the", "timeLimit", "variable", ".", "Once", "an", "entry", "is", "cached", "it", "will", "remain", "in", "the", "cache", "for", "this", "many", "seconds" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java#L448-L458
train
OpenLiberty/open-liberty
dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java
EntryInfo.getInactivity
public int getInactivity() { // CPF-Inactivity if (com.ibm.ws.cache.TimeLimitDaemon.UNIT_TEST_INACTIVITY) { System.out.println("EntryInfo.getInactivity() "+inactivity); } return inactivity; }
java
public int getInactivity() { // CPF-Inactivity if (com.ibm.ws.cache.TimeLimitDaemon.UNIT_TEST_INACTIVITY) { System.out.println("EntryInfo.getInactivity() "+inactivity); } return inactivity; }
[ "public", "int", "getInactivity", "(", ")", "{", "// CPF-Inactivity", "if", "(", "com", ".", "ibm", ".", "ws", ".", "cache", ".", "TimeLimitDaemon", ".", "UNIT_TEST_INACTIVITY", ")", "{", "System", ".", "out", ".", "println", "(", "\"EntryInfo.getInactivity() ...
This gets the inactivity timer for this cache entry. @return the inactivity timer for this cache entry. @ibm-private-in-use
[ "This", "gets", "the", "inactivity", "timer", "for", "this", "cache", "entry", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java#L465-L470
train
OpenLiberty/open-liberty
dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java
EntryInfo.setInactivity
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...
java
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...
[ "public", "void", "setInactivity", "(", "int", "inactivity", ")", "{", "// CPF-Inactivity", "if", "(", "lock", "==", "SET", ")", "{", "throw", "new", "IllegalStateException", "(", "\"EntryInfo is locked\"", ")", ";", "}", "inactivityFlag", "=", "SET", ";", "th...
This sets the inactivity timer variable. Once an entry is cached, it will remain in the cache for this many seconds if not accessed. @param inactivity This inactivity timer. @ibm-private-in-use
[ "This", "sets", "the", "inactivity", "timer", "variable", ".", "Once", "an", "entry", "is", "cached", "it", "will", "remain", "in", "the", "cache", "for", "this", "many", "seconds", "if", "not", "accessed", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java#L479-L488
train
OpenLiberty/open-liberty
dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java
EntryInfo.setExpirationTime
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); }
java
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); }
[ "public", "void", "setExpirationTime", "(", "long", "expirationTime", ")", "{", "if", "(", "lock", "==", "SET", ")", "{", "throw", "new", "IllegalStateException", "(", "\"EntryInfo is locked\"", ")", ";", "}", "expirationTimeFlag", "=", "SET", ";", "this", "."...
This sets the expirationTime variable. @param The new expiration time. @ibm-private-in-use
[ "This", "sets", "the", "expirationTime", "variable", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java#L506-L513
train
OpenLiberty/open-liberty
dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java
EntryInfo.addTemplate
public void addTemplate(String template) { if (lock == SET) { throw new IllegalStateException("EntryInfo is locked"); } if (template != null && !template.equals("")) { templates.add(template); } }
java
public void addTemplate(String template) { if (lock == SET) { throw new IllegalStateException("EntryInfo is locked"); } if (template != null && !template.equals("")) { templates.add(template); } }
[ "public", "void", "addTemplate", "(", "String", "template", ")", "{", "if", "(", "lock", "==", "SET", ")", "{", "throw", "new", "IllegalStateException", "(", "\"EntryInfo is locked\"", ")", ";", "}", "if", "(", "template", "!=", "null", "&&", "!", "templat...
This adds a template name to the templates variable. @param template The new template name. @ibm-private-in-use
[ "This", "adds", "a", "template", "name", "to", "the", "templates", "variable", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java#L597-L604
train
OpenLiberty/open-liberty
dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java
EntryInfo.addDataId
public void addDataId(Object dataId) { if (lock == SET) { throw new IllegalStateException("EntryInfo is locked"); } if (dataId != null && !dataId.equals("")) { dataIds.add(dataId); } }
java
public void addDataId(Object dataId) { if (lock == SET) { throw new IllegalStateException("EntryInfo is locked"); } if (dataId != null && !dataId.equals("")) { dataIds.add(dataId); } }
[ "public", "void", "addDataId", "(", "Object", "dataId", ")", "{", "if", "(", "lock", "==", "SET", ")", "{", "throw", "new", "IllegalStateException", "(", "\"EntryInfo is locked\"", ")", ";", "}", "if", "(", "dataId", "!=", "null", "&&", "!", "dataId", "....
This unions a new data id into the dataIds variable. @param dataId The new data id. @ibm-private-in-use
[ "This", "unions", "a", "new", "data", "id", "into", "the", "dataIds", "variable", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java#L632-L639
train
OpenLiberty/open-liberty
dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java
EntryInfo.addAlias
public void addAlias(Object alias) { if (lock == SET) { throw new IllegalStateException("EntryInfo is locked"); } if (alias != null && !alias.equals("")) { aliasList.add(alias); } }
java
public void addAlias(Object alias) { if (lock == SET) { throw new IllegalStateException("EntryInfo is locked"); } if (alias != null && !alias.equals("")) { aliasList.add(alias); } }
[ "public", "void", "addAlias", "(", "Object", "alias", ")", "{", "if", "(", "lock", "==", "SET", ")", "{", "throw", "new", "IllegalStateException", "(", "\"EntryInfo is locked\"", ")", ";", "}", "if", "(", "alias", "!=", "null", "&&", "!", "alias", ".", ...
This unions a new alias into the aliasList variable. @param alias The new alias. @ibm-private-in-use
[ "This", "unions", "a", "new", "alias", "into", "the", "aliasList", "variable", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.dynacache/src/com/ibm/ws/cache/EntryInfo.java#L713-L720
train
OpenLiberty/open-liberty
dev/com.ibm.ws.kernel.service.location/src/com/ibm/ws/kernel/service/location/internal/Activator.java
Activator.shutdownFramework
@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 c...
java
@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 c...
[ "@", "FFDCIgnore", "(", "Exception", ".", "class", ")", "protected", "final", "void", "shutdownFramework", "(", ")", "{", "try", "{", "Bundle", "bundle", "=", "context", ".", "getBundle", "(", "Constants", ".", "SYSTEM_BUNDLE_LOCATION", ")", ";", "if", "(", ...
When an error occurs during startup, then this method is used to stop the root bundle thus bringing down the OSGi framework.
[ "When", "an", "error", "occurs", "during", "startup", "then", "this", "method", "is", "used", "to", "stop", "the", "root", "bundle", "thus", "bringing", "down", "the", "OSGi", "framework", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.service.location/src/com/ibm/ws/kernel/service/location/internal/Activator.java#L107-L118
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/RoutingPathList.java
RoutingPathList.getNames
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) { ...
java
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) { ...
[ "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", ">", "(", ...
measurements may show otherwise.
[ "measurements", "may", "show", "otherwise", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/RoutingPathList.java#L128-L141
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readInt
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)); }
java
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)); }
[ "public", "int", "readInt", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", "{", "JSONArray", "json", "=", "parseArray", "(", "in", ")", ";", "if", "(", "json", ".", "size", "(", ")", "!=", "1", ")", "{", "throwConvers...
Decode a JSON document to retrieve an integer value. @param in The stream to read JSON from @return The decoded integer value @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @see #writeInt(OutputStream, int)
[ "Decode", "a", "JSON", "document", "to", "retrieve", "an", "integer", "value", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L697-L703
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readBoolean
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.ge...
java
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.ge...
[ "public", "boolean", "readBoolean", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", "{", "JSONArray", "json", "=", "parseArray", "(", "in", ")", ";", "if", "(", "json", ".", "size", "(", ")", "!=", "1", ")", "{", "thro...
Decode a JSON document to retrieve an boolean value. @param in The stream to read JSON from @return The decoded boolean value @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @see #writeInt(OutputStream, int)
[ "Decode", "a", "JSON", "document", "to", "retrieve", "an", "boolean", "value", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L729-L735
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readString
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)); ...
java
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)); ...
[ "public", "String", "readString", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", "{", "JSONArray", "json", "=", "parseArray", "(", "in", ")", ";", "if", "(", "json", ".", "size", "(", ")", "!=", "1", ")", "{", "throwC...
Decode a JSON document to retrieve a String value. @param in The stream to read JSON from @return The decoded String value @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @see #writeString(OutputStream, String)
[ "Decode", "a", "JSON", "document", "to", "retrieve", "a", "String", "value", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L761-L767
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readPOJO
public Object readPOJO(InputStream in) throws ConversionException, IOException, ClassNotFoundException { return readPOJOInternal(parse(in)); }
java
public Object readPOJO(InputStream in) throws ConversionException, IOException, ClassNotFoundException { return readPOJOInternal(parse(in)); }
[ "public", "Object", "readPOJO", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "return", "readPOJOInternal", "(", "parse", "(", "in", ")", ")", ";", "}" ]
Decode a JSON document to retrieve an Object. @param in The stream to read JSON from @return The decoded Object @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @throws ClassNotFoundException If needed class can't be found. @see #...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "an", "Object", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L941-L943
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readJMX
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.creat...
java
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.creat...
[ "public", "JMXServerInfo", "readJMX", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", "{", "JSONObject", "json", "=", "parseObject", "(", "in", ")", ";", "JMXServerInfo", "ret", "=", "new", "JMXServerInfo", "(", ")", ";", "r...
Decode a JSON document to retrieve a JMX instance. @param in The stream to read JSON from @return The decoded JMX instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @see #writeJMX(OutputStream, JMXServerInfo)
[ "Decode", "a", "JSON", "document", "to", "retrieve", "a", "JMX", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L988-L1003
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readObjectInstances
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++] = readObjectI...
java
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++] = readObjectI...
[ "public", "ObjectInstanceWrapper", "[", "]", "readObjectInstances", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", "{", "JSONArray", "json", "=", "parseArray", "(", "in", ")", ";", "ObjectInstanceWrapper", "[", "]", "ret", "=",...
Decode a JSON document to retrieve an ObjectInstanceWrapper array. @param in The stream to read JSON from @return The decoded ObjectInstanceWrapper array @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @see #writeObjectInstanceAr...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "an", "ObjectInstanceWrapper", "array", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1071-L1079
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readMBeanQuery
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_QU...
java
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_QU...
[ "public", "MBeanQuery", "readMBeanQuery", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "JSONObject", "json", "=", "parseObject", "(", "in", ")", ";", "MBeanQuery", "ret", "=", "new", "MBean...
Decode a JSON document to retrieve an MBeanQuery instance. @param in The stream to read JSON from @return The decoded MBeanQuery instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @throws ClassNotFoundException If needed cl...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "an", "MBeanQuery", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1113-L1124
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readCreateMBean
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.ge...
java
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.ge...
[ "public", "CreateMBean", "readCreateMBean", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "JSONObject", "json", "=", "parseObject", "(", "in", ")", ";", "CreateMBean", "ret", "=", "new", "Cr...
Decode a JSON document to retrieve a CreateMBean instance. @param in The stream to read JSON from @return The decoded CreateMBean instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @throws ClassNotFoundException If needed c...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "a", "CreateMBean", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1165-L1176
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readMBeanInfo
@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 = read...
java
@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 = read...
[ "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "public", "MBeanInfoWrapper", "readMBeanInfo", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "JSONObject", "json", "=", "parseObject", "(", "i...
Decode a JSON document to retrieve an MBeanInfoWrapper instance. Note that all descriptors are of class ImmutableDescriptor. @param in The stream to read JSON from @return The decoded MBeanInfoWrapper instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occ...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "an", "MBeanInfoWrapper", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1290-L1335
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readAttributeList
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)) { throwConv...
java
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)) { throwConv...
[ "public", "AttributeList", "readAttributeList", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "JSONArray", "json", "=", "parseArray", "(", "in", ")", ";", "AttributeList", "ret", "=", "new", ...
Decode a JSON document to retrieve an AttributeList instance. @param in The stream to read JSON from @return The decoded AttributeList instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @throws ClassNotFoundException If nee...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "an", "AttributeList", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1375-L1388
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readInvocation
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_SIGN...
java
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_SIGN...
[ "public", "Invocation", "readInvocation", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "JSONObject", "json", "=", "parseObject", "(", "in", ")", ";", "Invocation", "ret", "=", "new", "Invoc...
Decode a JSON document to retrieve an Invocation instance. @param in The stream to read JSON from @return The decoded Invocation instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @throws ClassNotFoundException If needed cl...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "an", "Invocation", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1419-L1425
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readNotificationArea
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 = read...
java
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 = read...
[ "public", "NotificationArea", "readNotificationArea", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", "{", "JSONObject", "json", "=", "parseObject", "(", "in", ")", ";", "NotificationArea", "ret", "=", "new", "NotificationArea", "...
Decode a JSON document to retrieve a NotificationArea instance. @param in The stream to read JSON from @return The decoded NotificationArea instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @see #writeNotificationArea(Outp...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "a", "NotificationArea", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1458-L1466
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readNotificationRegistration
public NotificationRegistration readNotificationRegistration(InputStream in) throws ConversionException, IOException, ClassNotFoundException { JSONObject json = parseObject(in); NotificationRegistration ret = new NotificationRegistration(); ret.objectName = readObjectName(json.get(N_OBJECTNAME))...
java
public NotificationRegistration readNotificationRegistration(InputStream in) throws ConversionException, IOException, ClassNotFoundException { JSONObject json = parseObject(in); NotificationRegistration ret = new NotificationRegistration(); ret.objectName = readObjectName(json.get(N_OBJECTNAME))...
[ "public", "NotificationRegistration", "readNotificationRegistration", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "JSONObject", "json", "=", "parseObject", "(", "in", ")", ";", "NotificationRegist...
Decode a JSON document to retrieve a NotificationRegistration instance. @param in The stream to read JSON from @return The decoded NotificationRegistration instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @throws ClassNot...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "a", "NotificationRegistration", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1500-L1506
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readServerNotificationRegistration
public ServerNotificationRegistration readServerNotificationRegistration(InputStream in) throws ConversionException, IOException, ClassNotFoundException { JSONObject json = parseObject(in); ServerNotificationRegistration ret = new ServerNotificationRegistration(); String name = readStringInterna...
java
public ServerNotificationRegistration readServerNotificationRegistration(InputStream in) throws ConversionException, IOException, ClassNotFoundException { JSONObject json = parseObject(in); ServerNotificationRegistration ret = new ServerNotificationRegistration(); String name = readStringInterna...
[ "public", "ServerNotificationRegistration", "readServerNotificationRegistration", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "JSONObject", "json", "=", "parseObject", "(", "in", ")", ";", "Server...
Decode a JSON document to retrieve a ServerNotificationRegistration instance. @param in The stream to read JSON from @return The decoded ServerNotificationRegistration instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @thr...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "a", "ServerNotificationRegistration", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1553-L1565
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.isSupportedNotificationFilter
public boolean isSupportedNotificationFilter(NotificationFilter filter) { Class<?> clazz = filter.getClass(); return clazz == AttributeChangeNotificationFilter.class || clazz == MBeanServerNotificationFilter.class || clazz == NotificationFilterSupport.class; }
java
public boolean isSupportedNotificationFilter(NotificationFilter filter) { Class<?> clazz = filter.getClass(); return clazz == AttributeChangeNotificationFilter.class || clazz == MBeanServerNotificationFilter.class || clazz == NotificationFilterSupport.class; }
[ "public", "boolean", "isSupportedNotificationFilter", "(", "NotificationFilter", "filter", ")", "{", "Class", "<", "?", ">", "clazz", "=", "filter", ".", "getClass", "(", ")", ";", "return", "clazz", "==", "AttributeChangeNotificationFilter", ".", "class", "||", ...
Check if a NotificationFilter is a standard filter that can be send to a JMX server. @param filter The filter to check. Can't be null. @return Whether the filter is a standard one
[ "Check", "if", "a", "NotificationFilter", "is", "a", "standard", "filter", "that", "can", "be", "send", "to", "a", "JMX", "server", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1574-L1579
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readNotificationFilters
public NotificationFilter[] readNotificationFilters(InputStream in) throws ConversionException, IOException, ClassNotFoundException { return readNotificationFiltersInternal(parseArray(in)); }
java
public NotificationFilter[] readNotificationFilters(InputStream in) throws ConversionException, IOException, ClassNotFoundException { return readNotificationFiltersInternal(parseArray(in)); }
[ "public", "NotificationFilter", "[", "]", "readNotificationFilters", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "return", "readNotificationFiltersInternal", "(", "parseArray", "(", "in", ")", "...
Decode a JSON document to retrieve a NotificationFilter array. @param in The stream to read JSON from @return The decoded NotificationFilter array @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @throws ClassNotFoundException If ...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "a", "NotificationFilter", "array", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1614-L1616
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readNotifications
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) { ...
java
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) { ...
[ "public", "Notification", "[", "]", "readNotifications", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "final", "NotificationRecord", "[", "]", "records", "=", "readNotificationRecords", "(", "i...
Decode a JSON document to retrieve an array of Notification instances. @param in The stream to read JSON from @return The decoded Notification array @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @throws ClassNotFoundException I...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "an", "array", "of", "Notification", "instances", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1791-L1798
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readNotificationSettings
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 =...
java
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 =...
[ "public", "NotificationSettings", "readNotificationSettings", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", "{", "JSONObject", "json", "=", "parseObject", "(", "in", ")", ";", "NotificationSettings", "ret", "=", "new", "Notificati...
Decode a JSON document to retrieve a NotificationSettings instance. @param in The stream to read JSON from @return The decoded NotificationSettings instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @see #writeNotificationS...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "a", "NotificationSettings", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1928-L1934
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.readThrowable
public Throwable readThrowable(InputStream in) throws ConversionException, IOException, ClassNotFoundException { byte[] byteInputStream = convertInputStreamToBytes(in); ByteArrayInputStream bais = new ByteArrayInputStream(byteInputStream); JSONObject json = null; try { json =...
java
public Throwable readThrowable(InputStream in) throws ConversionException, IOException, ClassNotFoundException { byte[] byteInputStream = convertInputStreamToBytes(in); ByteArrayInputStream bais = new ByteArrayInputStream(byteInputStream); JSONObject json = null; try { json =...
[ "public", "Throwable", "readThrowable", "(", "InputStream", "in", ")", "throws", "ConversionException", ",", "IOException", ",", "ClassNotFoundException", "{", "byte", "[", "]", "byteInputStream", "=", "convertInputStreamToBytes", "(", "in", ")", ";", "ByteArrayInputS...
Decode a JSON document to retrieve a Throwable instance. @param in The stream to read JSON from @return The decoded Throwable instance @throws ConversionException If JSON uses unexpected structure/format @throws IOException If an I/O error occurs or if JSON is ill-formed. @throws ClassNotFoundException If needed class...
[ "Decode", "a", "JSON", "document", "to", "retrieve", "a", "Throwable", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1967-L1982
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.convertInputStreamToBytes
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); } ...
java
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); } ...
[ "private", "byte", "[", "]", "convertInputStreamToBytes", "(", "InputStream", "in", ")", "throws", "IOException", "{", "ByteArrayOutputStream", "buffer", "=", "new", "ByteArrayOutputStream", "(", ")", ";", "int", "len", ";", "byte", "[", "]", "data", "=", "new...
Converts inputstream to bytearray @param in @return @throws IOException
[ "Converts", "inputstream", "to", "bytearray" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L1991-L2003
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.encodeStringAsBase64
public String encodeStringAsBase64(String value) throws ConversionException { try { return encodeStringAsBase64Internal(value); } catch (IOException e) { // Will never happen return null; } }
java
public String encodeStringAsBase64(String value) throws ConversionException { try { return encodeStringAsBase64Internal(value); } catch (IOException e) { // Will never happen return null; } }
[ "public", "String", "encodeStringAsBase64", "(", "String", "value", ")", "throws", "ConversionException", "{", "try", "{", "return", "encodeStringAsBase64Internal", "(", "value", ")", ";", "}", "catch", "(", "IOException", "e", ")", "{", "// Will never happen", "r...
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. @param value The String to encode @return The encoded base64 String @throws ConversionException If the String content can not be UTF-8 encoded.
[ "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", "return...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L2035-L2042
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java
JSONConverter.writeSimpleString
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('"'); }
java
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('"'); }
[ "private", "void", "writeSimpleString", "(", "OutputStream", "out", ",", "CharSequence", "value", ")", "throws", "IOException", "{", "out", ".", "write", "(", "'", "'", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "value", ".", "length", ...
The value can't be null.
[ "The", "value", "can", "t", "be", "null", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.client.rest/src/com/ibm/ws/jmx/connector/converter/JSONConverter.java#L2391-L2397
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java
JmsManagedConnectionFactoryImpl.getTemporaryQueueNamePrefix
@Override public String getTemporaryQueueNamePrefix() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getTemporaryQueueNamePrefix"); String prefix = jcaConnectionFactory.getTemporaryQueueNamePrefix(); if (TraceComponent.isAnyTracingEnable...
java
@Override public String getTemporaryQueueNamePrefix() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getTemporaryQueueNamePrefix"); String prefix = jcaConnectionFactory.getTemporaryQueueNamePrefix(); if (TraceComponent.isAnyTracingEnable...
[ "@", "Override", "public", "String", "getTemporaryQueueNamePrefix", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"g...
Get the temp queue name prefix @return prefix The String prefix set @see com.ibm.websphere.sib.api.jms.JmsConnectionFactory#getTemporaryQueueNamePrefix
[ "Get", "the", "temp", "queue", "name", "prefix" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java#L311-L319
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java
JmsManagedConnectionFactoryImpl.getPassword
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,...
java
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,...
[ "public", "String", "getPassword", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getPassword\"", ")", ";", "Strin...
This method is not added in the interface JmsManagedConnectionFactory since it's for internal use only. @return
[ "This", "method", "is", "not", "added", "in", "the", "interface", "JmsManagedConnectionFactory", "since", "it", "s", "for", "internal", "use", "only", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java#L405-L412
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java
JmsManagedConnectionFactoryImpl.getConnectionProximity
@Override public String getConnectionProximity() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getConnectionProximity"); String connectionProximity = jcaConnectionFactory.getConnectionProximity(); if (TraceComponent.isAnyTracingEnabled(...
java
@Override public String getConnectionProximity() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getConnectionProximity"); String connectionProximity = jcaConnectionFactory.getConnectionProximity(); if (TraceComponent.isAnyTracingEnabled(...
[ "@", "Override", "public", "String", "getConnectionProximity", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getCon...
Gets the connection proximity @return The connection proximity @see com.ibm.websphere.sib.api.jms.JmsConnectionFactory#getConnectionProximity
[ "Gets", "the", "connection", "proximity" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java#L422-L430
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java
JmsManagedConnectionFactoryImpl.getProviderEndpoints
@Override public String getProviderEndpoints() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getProviderEndpoints"); String providerEndpoints = jcaConnectionFactory.getProviderEndpoints(); if (TraceComponent.isAnyTracingEnabled() && tc....
java
@Override public String getProviderEndpoints() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getProviderEndpoints"); String providerEndpoints = jcaConnectionFactory.getProviderEndpoints(); if (TraceComponent.isAnyTracingEnabled() && tc....
[ "@", "Override", "public", "String", "getProviderEndpoints", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getProvi...
Gets the provider endpoints 181802.2 @return The provider endpoints @see com.ibm.websphere.sib.api.jms.JmsConnectionFactory#getProviderEndpoints
[ "Gets", "the", "provider", "endpoints", "181802", ".", "2" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java#L441-L449
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java
JmsManagedConnectionFactoryImpl.getTargetTransportChain
@Override public String getTargetTransportChain() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getTargetTransportChain"); String targetTransportChain = jcaConnectionFactory.getTargetTransportChain(); if (TraceComponent.isAnyTracingEnab...
java
@Override public String getTargetTransportChain() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getTargetTransportChain"); String targetTransportChain = jcaConnectionFactory.getTargetTransportChain(); if (TraceComponent.isAnyTracingEnab...
[ "@", "Override", "public", "String", "getTargetTransportChain", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getTa...
Gets the remote protocol @return The remote protocol @see com.ibm.websphere.sib.api.jms.JmsConnectionFactory#getRemoteProtocol
[ "Gets", "the", "remote", "protocol" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java#L459-L467
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java
JmsManagedConnectionFactoryImpl.getTarget
@Override public String getTarget() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getTarget"); String remoteTargetGroup = jcaConnectionFactory.getTarget(); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Sib...
java
@Override public String getTarget() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getTarget"); String remoteTargetGroup = jcaConnectionFactory.getTarget(); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Sib...
[ "@", "Override", "public", "String", "getTarget", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getTarget\"", ")"...
Gets the target @return The target @see com.ibm.websphere.sib.api.jms.JmsConnectionFactory#getTarget
[ "Gets", "the", "target" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java#L477-L485
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java
JmsManagedConnectionFactoryImpl.getTargetType
@Override public String getTargetType() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getTargetType"); String remoteTargetType = jcaConnectionFactory.getTargetType(); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) ...
java
@Override public String getTargetType() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getTargetType"); String remoteTargetType = jcaConnectionFactory.getTargetType(); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) ...
[ "@", "Override", "public", "String", "getTargetType", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getTargetType\"...
Gets the target type @return The target type @see com.ibm.websphere.sib.api.jms.JmsConnectionFactory#getTargetType
[ "Gets", "the", "target", "type" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsManagedConnectionFactoryImpl.java#L495-L503
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer/src/com/ibm/ws/container/ErrorPage.java
ErrorPage.getException
@SuppressWarnings("rawtypes") public Class getException() { try { return Class.forName(errorParam, true, Thread.currentThread().getContextClassLoader()).newInstance().getClass(); } catch (Exception e) { return null; } }
java
@SuppressWarnings("rawtypes") public Class getException() { try { return Class.forName(errorParam, true, Thread.currentThread().getContextClassLoader()).newInstance().getClass(); } catch (Exception e) { return null; } }
[ "@", "SuppressWarnings", "(", "\"rawtypes\"", ")", "public", "Class", "getException", "(", ")", "{", "try", "{", "return", "Class", ".", "forName", "(", "errorParam", ",", "true", ",", "Thread", ".", "currentThread", "(", ")", ".", "getContextClassLoader", "...
Use of the WAR class loader is correct.
[ "Use", "of", "the", "WAR", "class", "loader", "is", "correct", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/ws/container/ErrorPage.java#L81-L88
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer/src/com/ibm/ws/container/ErrorPage.java
ErrorPage.getException
@SuppressWarnings("rawtypes") public Class getException(ClassLoader warClassLoader) { try { return Class.forName(errorParam, true, warClassLoader); } catch (Exception e) { return null; } }
java
@SuppressWarnings("rawtypes") public Class getException(ClassLoader warClassLoader) { try { return Class.forName(errorParam, true, warClassLoader); } catch (Exception e) { return null; } }
[ "@", "SuppressWarnings", "(", "\"rawtypes\"", ")", "public", "Class", "getException", "(", "ClassLoader", "warClassLoader", ")", "{", "try", "{", "return", "Class", ".", "forName", "(", "errorParam", ",", "true", ",", "warClassLoader", ")", ";", "}", "catch", ...
PK52168 - STARTS
[ "PK52168", "-", "STARTS" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/ws/container/ErrorPage.java#L91-L98
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/asn1/BERInputStream.java
BERInputStream.readIndefiniteLengthFully
private byte[] readIndefiniteLengthFully() throws IOException { ByteArrayOutputStream bOut = new ByteArrayOutputStream(); int b, b1; b1 = read(); while ((b = read()) >= 0) { if (b1 == 0 && b == 0) { break...
java
private byte[] readIndefiniteLengthFully() throws IOException { ByteArrayOutputStream bOut = new ByteArrayOutputStream(); int b, b1; b1 = read(); while ((b = read()) >= 0) { if (b1 == 0 && b == 0) { break...
[ "private", "byte", "[", "]", "readIndefiniteLengthFully", "(", ")", "throws", "IOException", "{", "ByteArrayOutputStream", "bOut", "=", "new", "ByteArrayOutputStream", "(", ")", ";", "int", "b", ",", "b1", ";", "b1", "=", "read", "(", ")", ";", "while", "(...
read a string of bytes representing an indefinite length object.
[ "read", "a", "string", "of", "bytes", "representing", "an", "indefinite", "length", "object", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/asn1/BERInputStream.java#L55-L75
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/impl/SectionUniqueIdCounter.java
SectionUniqueIdCounter.generateUniqueIdCache
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(); } re...
java
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(); } re...
[ "public", "static", "String", "[", "]", "generateUniqueIdCache", "(", "String", "prefix", ",", "int", "count", ")", "{", "String", "[", "]", "cache", "=", "new", "String", "[", "count", "]", ";", "SectionUniqueIdCounter", "counter", "=", "new", "SectionUniqu...
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. @param prefix @param count @return
[ "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", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/impl/SectionUniqueIdCounter.java#L102-L111
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer.servlet.4.0/src/com/ibm/ws/webcontainer40/srt/http/HttpPushBuilder.java
HttpPushBuilder.getHeaders
@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> ...
java
@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> ...
[ "@", "Override", "public", "Set", "<", "HeaderField", ">", "getHeaders", "(", ")", "{", "HashSet", "<", "HeaderField", ">", "headerFields", "=", "new", "HashSet", "<", "HeaderField", ">", "(", ")", ";", "if", "(", "_headers", ".", "size", "(", ")", ">"...
Methods required by com.ibm.wsspi.http.ee8.HttpPushBuilder
[ "Methods", "required", "by", "com", ".", "ibm", ".", "wsspi", ".", "http", ".", "ee8", ".", "HttpPushBuilder" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.servlet.4.0/src/com/ibm/ws/webcontainer40/srt/http/HttpPushBuilder.java#L349-L368
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer.servlet.4.0/src/com/ibm/ws/webcontainer40/srt/http/HttpPushBuilder.java
HttpPushBuilder.reset
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; _pathQueryS...
java
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; _pathQueryS...
[ "private", "void", "reset", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isDebugEnabled", "(", ")", ")", "{", "Tr", ".", "debug", "(", "tc", ",", "\"reset()\"", ",", "\"Clearing the path and removing con...
Reset the "state" of this PushBuilder before next push
[ "Reset", "the", "state", "of", "this", "PushBuilder", "before", "next", "push" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.servlet.4.0/src/com/ibm/ws/webcontainer40/srt/http/HttpPushBuilder.java#L381-L398
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.jaas.common/src/com/ibm/ws/security/jaas/common/JAASConfigurationFactory.java
JAASConfigurationFactory.installJAASConfigurationFromJAASConfigFile
protected synchronized void installJAASConfigurationFromJAASConfigFile() { JAASLoginConfig jaasLoginConfig = jaasLoginConfigRef.getService(); if (jaasLoginConfig != null) { jaasConfigurationEntriesFromJaasConfig = jaasLoginConfig.getEntries(); if (jaasConfigurationEntriesFromJaas...
java
protected synchronized void installJAASConfigurationFromJAASConfigFile() { JAASLoginConfig jaasLoginConfig = jaasLoginConfigRef.getService(); if (jaasLoginConfig != null) { jaasConfigurationEntriesFromJaasConfig = jaasLoginConfig.getEntries(); if (jaasConfigurationEntriesFromJaas...
[ "protected", "synchronized", "void", "installJAASConfigurationFromJAASConfigFile", "(", ")", "{", "JAASLoginConfig", "jaasLoginConfig", "=", "jaasLoginConfigRef", ".", "getService", "(", ")", ";", "if", "(", "jaasLoginConfig", "!=", "null", ")", "{", "jaasConfigurationE...
This method optional install the JAAS configuration that specified in the jaas.conf file
[ "This", "method", "optional", "install", "the", "JAAS", "configuration", "that", "specified", "in", "the", "jaas", ".", "conf", "file" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.jaas.common/src/com/ibm/ws/security/jaas/common/JAASConfigurationFactory.java#L116-L128
train
OpenLiberty/open-liberty
dev/com.ibm.ws.repository.resolver/src/com/ibm/ws/repository/resolver/ProductRequirementInformation.java
ProductRequirementInformation.createFromAppliesTo
@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 " + applie...
java
@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 " + applie...
[ "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "// SelfExtractor has no generics", "public", "static", "List", "<", "ProductRequirementInformation", ">", "createFromAppliesTo", "(", "String", "appliesTo", ")", "{", "if", "(", "appliesTo", "==", "null", "||", "app...
Parse an appliesTo string to produce a list of product requirements @param appliesTo the appliesTo string @return the product requirements information
[ "Parse", "an", "appliesTo", "string", "to", "produce", "a", "list", "of", "product", "requirements" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.repository.resolver/src/com/ibm/ws/repository/resolver/ProductRequirementInformation.java#L118-L149
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.getMembers
Neighbour[] getMembers() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "getMembers"); SibTr.exit(tc, "getMembers"); } return iNeighbours; }
java
Neighbour[] getMembers() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "getMembers"); SibTr.exit(tc, "getMembers"); } return iNeighbours; }
[ "Neighbour", "[", "]", "getMembers", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "{", "SibTr", ".", "entry", "(", "tc", ",", "\"getMembers\"", ")", ";", "SibTr", "....
Method that returns all the Neighbours for this Bus @return Neighbour[] An array of all the active Neighbours
[ "Method", "that", "returns", "all", "the", "Neighbours", "for", "this", "Bus" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L113-L122
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.getLocalSubscriptions
Hashtable getLocalSubscriptions() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "getLocalSubscriptions"); SibTr.exit(tc, "getLocalSubscriptions", iLocalSubscriptions); } return (Hashtable) iLocalSubscriptions.clone(); }
java
Hashtable getLocalSubscriptions() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "getLocalSubscriptions"); SibTr.exit(tc, "getLocalSubscriptions", iLocalSubscriptions); } return (Hashtable) iLocalSubscriptions.clone(); }
[ "Hashtable", "getLocalSubscriptions", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "{", "SibTr", ".", "entry", "(", "tc", ",", "\"getLocalSubscriptions\"", ")", ";", "SibT...
Gets all the local subscriptions that have been sent to this Bus. Returns a cloned list of subscriptions to the requester. @return Hashtable The cloned subscription hashtable.
[ "Gets", "all", "the", "local", "subscriptions", "that", "have", "been", "sent", "to", "this", "Bus", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L131-L140
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.getRemoteSubscriptions
Hashtable getRemoteSubscriptions() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "getRemoteSubscriptions"); SibTr.exit(tc, "getRemoteSubscriptions", iRemoteSubscriptions); } return (Hashtable) iRemoteSubscriptions.clone(); }
java
Hashtable getRemoteSubscriptions() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, "getRemoteSubscriptions"); SibTr.exit(tc, "getRemoteSubscriptions", iRemoteSubscriptions); } return (Hashtable) iRemoteSubscriptions.clone(); }
[ "Hashtable", "getRemoteSubscriptions", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "{", "SibTr", ".", "entry", "(", "tc", ",", "\"getRemoteSubscriptions\"", ")", ";", "Si...
Gets all the remote subscriptions that have been sent to this Bus. Returns a cloned list of subscriptions to the requester. @return Hashtable The cloned subscription hashtable.
[ "Gets", "all", "the", "remote", "subscriptions", "that", "have", "been", "sent", "to", "this", "Bus", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L149-L158
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.addRemoteSubscription
SubscriptionMessageHandler addRemoteSubscription(SIBUuid12 topicSpace, String topic, SubscriptionMessageHandler messageHandler, boolean sendProxy) { if (TraceCom...
java
SubscriptionMessageHandler addRemoteSubscription(SIBUuid12 topicSpace, String topic, SubscriptionMessageHandler messageHandler, boolean sendProxy) { if (TraceCom...
[ "SubscriptionMessageHandler", "addRemoteSubscription", "(", "SIBUuid12", "topicSpace", ",", "String", "topic", ",", "SubscriptionMessageHandler", "messageHandler", ",", "boolean", "sendProxy", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", ...
Adds a remote subscription to this ME. This subscription would have originated from another Bus/bus @param topicSpace The subscriptions topicSpace. @param topic The subscriptions topic. @param messageHandler The subscriptionMessage that will be used for sending to Neighbouring ME's @param sendProxy ...
[ "Adds", "a", "remote", "subscription", "to", "this", "ME", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L222-L246
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.removeRemoteSubscription
SubscriptionMessageHandler removeRemoteSubscription( SIBUuid12 topicSpace, String topic, SubscriptionMessageHandler messageHandler, boolean sendProxy) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removeRemoteSubscription", new Object[] { ...
java
SubscriptionMessageHandler removeRemoteSubscription( SIBUuid12 topicSpace, String topic, SubscriptionMessageHandler messageHandler, boolean sendProxy) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removeRemoteSubscription", new Object[] { ...
[ "SubscriptionMessageHandler", "removeRemoteSubscription", "(", "SIBUuid12", "topicSpace", ",", "String", "topic", ",", "SubscriptionMessageHandler", "messageHandler", ",", "boolean", "sendProxy", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")",...
Called when an unsubscribe needs to be propagated to the group. Decrements the reference count on the subscription for any subscriptions registered remotely. @param topicSpace The topicSpace for the subscription @param topic The topic of the subscription @param messageHandler The message that is used t...
[ "Called", "when", "an", "unsubscribe", "needs", "to", "be", "propagated", "to", "the", "group", ".", "Decrements", "the", "reference", "count", "on", "the", "subscription", "for", "any", "subscriptions", "registered", "remotely", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L426-L450
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.removeSubscription
private SubscriptionMessageHandler removeSubscription( SIBUuid12 topicSpace, String topic, SubscriptionMessageHandler messageHandler, Hashtable subscriptionsTable, boolean sendProxy) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "remo...
java
private SubscriptionMessageHandler removeSubscription( SIBUuid12 topicSpace, String topic, SubscriptionMessageHandler messageHandler, Hashtable subscriptionsTable, boolean sendProxy) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "remo...
[ "private", "SubscriptionMessageHandler", "removeSubscription", "(", "SIBUuid12", "topicSpace", ",", "String", "topic", ",", "SubscriptionMessageHandler", "messageHandler", ",", "Hashtable", "subscriptionsTable", ",", "boolean", "sendProxy", ")", "{", "if", "(", "TraceComp...
Called when an unsubscribe needs to be propagated to the group. Decrements the reference count on the subscription. @param topicSpace The topicSpace for the subscription @param topic The topic of the subscription @param sendProxy Indicates whether to send proxy . @param messageHandler The messa...
[ "Called", "when", "an", "unsubscribe", "needs", "to", "be", "propagated", "to", "the", "group", ".", "Decrements", "the", "reference", "count", "on", "the", "subscription", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L464-L515
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.sendToNeighbours
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 (int i = ...
java
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 (int i = ...
[ "protected", "void", "sendToNeighbours", "(", "SubscriptionMessage", "msg", ",", "Transaction", "transaction", ",", "boolean", "startup", ")", "throws", "SIResourceException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", ...
Sends the messages to all the Neighbours in this Bus. @param transaction The transaction to send the message under @param msg The message to be sent.
[ "Sends", "the", "messages", "to", "all", "the", "Neighbours", "in", "this", "Bus", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L522-L542
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.addNeighbour
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[iNeighbours.leng...
java
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[iNeighbours.leng...
[ "void", "addNeighbour", "(", "Neighbour", "neighbour", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"addNeighbour\"", ",", "neighbour",...
Adds a reference of Neighbour to this Bus group @param neighbour The neighbour to be added to the group
[ "Adds", "a", "reference", "of", "Neighbour", "to", "this", "Bus", "group" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L550-L563
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.removeNeighbour
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...
java
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...
[ "void", "removeNeighbour", "(", "Neighbour", "neighbour", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"removeNeighbour\"", ",", "neigh...
Removes a Neighbour reference from this Bus group @param neighbour The Neighbour to be removed
[ "Removes", "a", "Neighbour", "reference", "from", "this", "Bus", "group" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L571-L600
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.doProxySubscribeOp
private SubscriptionMessageHandler doProxySubscribeOp( int op, MESubscription subscription, SubscriptionMessageHandler messageHandler, Hashtable subscriptionsTable, boolean sendProxy) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "doP...
java
private SubscriptionMessageHandler doProxySubscribeOp( int op, MESubscription subscription, SubscriptionMessageHandler messageHandler, Hashtable subscriptionsTable, boolean sendProxy) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "doP...
[ "private", "SubscriptionMessageHandler", "doProxySubscribeOp", "(", "int", "op", ",", "MESubscription", "subscription", ",", "SubscriptionMessageHandler", "messageHandler", ",", "Hashtable", "subscriptionsTable", ",", "boolean", "sendProxy", ")", "{", "if", "(", "TraceCom...
Performs a proxy subscription operation for the given subscription. @param op The operation to be performed. @param subscription The subscription. @param sendProxy Indicates whether to send the proxy message. @param messageHandler The handler used for creating the message @return SubscriptionMe...
[ "Performs", "a", "proxy", "subscription", "operation", "for", "the", "given", "subscription", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L614-L717
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.generateResetSubscriptionMessage
protected SubscriptionMessage generateResetSubscriptionMessage() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "generateResetSubscriptionMessage"); // Get the Message Handler for doing this operation. final SubscriptionMessageHandler messageHandler = i...
java
protected SubscriptionMessage generateResetSubscriptionMessage() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "generateResetSubscriptionMessage"); // Get the Message Handler for doing this operation. final SubscriptionMessageHandler messageHandler = i...
[ "protected", "SubscriptionMessage", "generateResetSubscriptionMessage", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"generateResetSubsc...
Generates the reset subscription message that should be sent to a member, or members of this Bus. @return a new ResetSubscriptionMessage
[ "Generates", "the", "reset", "subscription", "message", "that", "should", "be", "sent", "to", "a", "member", "or", "members", "of", "this", "Bus", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L770-L797
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.generateReplySubscriptionMessage
protected SubscriptionMessage generateReplySubscriptionMessage() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "generateReplySubscriptionMessage"); // Get the Message Handler for doing this operation. final SubscriptionMessageHandler messageHandler = ...
java
protected SubscriptionMessage generateReplySubscriptionMessage() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "generateReplySubscriptionMessage"); // Get the Message Handler for doing this operation. final SubscriptionMessageHandler messageHandler = ...
[ "protected", "SubscriptionMessage", "generateReplySubscriptionMessage", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"generateReplySubsc...
Generates the reply subscription message that should be sent to a the neighbor on the Bus who sent the request. @return a new ReplySubscriptionMessage
[ "Generates", "the", "reply", "subscription", "message", "that", "should", "be", "sent", "to", "a", "the", "neighbor", "on", "the", "Bus", "who", "sent", "the", "request", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L805-L834
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.addToMessage
private final void addToMessage(SubscriptionMessageHandler messageHandler, Hashtable subscriptions) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "addToMessage", new Object[]{messageHandler, subscriptions}); // Get the e...
java
private final void addToMessage(SubscriptionMessageHandler messageHandler, Hashtable subscriptions) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "addToMessage", new Object[]{messageHandler, subscriptions}); // Get the e...
[ "private", "final", "void", "addToMessage", "(", "SubscriptionMessageHandler", "messageHandler", ",", "Hashtable", "subscriptions", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibT...
Adds the subscriptions to the subscription message @param messageHandler The message to add to @param subscriptions The subscriptions to be added.
[ "Adds", "the", "subscriptions", "to", "the", "subscription", "message" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L842-L861
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java
BusGroup.resetListFailed
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()...
java
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()...
[ "void", "resetListFailed", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"resetListFailed\"", ")", ";", "for", "(", "int", "i",...
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.
[ "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", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/BusGroup.java#L867-L880
train
OpenLiberty/open-liberty
dev/com.ibm.ws.channelfw/src/com/ibm/ws/udpchannel/internal/WorkQueueManager.java
WorkQueueManager.getMultiThreadedWorker
protected MultiThreadedWorker getMultiThreadedWorker(SelectionKey key, long threadIdfWQM) { MultiThreadedWorker worker = null; synchronized (multiThreadedObjectPool) { worker = (MultiThreadedWorker) multiThreadedObjectPool.get(); } if (worker == null) { worker =...
java
protected MultiThreadedWorker getMultiThreadedWorker(SelectionKey key, long threadIdfWQM) { MultiThreadedWorker worker = null; synchronized (multiThreadedObjectPool) { worker = (MultiThreadedWorker) multiThreadedObjectPool.get(); } if (worker == null) { worker =...
[ "protected", "MultiThreadedWorker", "getMultiThreadedWorker", "(", "SelectionKey", "key", ",", "long", "threadIdfWQM", ")", "{", "MultiThreadedWorker", "worker", "=", "null", ";", "synchronized", "(", "multiThreadedObjectPool", ")", "{", "worker", "=", "(", "MultiThre...
Retrieve a MultiThreadedWorker object from the object pool. @param key @param threadIdfWQM @return MultiThreadedWorker
[ "Retrieve", "a", "MultiThreadedWorker", "object", "from", "the", "object", "pool", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/udpchannel/internal/WorkQueueManager.java#L1062-L1075
train
OpenLiberty/open-liberty
dev/com.ibm.ws.kernel.service.location/src/com/ibm/ws/kernel/service/location/internal/SymbolRegistry.java
SymbolRegistry.resolveSymbolicString
String resolveSymbolicString(String symbolicPath) { if (symbolicPath == null) throw new NullPointerException("Path must be non-null"); return resolveStringSymbols(symbolicPath, symbolicPath, true, 0, true); }
java
String resolveSymbolicString(String symbolicPath) { if (symbolicPath == null) throw new NullPointerException("Path must be non-null"); return resolveStringSymbols(symbolicPath, symbolicPath, true, 0, true); }
[ "String", "resolveSymbolicString", "(", "String", "symbolicPath", ")", "{", "if", "(", "symbolicPath", "==", "null", ")", "throw", "new", "NullPointerException", "(", "\"Path must be non-null\"", ")", ";", "return", "resolveStringSymbols", "(", "symbolicPath", ",", ...
Resolves the given string, evaluating all symbols, and path-normalizes the value. @param symbolicPath @return The resolved value, path-normalized.
[ "Resolves", "the", "given", "string", "evaluating", "all", "symbols", "and", "path", "-", "normalizes", "the", "value", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.service.location/src/com/ibm/ws/kernel/service/location/internal/SymbolRegistry.java#L200-L205
train
OpenLiberty/open-liberty
dev/com.ibm.ws.kernel.service.location/src/com/ibm/ws/kernel/service/location/internal/SymbolRegistry.java
SymbolRegistry.resolveRawSymbolicString
String resolveRawSymbolicString(String string) { if (string == null) throw new NullPointerException("String must be non-null"); return resolveStringSymbols(string, string, true, 0, false); }
java
String resolveRawSymbolicString(String string) { if (string == null) throw new NullPointerException("String must be non-null"); return resolveStringSymbols(string, string, true, 0, false); }
[ "String", "resolveRawSymbolicString", "(", "String", "string", ")", "{", "if", "(", "string", "==", "null", ")", "throw", "new", "NullPointerException", "(", "\"String must be non-null\"", ")", ";", "return", "resolveStringSymbols", "(", "string", ",", "string", "...
Resolves the given string, evaluating all symbols, but does NOT path-normalize the value. @param string @return The resolved value, not path-normalized.
[ "Resolves", "the", "given", "string", "evaluating", "all", "symbols", "but", "does", "NOT", "path", "-", "normalize", "the", "value", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.service.location/src/com/ibm/ws/kernel/service/location/internal/SymbolRegistry.java#L215-L220
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java
SSOCookieHelperImpl.addJwtCookies
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_...
java
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_...
[ "protected", "boolean", "addJwtCookies", "(", "String", "cookieByteString", ",", "HttpServletRequest", "req", ",", "HttpServletResponse", "resp", ")", "{", "String", "baseName", "=", "getJwtCookieName", "(", ")", ";", "if", "(", "baseName", "==", "null", ")", "{...
Add the cookie or cookies as needed, depending on size of token. Return true if any cookies were added
[ "Add", "the", "cookie", "or", "cookies", "as", "needed", "depending", "on", "size", "of", "token", ".", "Return", "true", "if", "any", "cookies", "were", "added" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java#L129-L151
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java
SSOCookieHelperImpl.removeSSOCookieFromResponse
@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.ibm.wsspi...
java
@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.ibm.wsspi...
[ "@", "Override", "public", "void", "removeSSOCookieFromResponse", "(", "HttpServletResponse", "resp", ")", "{", "if", "(", "resp", "instanceof", "com", ".", "ibm", ".", "wsspi", ".", "webcontainer", ".", "servlet", ".", "IExtendedResponse", ")", "{", "(", "(",...
Remove a cookie from the response @param subject @param resp
[ "Remove", "a", "cookie", "from", "the", "response" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java#L224-L230
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java
SSOCookieHelperImpl.updateCookieCache
protected synchronized void updateCookieCache(ByteArray cookieBytes, String cookieByteString) { if (cookieByteStringCache.size() > MAX_COOKIE_STRING_ENTRIES) cookieByteStringCache.clear(); if (cookieByteString != null) cookieByteStringCache.put(cookieBytes, cookieByteString); ...
java
protected synchronized void updateCookieCache(ByteArray cookieBytes, String cookieByteString) { if (cookieByteStringCache.size() > MAX_COOKIE_STRING_ENTRIES) cookieByteStringCache.clear(); if (cookieByteString != null) cookieByteStringCache.put(cookieBytes, cookieByteString); ...
[ "protected", "synchronized", "void", "updateCookieCache", "(", "ByteArray", "cookieBytes", ",", "String", "cookieByteString", ")", "{", "if", "(", "cookieByteStringCache", ".", "size", "(", ")", ">", "MAX_COOKIE_STRING_ENTRIES", ")", "cookieByteStringCache", ".", "cle...
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. @param cookieBytes @param 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", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java#L252-L257
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java
SSOCookieHelperImpl.isJwtCookie
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; ...
java
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; ...
[ "protected", "boolean", "isJwtCookie", "(", "String", "baseName", ",", "String", "cookieName", ")", "{", "if", "(", "baseName", ".", "equalsIgnoreCase", "(", "cookieName", ")", ")", "return", "true", ";", "if", "(", "!", "(", "cookieName", ".", "startsWith",...
see if cookiename is a jwtsso cookie based on the name.
[ "see", "if", "cookiename", "is", "a", "jwtsso", "cookie", "based", "on", "the", "name", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java#L322-L333
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java
SSOCookieHelperImpl.resolveCookieName
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)) { ...
java
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)) { ...
[ "protected", "String", "resolveCookieName", "(", "Cookie", "[", "]", "cookies", ")", "{", "boolean", "foundCookie", "=", "false", ";", "String", "ssoCookieName", "=", "this", ".", "getSSOCookiename", "(", ")", ";", "if", "(", "cookies", "!=", "null", ")", ...
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
[ "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",...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java#L339-L354
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java
SSOCookieHelperImpl.getJwtSsoTokenFromCookies
@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; //...
java
@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; //...
[ "@", "Override", "public", "String", "getJwtSsoTokenFromCookies", "(", "HttpServletRequest", "req", ",", "String", "baseName", ")", "{", "StringBuffer", "tokenStr", "=", "new", "StringBuffer", "(", ")", ";", "String", "cookieName", "=", "baseName", ";", "for", "...
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. @param req @return the token String or null if nothing found.
[ "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", "me...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer.security/src/com/ibm/ws/webcontainer/security/SSOCookieHelperImpl.java#L519-L537
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/asn1/DERGeneralizedTime.java
DERGeneralizedTime.getInstance
public static DERGeneralizedTime getInstance( Object obj) { if (obj == null || obj instanceof DERGeneralizedTime) { return (DERGeneralizedTime)obj; } if (obj instanceof ASN1OctetString) { return new DERGeneralizedTime(((ASN1OctetString)obj).g...
java
public static DERGeneralizedTime getInstance( Object obj) { if (obj == null || obj instanceof DERGeneralizedTime) { return (DERGeneralizedTime)obj; } if (obj instanceof ASN1OctetString) { return new DERGeneralizedTime(((ASN1OctetString)obj).g...
[ "public", "static", "DERGeneralizedTime", "getInstance", "(", "Object", "obj", ")", "{", "if", "(", "obj", "==", "null", "||", "obj", "instanceof", "DERGeneralizedTime", ")", "{", "return", "(", "DERGeneralizedTime", ")", "obj", ";", "}", "if", "(", "obj", ...
return a generalized time from the passed in object @exception IllegalArgumentException if the object cannot be converted.
[ "return", "a", "generalized", "time", "from", "the", "passed", "in", "object" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/asn1/DERGeneralizedTime.java#L36-L50
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/ws/Transaction/JTA/JTAResourceBase.java
JTAResourceBase.start
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; ...
java
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; ...
[ "public", "final", "void", "start", "(", ")", "throws", "XAException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"start\"", ",", "new", "Object", "[", "]", "{", "_resource", ",", "printState", "...
Associate the underlying XAResource with a transaction. @exception XAException thrown if raised by the xa_start request or the resource is in the wrong state to receive a start flow.
[ "Associate", "the", "underlying", "XAResource", "with", "a", "transaction", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/ws/Transaction/JTA/JTAResourceBase.java#L77-L147
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/ws/Transaction/JTA/JTAResourceBase.java
JTAResourceBase.end
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.printFlag(flag)}); int new...
java
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.printFlag(flag)}); int new...
[ "public", "final", "void", "end", "(", "int", "flag", ")", "throws", "XAException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"end\"", ",", "new", "Object", "[", "]", "{", "_resource", ",", "U...
Terminate the association of the XAResource with this transaction. @param flag The flag to pass to the end flow TMSUSPEND, TMFAIL, or TMSUCCESS @exception XAException thrown if raised by the xa_end request or the resource is in the wrong state to receive an end flow.
[ "Terminate", "the", "association", "of", "the", "XAResource", "with", "this", "transaction", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/ws/Transaction/JTA/JTAResourceBase.java#L160-L248
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java
JsMainAdminComponentImpl.activate
@Activate protected void activate(ComponentContext context, Map<String, Object> properties) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, CLASS_NAME + "activate", new Object[] { context, ...
java
@Activate protected void activate(ComponentContext context, Map<String, Object> properties) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, CLASS_NAME + "activate", new Object[] { context, ...
[ "@", "Activate", "protected", "void", "activate", "(", "ComponentContext", "context", ",", "Map", "<", "String", ",", "Object", ">", "properties", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", ...
This method is call by the declarative service when the feature is activated
[ "This", "method", "is", "call", "by", "the", "declarative", "service", "when", "the", "feature", "is", "activated" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java#L93-L118
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java
JsMainAdminComponentImpl.modified
@Modified protected void modified(ComponentContext context, Map<String, Object> properties) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, CLASS_NAME + "modified", new Object[] { context, ...
java
@Modified protected void modified(ComponentContext context, Map<String, Object> properties) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) { SibTr.entry(tc, CLASS_NAME + "modified", new Object[] { context, ...
[ "@", "Modified", "protected", "void", "modified", "(", "ComponentContext", "context", ",", "Map", "<", "String", ",", "Object", ">", "properties", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", ...
This method is call by the declarative service when there is configuration change
[ "This", "method", "is", "call", "by", "the", "declarative", "service", "when", "there", "is", "configuration", "change" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java#L124-L159
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java
JsMainAdminComponentImpl.setMessageStore
@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...
java
@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...
[ "@", "Reference", "(", "name", "=", "KEY_MESSAGE_STORE", ",", "service", "=", "MessageStore", ".", "class", ")", "protected", "void", "setMessageStore", "(", "ServiceReference", "<", "MessageStore", ">", "ref", ")", "{", "if", "(", "TraceComponent", ".", "isAn...
Declarative Services method for setting the MessageStore service reference. @param ref reference to the service
[ "Declarative", "Services", "method", "for", "setting", "the", "MessageStore", "service", "reference", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java#L233-L241
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java
JsMainAdminComponentImpl.unsetMessageStore
protected void unsetMessageStore(ServiceReference<MessageStore> ref) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.entry(tc, "unsetMessageStore", ref); messageStoreRef.unsetReference(ref); if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) ...
java
protected void unsetMessageStore(ServiceReference<MessageStore> ref) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.entry(tc, "unsetMessageStore", ref); messageStoreRef.unsetReference(ref); if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) ...
[ "protected", "void", "unsetMessageStore", "(", "ServiceReference", "<", "MessageStore", ">", "ref", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isDebugEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc...
Declarative Services method for unsetting the MessageStore service reference. @param ref reference to the service
[ "Declarative", "Services", "method", "for", "unsetting", "the", "MessageStore", "service", "reference", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java#L250-L257
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java
JsMainAdminComponentImpl.setDestinationAddressFactory
@Reference(name = KEY_DESTINATION_ADDRESS_FACTORY, service = SIDestinationAddressFactory.class) protected void setDestinationAddressFactory(ServiceReference<SIDestinationAddressFactory> ref) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.entry(tc, "setDestinationAddress...
java
@Reference(name = KEY_DESTINATION_ADDRESS_FACTORY, service = SIDestinationAddressFactory.class) protected void setDestinationAddressFactory(ServiceReference<SIDestinationAddressFactory> ref) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.entry(tc, "setDestinationAddress...
[ "@", "Reference", "(", "name", "=", "KEY_DESTINATION_ADDRESS_FACTORY", ",", "service", "=", "SIDestinationAddressFactory", ".", "class", ")", "protected", "void", "setDestinationAddressFactory", "(", "ServiceReference", "<", "SIDestinationAddressFactory", ">", "ref", ")",...
Declarative Services method for setting the DestinationAddressFactory service reference. @param ref reference to the service
[ "Declarative", "Services", "method", "for", "setting", "the", "DestinationAddressFactory", "service", "reference", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java#L266-L274
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java
JsMainAdminComponentImpl.unsetDestinationAddressFactory
protected void unsetDestinationAddressFactory(ServiceReference<SIDestinationAddressFactory> ref) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.entry(tc, "unsetDestinationAddressFactory", ref); destinationAddressFactoryRef.setReference(ref); if (TraceCompone...
java
protected void unsetDestinationAddressFactory(ServiceReference<SIDestinationAddressFactory> ref) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.entry(tc, "unsetDestinationAddressFactory", ref); destinationAddressFactoryRef.setReference(ref); if (TraceCompone...
[ "protected", "void", "unsetDestinationAddressFactory", "(", "ServiceReference", "<", "SIDestinationAddressFactory", ">", "ref", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isDebugEnabled", "(", ")", ")", "SibTr", ...
Declarative Services method for unsetting the DestinationAddressFactory service reference. @param ref reference to the service
[ "Declarative", "Services", "method", "for", "unsetting", "the", "DestinationAddressFactory", "service", "reference", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java#L283-L290
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java
JsMainAdminComponentImpl.setJsAdminService
@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(ref)...
java
@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(ref)...
[ "@", "Reference", "(", "name", "=", "KEY_JS_ADMIN_SERVICE", ",", "service", "=", "JsAdminService", ".", "class", ")", "protected", "void", "setJsAdminService", "(", "ServiceReference", "<", "JsAdminService", ">", "ref", ")", "{", "if", "(", "TraceComponent", "."...
Declarative Services method for setting the JsAdminService service reference. @param ref reference to the service
[ "Declarative", "Services", "method", "for", "setting", "the", "JsAdminService", "service", "reference", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java#L299-L307
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java
JsMainAdminComponentImpl.unsetJsAdminService
protected void unsetJsAdminService(ServiceReference<JsAdminService> ref) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.entry(tc, "unsetJsAdminService", ref); jsAdminServiceref.setReference(ref); if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled(...
java
protected void unsetJsAdminService(ServiceReference<JsAdminService> ref) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.entry(tc, "unsetJsAdminService", ref); jsAdminServiceref.setReference(ref); if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled(...
[ "protected", "void", "unsetJsAdminService", "(", "ServiceReference", "<", "JsAdminService", ">", "ref", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isDebugEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", ...
Declarative Services method for unsetting the JsAdminService service reference. @param ref reference to the service
[ "Declarative", "Services", "method", "for", "unsetting", "the", "JsAdminService", "service", "reference", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/admin/internal/JsMainAdminComponentImpl.java#L316-L323
train