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.jaxrs.2.0.common/src/org/apache/cxf/common/logging/LogUtils.java
LogUtils.log
public static void log(Logger logger, Level level, String message, Throwable throwable, Object parameter) { if (logger.isLoggable(level)) { final String formattedMessage = ...
java
public static void log(Logger logger, Level level, String message, Throwable throwable, Object parameter) { if (logger.isLoggable(level)) { final String formattedMessage = ...
[ "public", "static", "void", "log", "(", "Logger", "logger", ",", "Level", "level", ",", "String", "message", ",", "Throwable", "throwable", ",", "Object", "parameter", ")", "{", "if", "(", "logger", ".", "isLoggable", "(", "level", ")", ")", "{", "final"...
Allows both parameter substitution and a typed Throwable to be logged. @param logger the Logger the log to @param level the severity level @param message the log message @param throwable the Throwable to log @param parameter the parameter to substitute into message
[ "Allows", "both", "parameter", "substitution", "and", "a", "typed", "Throwable", "to", "be", "logged", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxrs.2.0.common/src/org/apache/cxf/common/logging/LogUtils.java#L367-L377
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jaxrs.2.0.common/src/org/apache/cxf/common/logging/LogUtils.java
LogUtils.localize
private static String localize(Logger logger, String message) { ResourceBundle bundle = logger.getResourceBundle(); try { return bundle != null ? bundle.getString(message) : message; } catch (MissingResourceException ex) { //string not in the bundle return mes...
java
private static String localize(Logger logger, String message) { ResourceBundle bundle = logger.getResourceBundle(); try { return bundle != null ? bundle.getString(message) : message; } catch (MissingResourceException ex) { //string not in the bundle return mes...
[ "private", "static", "String", "localize", "(", "Logger", "logger", ",", "String", "message", ")", "{", "ResourceBundle", "bundle", "=", "logger", ".", "getResourceBundle", "(", ")", ";", "try", "{", "return", "bundle", "!=", "null", "?", "bundle", ".", "g...
Retrieve localized message retrieved from a logger's resource bundle. @param logger the Logger @param message the message to be localized
[ "Retrieve", "localized", "message", "retrieved", "from", "a", "logger", "s", "resource", "bundle", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxrs.2.0.common/src/org/apache/cxf/common/logging/LogUtils.java#L499-L507
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/IdTable.java
IdTable.add
public synchronized int add(Object value) throws IdTableFullException { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "add", value); if (value == null) throw new SIErrorException(nls.getFormattedMessage("IDTABLE_INTERNAL_SICJ0050", null, "IDTABLE_INTERNAL_SICJ0050")); // D226232 int ...
java
public synchronized int add(Object value) throws IdTableFullException { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "add", value); if (value == null) throw new SIErrorException(nls.getFormattedMessage("IDTABLE_INTERNAL_SICJ0050", null, "IDTABLE_INTERNAL_SICJ0050")); // D226232 int ...
[ "public", "synchronized", "int", "add", "(", "Object", "value", ")", "throws", "IdTableFullException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"add\"", ",", "value", ")", ";", "i...
Adds an object to the table and returns the ID associated with the object in the table. The object will never be assigned an ID which clashes with another object. @param value The object to store in the table @return int The ID value that has been associated with the object. @throws IdTableFullException Thrown if ther...
[ "Adds", "an", "object", "to", "the", "table", "and", "returns", "the", "ID", "associated", "with", "the", "object", "in", "the", "table", ".", "The", "object", "will", "never", "be", "assigned", "an", "ID", "which", "clashes", "with", "another", "object", ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/IdTable.java#L100-L137
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/IdTable.java
IdTable.remove
public synchronized Object remove(int id) throws IllegalArgumentException { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "remove", ""+id); Object returnValue = get(id); if (returnValue != null) table[id] = null; if (id < lowestPossibleFree) lowestPossibleFree = id; ...
java
public synchronized Object remove(int id) throws IllegalArgumentException { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "remove", ""+id); Object returnValue = get(id); if (returnValue != null) table[id] = null; if (id < lowestPossibleFree) lowestPossibleFree = id; ...
[ "public", "synchronized", "Object", "remove", "(", "int", "id", ")", "throws", "IllegalArgumentException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"remove\"", ",", "\"\"", "+", "id...
Removes an object from the table. @param id The ID of the object to remove. It is valid to specify an ID which does not map to an object, this is effectivly a no-op. @return Object The object which was removed or null if the ID did not map to an object. @throws IllegalArgumentException Thrown if the id specified is le...
[ "Removes", "an", "object", "from", "the", "table", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/IdTable.java#L149-L173
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/IdTable.java
IdTable.get
public synchronized Object get(int id) throws IllegalArgumentException { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "get", ""+id); if ((id < 1) || (id > maxSize)) throw new SIErrorException(nls.getFormattedMessage("IDTABLE_INTERNAL_SICJ0050", null, "IDTABLE_INTERNAL_SICJ0050")); // D226232 ...
java
public synchronized Object get(int id) throws IllegalArgumentException { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "get", ""+id); if ((id < 1) || (id > maxSize)) throw new SIErrorException(nls.getFormattedMessage("IDTABLE_INTERNAL_SICJ0050", null, "IDTABLE_INTERNAL_SICJ0050")); // D226232 ...
[ "public", "synchronized", "Object", "get", "(", "int", "id", ")", "throws", "IllegalArgumentException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"get\"", ",", "\"\"", "+", "id", "...
Gets an object from the table by ID. Returns the object associated with the specified ID. It is valid to specify an ID which does not have an object associated with it. In this case, a value of null is returned. @param id The ID to get the object associated with. @return Object The object associated with the ID or n...
[ "Gets", "an", "object", "from", "the", "table", "by", "ID", ".", "Returns", "the", "object", "associated", "with", "the", "specified", "ID", ".", "It", "is", "valid", "to", "specify", "an", "ID", "which", "does", "not", "have", "an", "object", "associate...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/IdTable.java#L206-L216
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/IdTable.java
IdTable.growTable
private void growTable() { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "growTable"); int newSize = Math.min(table.length+TABLE_GROWTH_INCREMENT, maxSize); if (tc.isDebugEnabled()) SibTr.debug(this, tc, "existing size="+table.length+" new size="+newSize); Object[] newTable = new Object[ne...
java
private void growTable() { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "growTable"); int newSize = Math.min(table.length+TABLE_GROWTH_INCREMENT, maxSize); if (tc.isDebugEnabled()) SibTr.debug(this, tc, "existing size="+table.length+" new size="+newSize); Object[] newTable = new Object[ne...
[ "private", "void", "growTable", "(", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"growTable\"", ")", ";", "int", "newSize", "=", "Math", ".", "min", "(", "table", ".", "leng...
Helper method which increases the size of the table by a factor of TABLE_GROWTH_INCREMENT until the maximum size for the table is achieved.
[ "Helper", "method", "which", "increases", "the", "size", "of", "the", "table", "by", "a", "factor", "of", "TABLE_GROWTH_INCREMENT", "until", "the", "maximum", "size", "for", "the", "table", "is", "achieved", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/IdTable.java#L223-L232
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/IdTable.java
IdTable.findFreeSlot
private int findFreeSlot() { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "findFreeSlot"); boolean foundFreeSlot = false; int index = lowestPossibleFree; int largestIndex = Math.min(highWaterMark, table.length-1); while ((!foundFreeSlot) && (index <= largestIndex)) { ...
java
private int findFreeSlot() { if (tc.isEntryEnabled()) SibTr.entry(this, tc, "findFreeSlot"); boolean foundFreeSlot = false; int index = lowestPossibleFree; int largestIndex = Math.min(highWaterMark, table.length-1); while ((!foundFreeSlot) && (index <= largestIndex)) { ...
[ "private", "int", "findFreeSlot", "(", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"findFreeSlot\"", ")", ";", "boolean", "foundFreeSlot", "=", "false", ";", "int", "index", "="...
Helper method which attempts to locate a free slot in the table. The algorithm used is to scan from the lowest possible free value looking for an entry with a null value. If more than half the table is scanned before a free slot is found, then the code also attempts to move the high watermark back towards the beginnin...
[ "Helper", "method", "which", "attempts", "to", "locate", "a", "free", "slot", "in", "the", "table", ".", "The", "algorithm", "used", "is", "to", "scan", "from", "the", "lowest", "possible", "free", "value", "looking", "for", "an", "entry", "with", "a", "...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.client/src/com/ibm/ws/sib/jfapchannel/impl/IdTable.java#L244-L281
train
OpenLiberty/open-liberty
dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java
RequestMessage.init
public void init(HttpInboundConnection conn, SessionManager sessMgr) { this.connection = conn; this.request = conn.getRequest(); this.sessionData = new SessionInfo(this, sessMgr); }
java
public void init(HttpInboundConnection conn, SessionManager sessMgr) { this.connection = conn; this.request = conn.getRequest(); this.sessionData = new SessionInfo(this, sessMgr); }
[ "public", "void", "init", "(", "HttpInboundConnection", "conn", ",", "SessionManager", "sessMgr", ")", "{", "this", ".", "connection", "=", "conn", ";", "this", ".", "request", "=", "conn", ".", "getRequest", "(", ")", ";", "this", ".", "sessionData", "=",...
Initialize this request with the input link. @param conn
[ "Initialize", "this", "request", "with", "the", "input", "link", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java#L121-L125
train
OpenLiberty/open-liberty
dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java
RequestMessage.clear
public void clear() { this.attributes.clear(); this.queryParameters = null; this.inReader = null; this.streamActive = false; this.inStream = null; this.encoding = null; this.sessionData = null; this.strippedURI = null; this.srvContext = null; ...
java
public void clear() { this.attributes.clear(); this.queryParameters = null; this.inReader = null; this.streamActive = false; this.inStream = null; this.encoding = null; this.sessionData = null; this.strippedURI = null; this.srvContext = null; ...
[ "public", "void", "clear", "(", ")", "{", "this", ".", "attributes", ".", "clear", "(", ")", ";", "this", ".", "queryParameters", "=", "null", ";", "this", ".", "inReader", "=", "null", ";", "this", ".", "streamActive", "=", "false", ";", "this", "."...
Clear all the temporary variables of this request.
[ "Clear", "all", "the", "temporary", "variables", "of", "this", "request", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java#L130-L144
train
OpenLiberty/open-liberty
dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java
RequestMessage.parseQueryFormData
private void parseQueryFormData() throws IOException { int size = getContentLength(); if (0 == size) { // no body present this.queryParameters = new HashMap<String, String[]>(); return; } else if (-1 == size) { // chunked encoded perhaps ...
java
private void parseQueryFormData() throws IOException { int size = getContentLength(); if (0 == size) { // no body present this.queryParameters = new HashMap<String, String[]>(); return; } else if (-1 == size) { // chunked encoded perhaps ...
[ "private", "void", "parseQueryFormData", "(", ")", "throws", "IOException", "{", "int", "size", "=", "getContentLength", "(", ")", ";", "if", "(", "0", "==", "size", ")", "{", "// no body present", "this", ".", "queryParameters", "=", "new", "HashMap", "<", ...
Read and parse the POST body data that represents query data. @throws IOException
[ "Read", "and", "parse", "the", "POST", "body", "data", "that", "represents", "query", "data", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java#L693-L712
train
OpenLiberty/open-liberty
dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java
RequestMessage.parseQueryString
private Map<String, String[]> parseQueryString(String data) { Map<String, String[]> map = new Hashtable<String, String[]>(); if (null == data) { return map; } String valArray[] = null; char[] chars = data.toCharArray(); int key_start = 0; for (int i = ...
java
private Map<String, String[]> parseQueryString(String data) { Map<String, String[]> map = new Hashtable<String, String[]>(); if (null == data) { return map; } String valArray[] = null; char[] chars = data.toCharArray(); int key_start = 0; for (int i = ...
[ "private", "Map", "<", "String", ",", "String", "[", "]", ">", "parseQueryString", "(", "String", "data", ")", "{", "Map", "<", "String", ",", "String", "[", "]", ">", "map", "=", "new", "Hashtable", "<", "String", ",", "String", "[", "]", ">", "("...
Parse a string of query parameters into a Map representing the values stored using the name as the key. @param data @return Map @throws IllegalArgumentException if the string is formatted incorrectly
[ "Parse", "a", "string", "of", "query", "parameters", "into", "a", "Map", "representing", "the", "values", "stored", "using", "the", "name", "as", "the", "key", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java#L774-L811
train
OpenLiberty/open-liberty
dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java
RequestMessage.mergeQueryParams
private void mergeQueryParams(Map<String, String[]> urlParams) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) { Tr.debug(tc, "mergeQueryParams: " + urlParams); } for (Entry<String, String[]> entry : urlParams.entrySet()) { String key = entry.getKey(); ...
java
private void mergeQueryParams(Map<String, String[]> urlParams) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) { Tr.debug(tc, "mergeQueryParams: " + urlParams); } for (Entry<String, String[]> entry : urlParams.entrySet()) { String key = entry.getKey(); ...
[ "private", "void", "mergeQueryParams", "(", "Map", "<", "String", ",", "String", "[", "]", ">", "urlParams", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isDebugEnabled", "(", ")", ")", "{", "Tr", ".", ...
In certain cases, the URL will contain query string information and the POST body will as well. This method merges the two maps together. @param urlParams
[ "In", "certain", "cases", "the", "URL", "will", "contain", "query", "string", "information", "and", "the", "POST", "body", "will", "as", "well", ".", "This", "method", "merges", "the", "two", "maps", "together", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java#L819-L843
train
OpenLiberty/open-liberty
dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java
RequestMessage.getCipherSuite
private String getCipherSuite() { String suite = null; SSLContext ssl = this.connection.getSSLContext(); if (null != ssl) { suite = ssl.getSession().getCipherSuite(); } if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) { Tr.debug(tc, "getCip...
java
private String getCipherSuite() { String suite = null; SSLContext ssl = this.connection.getSSLContext(); if (null != ssl) { suite = ssl.getSession().getCipherSuite(); } if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) { Tr.debug(tc, "getCip...
[ "private", "String", "getCipherSuite", "(", ")", "{", "String", "suite", "=", "null", ";", "SSLContext", "ssl", "=", "this", ".", "connection", ".", "getSSLContext", "(", ")", ";", "if", "(", "null", "!=", "ssl", ")", "{", "suite", "=", "ssl", ".", "...
Access the SSL cipher suite used in this connection. @return String - null if this is not a secure connection
[ "Access", "the", "SSL", "cipher", "suite", "used", "in", "this", "connection", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java#L1085-L1095
train
OpenLiberty/open-liberty
dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java
RequestMessage.getPeerCertificates
private X509Certificate[] getPeerCertificates() { X509Certificate[] rc = null; SSLContext ssl = this.connection.getSSLContext(); if (null != ssl && (ssl.getNeedClientAuth() || ssl.getWantClientAuth())) { try { Object[] objs = ssl.getSession().getPeerCertificates(); ...
java
private X509Certificate[] getPeerCertificates() { X509Certificate[] rc = null; SSLContext ssl = this.connection.getSSLContext(); if (null != ssl && (ssl.getNeedClientAuth() || ssl.getWantClientAuth())) { try { Object[] objs = ssl.getSession().getPeerCertificates(); ...
[ "private", "X509Certificate", "[", "]", "getPeerCertificates", "(", ")", "{", "X509Certificate", "[", "]", "rc", "=", "null", ";", "SSLContext", "ssl", "=", "this", ".", "connection", ".", "getSSLContext", "(", ")", ";", "if", "(", "null", "!=", "ssl", "...
Access any client SSL certificates for this connection. @return X509Certificate[] - null if non-ssl or none exist
[ "Access", "any", "client", "SSL", "certificates", "for", "this", "connection", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.httpservice/src/com/ibm/ws/httpsvc/servlet/internal/RequestMessage.java#L1102-L1128
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.removeTarget
public void removeTarget(Object key) throws MatchingException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removeTarget", new Object[]{key}); // Remove from the HashMap, with synch, there may be other accessors synchronized(_...
java
public void removeTarget(Object key) throws MatchingException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removeTarget", new Object[]{key}); // Remove from the HashMap, with synch, there may be other accessors synchronized(_...
[ "public", "void", "removeTarget", "(", "Object", "key", ")", "throws", "MatchingException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"...
Remove a target from the MatchSpace @param key the identity of the target to remove (established at addTarget time) @exception MatchingException if key undefined or on serious error
[ "Remove", "a", "target", "from", "the", "MatchSpace" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L452-L478
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.removeConsumerPointMatchTarget
public void removeConsumerPointMatchTarget(DispatchableKey consumerPointData) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removeConsumerPointMatchTarget", consumerPointData); // Remove the consumer point from the matchspace try { removeTarget(consum...
java
public void removeConsumerPointMatchTarget(DispatchableKey consumerPointData) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removeConsumerPointMatchTarget", consumerPointData); // Remove the consumer point from the matchspace try { removeTarget(consum...
[ "public", "void", "removeConsumerPointMatchTarget", "(", "DispatchableKey", "consumerPointData", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",",...
Method removeConsumerPointMatchTarget Used to remove a ConsumerPoint from the MatchSpace. @param consumerPointData The consumer to remove
[ "Method", "removeConsumerPointMatchTarget", "Used", "to", "remove", "a", "ConsumerPoint", "from", "the", "MatchSpace", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L784-L827
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.addPubSubOutputHandlerMatchTarget
public ControllableProxySubscription addPubSubOutputHandlerMatchTarget( PubSubOutputHandler handler, SIBUuid12 topicSpace, String discriminator, boolean foreignSecuredProxy, String MESubUserId) throws SIDiscriminatorSyntaxException, SISelectorSyntaxException { if (TraceComponen...
java
public ControllableProxySubscription addPubSubOutputHandlerMatchTarget( PubSubOutputHandler handler, SIBUuid12 topicSpace, String discriminator, boolean foreignSecuredProxy, String MESubUserId) throws SIDiscriminatorSyntaxException, SISelectorSyntaxException { if (TraceComponen...
[ "public", "ControllableProxySubscription", "addPubSubOutputHandlerMatchTarget", "(", "PubSubOutputHandler", "handler", ",", "SIBUuid12", "topicSpace", ",", "String", "discriminator", ",", "boolean", "foreignSecuredProxy", ",", "String", "MESubUserId", ")", "throws", "SIDiscri...
Used to add a PubSubOutputHandler for ME-ME comms to the MatchSpace. @param handler The PubSubOutputHandler @param topicSpace The topicSpace to add the outputhandler against @param discriminator The topic for the subscription @param foreignSecuredProxy Flag to indicate whether a proxy sub originated from a foreign b...
[ "Used", "to", "add", "a", "PubSubOutputHandler", "for", "ME", "-", "ME", "comms", "to", "the", "MatchSpace", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L1001-L1100
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.removeConsumerDispatcherMatchTarget
public void removeConsumerDispatcherMatchTarget(ConsumerDispatcher consumerDispatcher, SelectionCriteria selectionCriteria) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "removeConsumerDispatcherMatchTarget", new Object[] {consumerDispatcher, sel...
java
public void removeConsumerDispatcherMatchTarget(ConsumerDispatcher consumerDispatcher, SelectionCriteria selectionCriteria) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "removeConsumerDispatcherMatchTarget", new Object[] {consumerDispatcher, sel...
[ "public", "void", "removeConsumerDispatcherMatchTarget", "(", "ConsumerDispatcher", "consumerDispatcher", ",", "SelectionCriteria", "selectionCriteria", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ...
Method removeConsumerDispatcherMatchTarget Used to remove a ConsumerDispatcher from the MatchSpace. @param consumerDispatcher The consumer dispatcher to remove
[ "Method", "removeConsumerDispatcherMatchTarget", "Used", "to", "remove", "a", "ConsumerDispatcher", "from", "the", "MatchSpace", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L1247-L1299
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.removePubSubOutputHandlerMatchTarget
public void removePubSubOutputHandlerMatchTarget( ControllableProxySubscription sub) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removePubSubOutputHandlerMatchTarget", sub); // Remove the PubSub OutputHandler from the matchspace try { removeTarg...
java
public void removePubSubOutputHandlerMatchTarget( ControllableProxySubscription sub) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removePubSubOutputHandlerMatchTarget", sub); // Remove the PubSub OutputHandler from the matchspace try { removeTarg...
[ "public", "void", "removePubSubOutputHandlerMatchTarget", "(", "ControllableProxySubscription", "sub", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ...
Method removePubSubOutputHandlerMatchTarget Used to remove a PubSubOutputHandler from the MatchSpace. @param sub the subscription to remove
[ "Method", "removePubSubOutputHandlerMatchTarget", "Used", "to", "remove", "a", "PubSubOutputHandler", "from", "the", "MatchSpace", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L1307-L1349
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.buildSendTopicExpression
private String buildSendTopicExpression( String destName, String discriminator) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "buildSendTopicExpression", new Object[] { destName, discriminator }); String combo = null; if (discri...
java
private String buildSendTopicExpression( String destName, String discriminator) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "buildSendTopicExpression", new Object[] { destName, discriminator }); String combo = null; if (discri...
[ "private", "String", "buildSendTopicExpression", "(", "String", "destName", ",", "String", "discriminator", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(...
Concatenates topicspace and a topic expression with a level separator between Null or empty topics are treated as topics at the root level so the combination topic becomes topicSpace/ @param topicSpace The topicspace name @param discriminator The topic
[ "Concatenates", "topicspace", "and", "a", "topic", "expression", "with", "a", "level", "separator", "between" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L1360-L1384
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.buildAddTopicExpression
public String buildAddTopicExpression( String destName, String discriminator) throws SIDiscriminatorSyntaxException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "buildAddTopicExpression", new Object[] { destName, discriminator }); S...
java
public String buildAddTopicExpression( String destName, String discriminator) throws SIDiscriminatorSyntaxException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry( tc, "buildAddTopicExpression", new Object[] { destName, discriminator }); S...
[ "public", "String", "buildAddTopicExpression", "(", "String", "destName", ",", "String", "discriminator", ")", "throws", "SIDiscriminatorSyntaxException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ...
Concatenates topicspace and a topic expression with a level separator between. Null topics are treated as wildcarded topics at the root level so the combination topic becomes topicSpace//. Empty topics are treated as a subscription to the root level so becomes topicSpace/ Topics that begin // need to be treated as top...
[ "Concatenates", "topicspace", "and", "a", "topic", "expression", "with", "a", "level", "separator", "between", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L1401-L1445
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.getAllCDMatchTargets
public ArrayList getAllCDMatchTargets() { ArrayList consumerDispatcherList; if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getAllCDMatchTargets"); // Get from the HashMap, with synch, there may be other accessors synchronized(_targets) { consumerDis...
java
public ArrayList getAllCDMatchTargets() { ArrayList consumerDispatcherList; if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getAllCDMatchTargets"); // Get from the HashMap, with synch, there may be other accessors synchronized(_targets) { consumerDis...
[ "public", "ArrayList", "getAllCDMatchTargets", "(", ")", "{", "ArrayList", "consumerDispatcherList", ";", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ","...
Method getAllCDMatchTargets Used to return a list of all ConsumerDispatchers stored in the matchspace @return List of matching consumers
[ "Method", "getAllCDMatchTargets", "Used", "to", "return", "a", "list", "of", "all", "ConsumerDispatchers", "stored", "in", "the", "matchspace" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L1453-L1480
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.getAllCDMatchTargetsForTopicSpace
public ArrayList getAllCDMatchTargetsForTopicSpace(String tSpace) { ArrayList consumerDispatcherList; if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getAllCDMatchTargetsForTopicSpace"); // Get from the HashMap, with synch, there may be other accessors synchro...
java
public ArrayList getAllCDMatchTargetsForTopicSpace(String tSpace) { ArrayList consumerDispatcherList; if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getAllCDMatchTargetsForTopicSpace"); // Get from the HashMap, with synch, there may be other accessors synchro...
[ "public", "ArrayList", "getAllCDMatchTargetsForTopicSpace", "(", "String", "tSpace", ")", "{", "ArrayList", "consumerDispatcherList", ";", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ...
Method getAllCDMatchTargetsForTopicSpace Used to return a list of all ConsumerDispatchers stored in the matchspace for a specific topicspace. @return List of matching consumers
[ "Method", "getAllCDMatchTargetsForTopicSpace", "Used", "to", "return", "a", "list", "of", "all", "ConsumerDispatchers", "stored", "in", "the", "matchspace", "for", "a", "specific", "topicspace", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L1489-L1521
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.getAllPubSubOutputHandlerMatchTargets
public ArrayList getAllPubSubOutputHandlerMatchTargets() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getAllPubSubOutputHandlerMatchTargets"); ArrayList outputHandlerList; // Get from the HashMap, with synch, there may be other accessors synchronized(_tar...
java
public ArrayList getAllPubSubOutputHandlerMatchTargets() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "getAllPubSubOutputHandlerMatchTargets"); ArrayList outputHandlerList; // Get from the HashMap, with synch, there may be other accessors synchronized(_tar...
[ "public", "ArrayList", "getAllPubSubOutputHandlerMatchTargets", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"getAllPubSubOutputHandlerM...
Method getAllPubSubOutputHandlerMatchTargets Used to return a list of all PubSubOutputHandlers stored in the matchspace @return List of matching outputhandlers
[ "Method", "getAllPubSubOutputHandlerMatchTargets", "Used", "to", "return", "a", "list", "of", "all", "PubSubOutputHandlers", "stored", "in", "the", "matchspace" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L1529-L1560
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.addTopicAcl
public void addTopicAcl(SIBUuid12 destName, TopicAcl acl) throws SIDiscriminatorSyntaxException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "addTopicAcl", new Object[] { destName, acl }); String discriminator = null; // Postpend # wildcard to the ful...
java
public void addTopicAcl(SIBUuid12 destName, TopicAcl acl) throws SIDiscriminatorSyntaxException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "addTopicAcl", new Object[] { destName, acl }); String discriminator = null; // Postpend # wildcard to the ful...
[ "public", "void", "addTopicAcl", "(", "SIBUuid12", "destName", ",", "TopicAcl", "acl", ")", "throws", "SIDiscriminatorSyntaxException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "Sib...
Method addTopicAcl Used to add a TopicAcl to the MatchSpace. @param acl The TopicAcl
[ "Method", "addTopicAcl", "Used", "to", "add", "a", "TopicAcl", "to", "the", "MatchSpace", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L1850-L1938
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.removeAllTopicAcls
public void removeAllTopicAcls() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removeAllTopicAcls"); ArrayList topicAclList = null; try { // Remove from the HashMap, with synch, there may be other accessors synchronized(_targets) { ...
java
public void removeAllTopicAcls() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removeAllTopicAcls"); ArrayList topicAclList = null; try { // Remove from the HashMap, with synch, there may be other accessors synchronized(_targets) { ...
[ "public", "void", "removeAllTopicAcls", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"removeAllTopicAcls\"", ")", ";", "ArrayList"...
Method removeAllTopicAcls Used to remove all TopicAcls stored in the matchspace
[ "Method", "removeAllTopicAcls", "Used", "to", "remove", "all", "TopicAcls", "stored", "in", "the", "matchspace" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L2107-L2175
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java
MessageProcessorMatching.removeApplicationSignatureMatchTarget
public void removeApplicationSignatureMatchTarget(ApplicationSignature appSignature) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removeApplicationSignatureMatchTarget", appSignature); // Remove the consumer point from the matchspace try { removeTarg...
java
public void removeApplicationSignatureMatchTarget(ApplicationSignature appSignature) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "removeApplicationSignatureMatchTarget", appSignature); // Remove the consumer point from the matchspace try { removeTarg...
[ "public", "void", "removeApplicationSignatureMatchTarget", "(", "ApplicationSignature", "appSignature", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc",...
Method removeApplicationSignatureMatchTarget Used to remove a ApplicationSignature from the MatchSpace. @param consumerPointData The ApplicationSignature to remove
[ "Method", "removeApplicationSignatureMatchTarget", "Used", "to", "remove", "a", "ApplicationSignature", "from", "the", "MatchSpace", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/matching/MessageProcessorMatching.java#L2989-L3032
train
OpenLiberty/open-liberty
dev/com.ibm.ws.microprofile.faulttolerance.cdi/src/com/ibm/ws/microprofile/faulttolerance/cdi/FaultToleranceCDIComponent.java
FaultToleranceCDIComponent.setProvider
@Reference(policy = DYNAMIC, policyOption = GREEDY, cardinality = MANDATORY) protected void setProvider(MetricRecorderProvider provider) { metricProvider = provider; }
java
@Reference(policy = DYNAMIC, policyOption = GREEDY, cardinality = MANDATORY) protected void setProvider(MetricRecorderProvider provider) { metricProvider = provider; }
[ "@", "Reference", "(", "policy", "=", "DYNAMIC", ",", "policyOption", "=", "GREEDY", ",", "cardinality", "=", "MANDATORY", ")", "protected", "void", "setProvider", "(", "MetricRecorderProvider", "provider", ")", "{", "metricProvider", "=", "provider", ";", "}" ]
Require a provider, update dynamically if a new one becomes available
[ "Require", "a", "provider", "update", "dynamically", "if", "a", "new", "one", "becomes", "available" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.microprofile.faulttolerance.cdi/src/com/ibm/ws/microprofile/faulttolerance/cdi/FaultToleranceCDIComponent.java#L43-L46
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.recover
synchronized public void recover() { if (tc.isEntryEnabled()) Tr.entry(tc, "recover", this); final int state = _status.getState(); if (_subordinate) { // For a subordinate, first check whether the global outcome is known locally. switch (state) { ...
java
synchronized public void recover() { if (tc.isEntryEnabled()) Tr.entry(tc, "recover", this); final int state = _status.getState(); if (_subordinate) { // For a subordinate, first check whether the global outcome is known locally. switch (state) { ...
[ "synchronized", "public", "void", "recover", "(", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"recover\"", ",", "this", ")", ";", "final", "int", "state", "=", "_status", ".", "getState", "("...
Directs the TransactionImpl to perform recovery actions based on its reconstructed state after a failure, or after an in-doubt timeout has occurred. This method is called by the RecoveryManager during recovery, in which case there is no terminator object, or during normal operation if the transaction commit retry inter...
[ "Directs", "the", "TransactionImpl", "to", "perform", "recovery", "actions", "based", "on", "its", "reconstructed", "state", "after", "a", "failure", "or", "after", "an", "in", "-", "doubt", "timeout", "has", "occurred", ".", "This", "method", "is", "called", ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L567-L658
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.commit
@Override public void commit() throws RollbackException, HeuristicMixedException, HeuristicRollbackException, SecurityException, IllegalStateException, SystemException { if (tc.isEntryEnabled()) Tr.entry(tc, "commit (SPI)"); try { processCommit(); } catch (HeuristicH...
java
@Override public void commit() throws RollbackException, HeuristicMixedException, HeuristicRollbackException, SecurityException, IllegalStateException, SystemException { if (tc.isEntryEnabled()) Tr.entry(tc, "commit (SPI)"); try { processCommit(); } catch (HeuristicH...
[ "@", "Override", "public", "void", "commit", "(", ")", "throws", "RollbackException", ",", "HeuristicMixedException", ",", "HeuristicRollbackException", ",", "SecurityException", ",", "IllegalStateException", ",", "SystemException", "{", "if", "(", "tc", ".", "isEntry...
Commit the transation associated with the target Transaction object This call should only be made from the root. @exception RollbackException Thrown to indicate that the transaction has been rolled back rather than committed. @exception HeuristicMixedException Thrown to indicate that a heuristic mix decision was mad...
[ "Commit", "the", "transation", "associated", "with", "the", "target", "Transaction", "object" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L705-L724
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.commit_one_phase
public void commit_one_phase() throws RollbackException, HeuristicMixedException, HeuristicHazardException, HeuristicRollbackException, SecurityException, IllegalStateException, SystemException { if (tc.isEntryEnabled()) Tr.entry(tc, "commit_one_phase"); // This call is only valid for a sin...
java
public void commit_one_phase() throws RollbackException, HeuristicMixedException, HeuristicHazardException, HeuristicRollbackException, SecurityException, IllegalStateException, SystemException { if (tc.isEntryEnabled()) Tr.entry(tc, "commit_one_phase"); // This call is only valid for a sin...
[ "public", "void", "commit_one_phase", "(", ")", "throws", "RollbackException", ",", "HeuristicMixedException", ",", "HeuristicHazardException", ",", "HeuristicRollbackException", ",", "SecurityException", ",", "IllegalStateException", ",", "SystemException", "{", "if", "(",...
Commit the transation associated with a subordinate which received a commit_one_phase request from the superior. Any other subordinate requests should call the internal methods directly. @exception RollbackException Thrown to indicate that the transaction has been rolled back rather than committed. @exception Heurist...
[ "Commit", "the", "transation", "associated", "with", "a", "subordinate", "which", "received", "a", "commit_one_phase", "request", "from", "the", "superior", ".", "Any", "other", "subordinate", "requests", "should", "call", "the", "internal", "methods", "directly", ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L752-L765
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.rollback
@Override public void rollback() throws IllegalStateException, SystemException { if (tc.isEntryEnabled()) Tr.entry(tc, "rollback (SPI)"); final int state = _status.getState(); // // We are only called in this method for superiors. // if (state == Transac...
java
@Override public void rollback() throws IllegalStateException, SystemException { if (tc.isEntryEnabled()) Tr.entry(tc, "rollback (SPI)"); final int state = _status.getState(); // // We are only called in this method for superiors. // if (state == Transac...
[ "@", "Override", "public", "void", "rollback", "(", ")", "throws", "IllegalStateException", ",", "SystemException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"rollback (SPI)\"", ")", ";", "final", "in...
Rollback the transaction associated with the target Transaction Object @exception IllegalStateException @exception SystemException
[ "Rollback", "the", "transaction", "associated", "with", "the", "target", "Transaction", "Object" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L1037-L1127
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.setPrepareXAFailed
protected void setPrepareXAFailed() // d266464A { if (tc.isEntryEnabled()) Tr.entry(tc, "setPrepareXAFailed"); setRBO(); // Ensure native context is informed if (tc.isEntryEnabled()) Tr.exit(tc, "setPrepareXAFailed"); }
java
protected void setPrepareXAFailed() // d266464A { if (tc.isEntryEnabled()) Tr.entry(tc, "setPrepareXAFailed"); setRBO(); // Ensure native context is informed if (tc.isEntryEnabled()) Tr.exit(tc, "setPrepareXAFailed"); }
[ "protected", "void", "setPrepareXAFailed", "(", ")", "// d266464A", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"setPrepareXAFailed\"", ")", ";", "setRBO", "(", ")", ";", "// Ensure native context is inform...
Indicate that the prepare XA phase failed.
[ "Indicate", "that", "the", "prepare", "XA", "phase", "failed", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L1370-L1379
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.prePrepare
protected boolean prePrepare() { if (tc.isEntryEnabled()) Tr.entry(tc, "prePrepare"); // // Cancel timeout prior to completion phase // cancelAlarms(); // // Inform the Synchronisations we are about to complete // if (!_rollbackOnly) ...
java
protected boolean prePrepare() { if (tc.isEntryEnabled()) Tr.entry(tc, "prePrepare"); // // Cancel timeout prior to completion phase // cancelAlarms(); // // Inform the Synchronisations we are about to complete // if (!_rollbackOnly) ...
[ "protected", "boolean", "prePrepare", "(", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"prePrepare\"", ")", ";", "//", "// Cancel timeout prior to completion phase", "//", "cancelAlarms", "(", ")", "...
Drive beforeCompletion against sync objects registered with this transaction.
[ "Drive", "beforeCompletion", "against", "sync", "objects", "registered", "with", "this", "transaction", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L1385-L1406
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.distributeEnd
protected boolean distributeEnd() throws SystemException { if (tc.isEntryEnabled()) Tr.entry(tc, "distributeEnd"); if (!getResources().distributeEnd(XAResource.TMSUCCESS)) { setRBO(); } if (_rollbackOnly) { try { _status.setState(Tran...
java
protected boolean distributeEnd() throws SystemException { if (tc.isEntryEnabled()) Tr.entry(tc, "distributeEnd"); if (!getResources().distributeEnd(XAResource.TMSUCCESS)) { setRBO(); } if (_rollbackOnly) { try { _status.setState(Tran...
[ "protected", "boolean", "distributeEnd", "(", ")", "throws", "SystemException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"distributeEnd\"", ")", ";", "if", "(", "!", "getResources", "(", ")", ".", ...
Distribute end to all XA resources
[ "Distribute", "end", "to", "all", "XA", "resources" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L1427-L1449
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.getOriginalException
public Throwable getOriginalException() { if (tc.isEntryEnabled()) Tr.entry(tc, "getOriginalException"); if (tc.isEntryEnabled()) Tr.exit(tc, "getOriginalException", _originalException); return _originalException; }
java
public Throwable getOriginalException() { if (tc.isEntryEnabled()) Tr.entry(tc, "getOriginalException"); if (tc.isEntryEnabled()) Tr.exit(tc, "getOriginalException", _originalException); return _originalException; }
[ "public", "Throwable", "getOriginalException", "(", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"getOriginalException\"", ")", ";", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ...
returns the exception stored by RegisteredSyncs @return Throwable the original exceptions
[ "returns", "the", "exception", "stored", "by", "RegisteredSyncs" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L1882-L1888
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.setRollbackOnly
@Override public void setRollbackOnly() throws IllegalStateException { if (tc.isEntryEnabled()) Tr.entry(tc, "setRollbackOnly (SPI)"); final int state = _status.getState(); if (state == TransactionState.STATE_NONE || state == TransactionState.STATE_COMMITTED || ...
java
@Override public void setRollbackOnly() throws IllegalStateException { if (tc.isEntryEnabled()) Tr.entry(tc, "setRollbackOnly (SPI)"); final int state = _status.getState(); if (state == TransactionState.STATE_NONE || state == TransactionState.STATE_COMMITTED || ...
[ "@", "Override", "public", "void", "setRollbackOnly", "(", ")", "throws", "IllegalStateException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"setRollbackOnly (SPI)\"", ")", ";", "final", "int", "state",...
Modify the transaction such that the only possible outcome of the transaction is to rollback. @exception IllegalStateException
[ "Modify", "the", "transaction", "such", "that", "the", "only", "possible", "outcome", "of", "the", "transaction", "is", "to", "rollback", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L1898-L1916
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.enlistResource
public void enlistResource(JTAResource remoteRes) { if (tc.isEntryEnabled()) Tr.entry(tc, "enlistResource (SPI): args: ", remoteRes); getResources().addRes(remoteRes); if (tc.isEntryEnabled()) Tr.exit(tc, "enlistResource (SPI)"); }
java
public void enlistResource(JTAResource remoteRes) { if (tc.isEntryEnabled()) Tr.entry(tc, "enlistResource (SPI): args: ", remoteRes); getResources().addRes(remoteRes); if (tc.isEntryEnabled()) Tr.exit(tc, "enlistResource (SPI)"); }
[ "public", "void", "enlistResource", "(", "JTAResource", "remoteRes", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"enlistResource (SPI): args: \"", ",", "remoteRes", ")", ";", "getResources", "(", ")"...
Enlist a remote resouce with the transaction associated with the target TransactionImpl object. Typically, this remote resource represents a downstream suborindate server. @param remoteRes the remote resource wrapped as a JTAResource
[ "Enlist", "a", "remote", "resouce", "with", "the", "transaction", "associated", "with", "the", "target", "TransactionImpl", "object", ".", "Typically", "this", "remote", "resource", "represents", "a", "downstream", "suborindate", "server", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L2140-L2148
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.logHeuristic
protected void logHeuristic(boolean commit) throws SystemException { if (tc.isEntryEnabled()) Tr.entry(tc, "logHeuristic", commit); if (_subordinate && _status.getState() != TransactionState.STATE_PREPARING) { getResources().logHeuristic(commit); } if (tc.isEntr...
java
protected void logHeuristic(boolean commit) throws SystemException { if (tc.isEntryEnabled()) Tr.entry(tc, "logHeuristic", commit); if (_subordinate && _status.getState() != TransactionState.STATE_PREPARING) { getResources().logHeuristic(commit); } if (tc.isEntr...
[ "protected", "void", "logHeuristic", "(", "boolean", "commit", ")", "throws", "SystemException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"logHeuristic\"", ",", "commit", ")", ";", "if", "(", "_sub...
Log the fact that we have encountered a heuristic outcome. @param commit boolean to indicate whether we were committing or rolling back @exception SystemException Thrown if the state change is invalid.
[ "Log", "the", "fact", "that", "we", "have", "encountered", "a", "heuristic", "outcome", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L2180-L2190
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.getStatus
@Override public int getStatus() { int state = Status.STATUS_UNKNOWN; switch (_status.getState()) { case TransactionState.STATE_NONE: state = Status.STATUS_NO_TRANSACTION; break; case TransactionState.STATE_ACTIVE: if (_rollbac...
java
@Override public int getStatus() { int state = Status.STATUS_UNKNOWN; switch (_status.getState()) { case TransactionState.STATE_NONE: state = Status.STATUS_NO_TRANSACTION; break; case TransactionState.STATE_ACTIVE: if (_rollbac...
[ "@", "Override", "public", "int", "getStatus", "(", ")", "{", "int", "state", "=", "Status", ".", "STATUS_UNKNOWN", ";", "switch", "(", "_status", ".", "getState", "(", ")", ")", "{", "case", "TransactionState", ".", "STATE_NONE", ":", "state", "=", "Sta...
Obtain the status of the transaction associated with the target object @return the transaction status
[ "Obtain", "the", "status", "of", "the", "transaction", "associated", "with", "the", "target", "object" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L2309-L2350
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.getXidImpl
public XidImpl getXidImpl(boolean createIfAbsent) { if (tc.isEntryEnabled()) Tr.entry(tc, "getXidImpl", new Object[] { this, createIfAbsent }); if (createIfAbsent && (_xid == null)) { // Create an XID as this transaction identifier. _xid = new XidImpl(new TxPrimaryKe...
java
public XidImpl getXidImpl(boolean createIfAbsent) { if (tc.isEntryEnabled()) Tr.entry(tc, "getXidImpl", new Object[] { this, createIfAbsent }); if (createIfAbsent && (_xid == null)) { // Create an XID as this transaction identifier. _xid = new XidImpl(new TxPrimaryKe...
[ "public", "XidImpl", "getXidImpl", "(", "boolean", "createIfAbsent", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"getXidImpl\"", ",", "new", "Object", "[", "]", "{", "this", ",", "createIfAbsent"...
Returns a global identifier that represents the TransactionImpl's transaction. @return The global transaction identifier.
[ "Returns", "a", "global", "identifier", "that", "represents", "the", "TransactionImpl", "s", "transaction", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L2386-L2398
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.setXidImpl
public void setXidImpl(XidImpl xid) { if (tc.isDebugEnabled()) Tr.debug(tc, "setXidImpl", new Object[] { xid, this }); _xid = xid; }
java
public void setXidImpl(XidImpl xid) { if (tc.isDebugEnabled()) Tr.debug(tc, "setXidImpl", new Object[] { xid, this }); _xid = xid; }
[ "public", "void", "setXidImpl", "(", "XidImpl", "xid", ")", "{", "if", "(", "tc", ".", "isDebugEnabled", "(", ")", ")", "Tr", ".", "debug", "(", "tc", ",", "\"setXidImpl\"", ",", "new", "Object", "[", "]", "{", "xid", ",", "this", "}", ")", ";", ...
For recovery only
[ "For", "recovery", "only" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L2401-L2405
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java
TransactionImpl.isJCAImportedAndPrepared
public boolean isJCAImportedAndPrepared(String providerId) { return _JCARecoveryData != null && _status.getState() == TransactionState.STATE_PREPARED && _JCARecoveryData.getWrapper().getProviderId().equals(providerId); }
java
public boolean isJCAImportedAndPrepared(String providerId) { return _JCARecoveryData != null && _status.getState() == TransactionState.STATE_PREPARED && _JCARecoveryData.getWrapper().getProviderId().equals(providerId); }
[ "public", "boolean", "isJCAImportedAndPrepared", "(", "String", "providerId", ")", "{", "return", "_JCARecoveryData", "!=", "null", "&&", "_status", ".", "getState", "(", ")", "==", "TransactionState", ".", "STATE_PREPARED", "&&", "_JCARecoveryData", ".", "getWrappe...
Returns true if this tx was imported by the given RA and is prepared @param providerId @return
[ "Returns", "true", "if", "this", "tx", "was", "imported", "by", "the", "given", "RA", "and", "is", "prepared" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/TransactionImpl.java#L3177-L3181
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java
KeyStoreManager.loadKeyStores
public void loadKeyStores(Map<String, WSKeyStore> config) { // now process each keystore in the provided config for (Entry<String, WSKeyStore> current : config.entrySet()) { try { String name = current.getKey(); WSKeyStore keystore = current.getValue(); ...
java
public void loadKeyStores(Map<String, WSKeyStore> config) { // now process each keystore in the provided config for (Entry<String, WSKeyStore> current : config.entrySet()) { try { String name = current.getKey(); WSKeyStore keystore = current.getValue(); ...
[ "public", "void", "loadKeyStores", "(", "Map", "<", "String", ",", "WSKeyStore", ">", "config", ")", "{", "// now process each keystore in the provided config", "for", "(", "Entry", "<", "String", ",", "WSKeyStore", ">", "current", ":", "config", ".", "entrySet", ...
Load the provided list of keystores from the configuration. @param config
[ "Load", "the", "provided", "list", "of", "keystores", "from", "the", "configuration", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java#L91-L105
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java
KeyStoreManager.getInputStream
public InputStream getInputStream(String fileName, boolean create) throws MalformedURLException, IOException { try { GetKeyStoreInputStreamAction action = new GetKeyStoreInputStreamAction(fileName, create); return AccessController.doPrivileged(action); } catch (PrivilegedActionEx...
java
public InputStream getInputStream(String fileName, boolean create) throws MalformedURLException, IOException { try { GetKeyStoreInputStreamAction action = new GetKeyStoreInputStreamAction(fileName, create); return AccessController.doPrivileged(action); } catch (PrivilegedActionEx...
[ "public", "InputStream", "getInputStream", "(", "String", "fileName", ",", "boolean", "create", ")", "throws", "MalformedURLException", ",", "IOException", "{", "try", "{", "GetKeyStoreInputStreamAction", "action", "=", "new", "GetKeyStoreInputStreamAction", "(", "fileN...
Open the provided filename as a keystore, creating if it doesn't exist and the input create flag is true. @param fileName @param create @return InputStream @throws MalformedURLException @throws IOException
[ "Open", "the", "provided", "filename", "as", "a", "keystore", "creating", "if", "it", "doesn", "t", "exist", "and", "the", "input", "create", "flag", "is", "true", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java#L347-L364
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java
KeyStoreManager.getOutputStream
public OutputStream getOutputStream(String fileName) throws MalformedURLException, IOException { try { GetKeyStoreOutputStreamAction action = new GetKeyStoreOutputStreamAction(fileName); return AccessController.doPrivileged(action); } catch (PrivilegedActionException e) { ...
java
public OutputStream getOutputStream(String fileName) throws MalformedURLException, IOException { try { GetKeyStoreOutputStreamAction action = new GetKeyStoreOutputStreamAction(fileName); return AccessController.doPrivileged(action); } catch (PrivilegedActionException e) { ...
[ "public", "OutputStream", "getOutputStream", "(", "String", "fileName", ")", "throws", "MalformedURLException", ",", "IOException", "{", "try", "{", "GetKeyStoreOutputStreamAction", "action", "=", "new", "GetKeyStoreOutputStreamAction", "(", "fileName", ")", ";", "retur...
Open the provided filename as an outputstream. @param fileName @return OutputStream @throws MalformedURLException @throws IOException
[ "Open", "the", "provided", "filename", "as", "an", "outputstream", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java#L428-L445
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java
KeyStoreManager.stripLastSlash
public static String stripLastSlash(String inputString) { if (null == inputString) { return null; } String rc = inputString.trim(); int len = rc.length(); if (0 < len) { char lastChar = rc.charAt(len - 1); if ('/' == lastChar || '\\' == lastCha...
java
public static String stripLastSlash(String inputString) { if (null == inputString) { return null; } String rc = inputString.trim(); int len = rc.length(); if (0 < len) { char lastChar = rc.charAt(len - 1); if ('/' == lastChar || '\\' == lastCha...
[ "public", "static", "String", "stripLastSlash", "(", "String", "inputString", ")", "{", "if", "(", "null", "==", "inputString", ")", "{", "return", "null", ";", "}", "String", "rc", "=", "inputString", ".", "trim", "(", ")", ";", "int", "len", "=", "rc...
Remove the last slash, if present, from the input string and return the result. @param inputString @return String
[ "Remove", "the", "last", "slash", "if", "present", "from", "the", "input", "string", "and", "return", "the", "result", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java#L700-L714
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java
KeyStoreManager.getJavaKeyStore
public KeyStore getJavaKeyStore(String keyStoreName) throws Exception { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Tr.entry(tc, "getJavaKeyStore: " + keyStoreName); if (keyStoreName == null || keyStoreName.trim().isEmpty()) { throw new SSLException("No keys...
java
public KeyStore getJavaKeyStore(String keyStoreName) throws Exception { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Tr.entry(tc, "getJavaKeyStore: " + keyStoreName); if (keyStoreName == null || keyStoreName.trim().isEmpty()) { throw new SSLException("No keys...
[ "public", "KeyStore", "getJavaKeyStore", "(", "String", "keyStoreName", ")", "throws", "Exception", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", ...
Returns the java keystore object based on the keystore name passed in. @param keyStoreName @return KeyStore @throws Exception
[ "Returns", "the", "java", "keystore", "object", "based", "on", "the", "keystore", "name", "passed", "in", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java#L723-L740
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java
KeyStoreManager.getWSKeyStore
public WSKeyStore getWSKeyStore(String keyStoreName) throws SSLException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Tr.entry(tc, "getWSKeyStore: " + keyStoreName); if (keyStoreName == null) { throw new SSLException("No keystore name provided."); }...
java
public WSKeyStore getWSKeyStore(String keyStoreName) throws SSLException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Tr.entry(tc, "getWSKeyStore: " + keyStoreName); if (keyStoreName == null) { throw new SSLException("No keystore name provided."); }...
[ "public", "WSKeyStore", "getWSKeyStore", "(", "String", "keyStoreName", ")", "throws", "SSLException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",...
Returns the java keystore object based on the keystore name passed in. A null value is returned if no existing store matchs the provided name. @param keyStoreName @return WSKeyStore @throws SSLException - if the input name is null
[ "Returns", "the", "java", "keystore", "object", "based", "on", "the", "keystore", "name", "passed", "in", ".", "A", "null", "value", "is", "returned", "if", "no", "existing", "store", "matchs", "the", "provided", "name", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/config/KeyStoreManager.java#L751-L764
train
OpenLiberty/open-liberty
dev/com.ibm.ws.cloudant/src/com/ibm/ws/cloudant/internal/CloudantService.java
CloudantService.getDependentApplications
@Override public Set<String> getDependentApplications() { Set<String> appsToStop = new HashSet<String>(applications); applications.clear(); return appsToStop; }
java
@Override public Set<String> getDependentApplications() { Set<String> appsToStop = new HashSet<String>(applications); applications.clear(); return appsToStop; }
[ "@", "Override", "public", "Set", "<", "String", ">", "getDependentApplications", "(", ")", "{", "Set", "<", "String", ">", "appsToStop", "=", "new", "HashSet", "<", "String", ">", "(", "applications", ")", ";", "applications", ".", "clear", "(", ")", ";...
Returns the list of applications that have used this resource so that the applications can be stopped by the application recycle code in response to a configuration change.
[ "Returns", "the", "list", "of", "applications", "that", "have", "used", "this", "resource", "so", "that", "the", "applications", "can", "be", "stopped", "by", "the", "application", "recycle", "code", "in", "response", "to", "a", "configuration", "change", "." ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.cloudant/src/com/ibm/ws/cloudant/internal/CloudantService.java#L464-L469
train
OpenLiberty/open-liberty
dev/com.ibm.ws.cloudant/src/com/ibm/ws/cloudant/internal/CloudantService.java
CloudantService.set
@Trivial // do our own trace in order to selectively include the value private <T extends Object> void set(Class<?> clazz, Object clientBuilder, String name, Class<T> type, T value) throws Exception { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) Tr.debug(this, tc, name + '('...
java
@Trivial // do our own trace in order to selectively include the value private <T extends Object> void set(Class<?> clazz, Object clientBuilder, String name, Class<T> type, T value) throws Exception { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) Tr.debug(this, tc, name + '('...
[ "@", "Trivial", "// do our own trace in order to selectively include the value", "private", "<", "T", "extends", "Object", ">", "void", "set", "(", "Class", "<", "?", ">", "clazz", ",", "Object", "clientBuilder", ",", "String", "name", ",", "Class", "<", "T", ">...
Method to reflectively invoke setters on the cloudant client builder @param clazz client builder class @param clientBuilder builder instance @param name method to invoke @param type argument type with which to invoke method @param value argument value with which to invoke method, sensitive as password will be passed @t...
[ "Method", "to", "reflectively", "invoke", "setters", "on", "the", "cloudant", "client", "builder" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.cloudant/src/com/ibm/ws/cloudant/internal/CloudantService.java#L506-L519
train
OpenLiberty/open-liberty
dev/com.ibm.ws.cloudant/src/com/ibm/ws/cloudant/internal/CloudantService.java
CloudantService.libraryNotification
@Override public void libraryNotification() { // Notify the application recycle coordinator of an incompatible change that requires restarting the application if (!applications.isEmpty()) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) Tr.debug(this, tc...
java
@Override public void libraryNotification() { // Notify the application recycle coordinator of an incompatible change that requires restarting the application if (!applications.isEmpty()) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) Tr.debug(this, tc...
[ "@", "Override", "public", "void", "libraryNotification", "(", ")", "{", "// Notify the application recycle coordinator of an incompatible change that requires restarting the application", "if", "(", "!", "applications", ".", "isEmpty", "(", ")", ")", "{", "if", "(", "Trace...
Received when library is changed, for example by altering the files in the library.
[ "Received", "when", "library", "is", "changed", "for", "example", "by", "altering", "the", "files", "in", "the", "library", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.cloudant/src/com/ibm/ws/cloudant/internal/CloudantService.java#L524-L535
train
OpenLiberty/open-liberty
dev/com.ibm.ws.cloudant/src/com/ibm/ws/cloudant/internal/CloudantService.java
CloudantService.getCloudantClient
public Object getCloudantClient(int resAuth, List<? extends ResourceInfo.Property> loginPropertyList) throws Exception { AuthData containerAuthData = null; if (resAuth == ResourceInfo.AUTH_CONTAINER) { containerAuthData = getContainerAuthData(loginPropertyList); } String use...
java
public Object getCloudantClient(int resAuth, List<? extends ResourceInfo.Property> loginPropertyList) throws Exception { AuthData containerAuthData = null; if (resAuth == ResourceInfo.AUTH_CONTAINER) { containerAuthData = getContainerAuthData(loginPropertyList); } String use...
[ "public", "Object", "getCloudantClient", "(", "int", "resAuth", ",", "List", "<", "?", "extends", "ResourceInfo", ".", "Property", ">", "loginPropertyList", ")", "throws", "Exception", "{", "AuthData", "containerAuthData", "=", "null", ";", "if", "(", "resAuth",...
Return the cloudant client object used for a particular username and password @param resAuth @param loginPropertyList @return CloudantClient object @throws Exception
[ "Return", "the", "cloudant", "client", "object", "used", "for", "a", "particular", "username", "and", "password" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.cloudant/src/com/ibm/ws/cloudant/internal/CloudantService.java#L618-L637
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/Semaphore.java
Semaphore.waitOn
public synchronized void waitOn() throws InterruptedException { if (tc.isEntryEnabled()) SibTr.entry(tc, "waitOn", ""+count); ++count; if (count > 0) { try { wait(); } catch(InterruptedException e) { // No FFDC code needed ...
java
public synchronized void waitOn() throws InterruptedException { if (tc.isEntryEnabled()) SibTr.entry(tc, "waitOn", ""+count); ++count; if (count > 0) { try { wait(); } catch(InterruptedException e) { // No FFDC code needed ...
[ "public", "synchronized", "void", "waitOn", "(", ")", "throws", "InterruptedException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"waitOn\"", ",", "\"\"", "+", "count", ")", ";", "++", "count", ...
Wait for the semaphore to be posted @see Semaphore#post() @throws InterruptedException if the wait is interrupted rather than posted
[ "Wait", "for", "the", "semaphore", "to", "be", "posted" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/Semaphore.java#L54-L74
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/Semaphore.java
Semaphore.post
public synchronized void post() { if (tc.isEntryEnabled()) SibTr.entry(tc, "post", ""+count); --count; if (count >= 0) notify(); if (tc.isEntryEnabled()) SibTr.exit(tc, "post"); }
java
public synchronized void post() { if (tc.isEntryEnabled()) SibTr.entry(tc, "post", ""+count); --count; if (count >= 0) notify(); if (tc.isEntryEnabled()) SibTr.exit(tc, "post"); }
[ "public", "synchronized", "void", "post", "(", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"post\"", ",", "\"\"", "+", "count", ")", ";", "--", "count", ";", "if", "(", "count", ">=", ...
Post the semaphore waking up at most one waiter. If there are no waiters, then the next thread issuing a waitOn call will not be suspended. In fact, if post is invoked 'n' times then the next 'n' waitOn calls will not block. @see Semaphore#waitOn()
[ "Post", "the", "semaphore", "waking", "up", "at", "most", "one", "waiter", ".", "If", "there", "are", "no", "waiters", "then", "the", "next", "thread", "issuing", "a", "waitOn", "call", "will", "not", "be", "suspended", ".", "In", "fact", "if", "post", ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/Semaphore.java#L83-L90
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/Semaphore.java
Semaphore.waitOnIgnoringInterruptions
public synchronized void waitOnIgnoringInterruptions() { if (tc.isEntryEnabled()) SibTr.entry(tc, "waitOnIgnoringInterruptions"); boolean interrupted; do { interrupted = false; try { waitOn(); } catch (InterruptedException e) ...
java
public synchronized void waitOnIgnoringInterruptions() { if (tc.isEntryEnabled()) SibTr.entry(tc, "waitOnIgnoringInterruptions"); boolean interrupted; do { interrupted = false; try { waitOn(); } catch (InterruptedException e) ...
[ "public", "synchronized", "void", "waitOnIgnoringInterruptions", "(", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"waitOnIgnoringInterruptions\"", ")", ";", "boolean", "interrupted", ";", "do", "{",...
Wait on the semaphore ignoring any attempt to interrupt the thread. @see Semaphore#waitOn()
[ "Wait", "on", "the", "semaphore", "ignoring", "any", "attempt", "to", "interrupt", "the", "thread", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/Semaphore.java#L96-L117
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/AbstractFaceletCache.java
AbstractFaceletCache.setMemberFactories
protected void setMemberFactories(FaceletCache.MemberFactory<V> faceletFactory, FaceletCache.MemberFactory<V> viewMetadataFaceletFactory, FaceletCache.MemberFactory<V> compositeComponentMetadataFaceletFactory) { if (compositeCompon...
java
protected void setMemberFactories(FaceletCache.MemberFactory<V> faceletFactory, FaceletCache.MemberFactory<V> viewMetadataFaceletFactory, FaceletCache.MemberFactory<V> compositeComponentMetadataFaceletFactory) { if (compositeCompon...
[ "protected", "void", "setMemberFactories", "(", "FaceletCache", ".", "MemberFactory", "<", "V", ">", "faceletFactory", ",", "FaceletCache", ".", "MemberFactory", "<", "V", ">", "viewMetadataFaceletFactory", ",", "FaceletCache", ".", "MemberFactory", "<", "V", ">", ...
Set the factories used for create Facelet instances. @param faceletFactory @param viewMetadataFaceletFactory @param compositeComponentMetadataFaceletFactory
[ "Set", "the", "factories", "used", "for", "create", "Facelet", "instances", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsf.2.2/src/org/apache/myfaces/view/facelets/AbstractFaceletCache.java#L78-L88
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/srt/SRTInputStream.java
SRTInputStream.close
@Override public void close() throws IOException { if(this.in != null && this.inStream != null){ if (TraceComponent.isAnyTracingEnabled()&&logger.isLoggable (Level.FINE)) { logger.logp(Level.FINE, CLASS_NAME,"close", "close called->"+this); } this.in.close(); ...
java
@Override public void close() throws IOException { if(this.in != null && this.inStream != null){ if (TraceComponent.isAnyTracingEnabled()&&logger.isLoggable (Level.FINE)) { logger.logp(Level.FINE, CLASS_NAME,"close", "close called->"+this); } this.in.close(); ...
[ "@", "Override", "public", "void", "close", "(", ")", "throws", "IOException", "{", "if", "(", "this", ".", "in", "!=", "null", "&&", "this", ".", "inStream", "!=", "null", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&...
Following needed to support MultiRead
[ "Following", "needed", "to", "support", "MultiRead" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/srt/SRTInputStream.java#L84-L96
train
OpenLiberty/open-liberty
dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java
ZipFileContainerFactory.createContainer
@Override public ArtifactContainer createContainer(File cacheDir, Object containerData) { if ( !(containerData instanceof File) ) { return null; } File fileContainerData = (File) containerData; if ( !FileUtils.fileIsFile(fileContainerData) ) { return null; ...
java
@Override public ArtifactContainer createContainer(File cacheDir, Object containerData) { if ( !(containerData instanceof File) ) { return null; } File fileContainerData = (File) containerData; if ( !FileUtils.fileIsFile(fileContainerData) ) { return null; ...
[ "@", "Override", "public", "ArtifactContainer", "createContainer", "(", "File", "cacheDir", ",", "Object", "containerData", ")", "{", "if", "(", "!", "(", "containerData", "instanceof", "File", ")", ")", "{", "return", "null", ";", "}", "File", "fileContainerD...
Attempt to create a root-of-roots zip file type container. Anser null if the container data is not a file or is not a valid zip file. @return A new root-of-roots zip file type container.
[ "Attempt", "to", "create", "a", "root", "-", "of", "-", "roots", "zip", "file", "type", "container", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java#L185-L201
train
OpenLiberty/open-liberty
dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java
ZipFileContainerFactory.createContainer
@Override public ArtifactContainer createContainer( File cacheDir, ArtifactContainer enclosingContainer, ArtifactEntry entryInEnclosingContainer, Object containerData) { if ( (containerData instanceof File) && FileUtils.fileIsFile((File) containerData) ) { File f...
java
@Override public ArtifactContainer createContainer( File cacheDir, ArtifactContainer enclosingContainer, ArtifactEntry entryInEnclosingContainer, Object containerData) { if ( (containerData instanceof File) && FileUtils.fileIsFile((File) containerData) ) { File f...
[ "@", "Override", "public", "ArtifactContainer", "createContainer", "(", "File", "cacheDir", ",", "ArtifactContainer", "enclosingContainer", ",", "ArtifactEntry", "entryInEnclosingContainer", ",", "Object", "containerData", ")", "{", "if", "(", "(", "containerData", "ins...
Attempt to create an enclosed root zip file type container. The entry from which the container is to be created must container data for a zip file. The container data, if supplied and a file, will be tested. Otherwise, the supplied entry will be tested. Answer null if the container data is a file but is not a zip f...
[ "Attempt", "to", "create", "an", "enclosed", "root", "zip", "file", "type", "container", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java#L218-L248
train
OpenLiberty/open-liberty
dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java
ZipFileContainerFactory.hasZipExtension
private static boolean hasZipExtension(String name) { int nameLen = name.length(); // Need '.' plus at least three characters. if ( nameLen < 4 ) { return false; } // Need '.' plus at least six characters for ".spring". if ( nameLen >= 7 ) { if...
java
private static boolean hasZipExtension(String name) { int nameLen = name.length(); // Need '.' plus at least three characters. if ( nameLen < 4 ) { return false; } // Need '.' plus at least six characters for ".spring". if ( nameLen >= 7 ) { if...
[ "private", "static", "boolean", "hasZipExtension", "(", "String", "name", ")", "{", "int", "nameLen", "=", "name", ".", "length", "(", ")", ";", "// Need '.' plus at least three characters.", "if", "(", "nameLen", "<", "4", ")", "{", "return", "false", ";", ...
Tell if a file name has a zip file type extension. These are: "jar", "zip", "ear", "war", "rar", "eba", "esa", "sar", and "spring". See also the service property "handlesEntry". @param name The file name to test. @return True or false telling if the file has one of the zip file type extensions.
[ "Tell", "if", "a", "file", "name", "has", "a", "zip", "file", "type", "extension", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java#L282-L312
train
OpenLiberty/open-liberty
dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java
ZipFileContainerFactory.isZip
private static boolean isZip(ArtifactEntry artifactEntry) { if ( !hasZipExtension( artifactEntry.getName() ) ) { return false; } boolean validZip = false; InputStream entryInputStream = null; try { entryInputStream = artifactEntry.getInputStream(); ...
java
private static boolean isZip(ArtifactEntry artifactEntry) { if ( !hasZipExtension( artifactEntry.getName() ) ) { return false; } boolean validZip = false; InputStream entryInputStream = null; try { entryInputStream = artifactEntry.getInputStream(); ...
[ "private", "static", "boolean", "isZip", "(", "ArtifactEntry", "artifactEntry", ")", "{", "if", "(", "!", "hasZipExtension", "(", "artifactEntry", ".", "getName", "(", ")", ")", ")", "{", "return", "false", ";", "}", "boolean", "validZip", "=", "false", ";...
Tell if an artifact entry is valid to be interpreted as a zip file container. The entry must have a valid zip file extension (see {@link #hasZipExtension}. The entry must open as a {@link ZipInputStream}, and at least one entry must be readable from that stream. A zip stream is used instead of a zip file: Opening a ...
[ "Tell", "if", "an", "artifact", "entry", "is", "valid", "to", "be", "interpreted", "as", "a", "zip", "file", "container", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java#L336-L375
train
OpenLiberty/open-liberty
dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java
ZipFileContainerFactory.getPhysicalPath
@SuppressWarnings("deprecation") private static String getPhysicalPath(ArtifactEntry artifactEntry) { String physicalPath = artifactEntry.getPhysicalPath(); if ( physicalPath != null ) { return physicalPath; } String entryPath = artifactEntry.getPath(); String ro...
java
@SuppressWarnings("deprecation") private static String getPhysicalPath(ArtifactEntry artifactEntry) { String physicalPath = artifactEntry.getPhysicalPath(); if ( physicalPath != null ) { return physicalPath; } String entryPath = artifactEntry.getPath(); String ro...
[ "@", "SuppressWarnings", "(", "\"deprecation\"", ")", "private", "static", "String", "getPhysicalPath", "(", "ArtifactEntry", "artifactEntry", ")", "{", "String", "physicalPath", "=", "artifactEntry", ".", "getPhysicalPath", "(", ")", ";", "if", "(", "physicalPath",...
Answer they physical path of an artifact entry. If the entry has a physical path (for example, because it was extracted), directly answer that path. In that case, the path of the entry may be in a cache directory, and may not have a relationship to enclosing containers physical path. If the entry does not have a phy...
[ "Answer", "they", "physical", "path", "of", "an", "artifact", "entry", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java#L394-L416
train
OpenLiberty/open-liberty
dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java
ZipFileContainerFactory.isZip
@FFDCIgnore( { IOException.class, FileNotFoundException.class } ) private static boolean isZip(File file) { if ( !hasZipExtension( file.getName() ) ) { return false; } InputStream inputStream = null; try { inputStream = new FileInputStream(file); // throws F...
java
@FFDCIgnore( { IOException.class, FileNotFoundException.class } ) private static boolean isZip(File file) { if ( !hasZipExtension( file.getName() ) ) { return false; } InputStream inputStream = null; try { inputStream = new FileInputStream(file); // throws F...
[ "@", "FFDCIgnore", "(", "{", "IOException", ".", "class", ",", "FileNotFoundException", ".", "class", "}", ")", "private", "static", "boolean", "isZip", "(", "File", "file", ")", "{", "if", "(", "!", "hasZipExtension", "(", "file", ".", "getName", "(", "...
Tell if a file is valid to used to create a zip file container. The file must have a valid zip file extension (see {@link #hasZipExtension}. The file must open as a {@link ZipInputStream}, and at least one entry must be readable from that stream. A zip stream is used instead of a zip file: Opening a zip file on the ...
[ "Tell", "if", "a", "file", "is", "valid", "to", "used", "to", "create", "a", "zip", "file", "container", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.artifact.zip/src/com/ibm/ws/artifact/zip/internal/ZipFileContainerFactory.java#L434-L472
train
OpenLiberty/open-liberty
dev/com.ibm.ws.product.utility/src/com/ibm/ws/product/utility/extension/ifix/xml/UpdatedFile.java
UpdatedFile.fromNode
public static UpdatedFile fromNode(Node n) { String id = n.getAttributes().getNamedItem("id") == null ? null : n.getAttributes().getNamedItem("id").getNodeValue(); long size = n.getAttributes().getNamedItem("size") == null ? null : Long.parseLong(n.getAttributes().getNamedItem("size").getNodeValue()); ...
java
public static UpdatedFile fromNode(Node n) { String id = n.getAttributes().getNamedItem("id") == null ? null : n.getAttributes().getNamedItem("id").getNodeValue(); long size = n.getAttributes().getNamedItem("size") == null ? null : Long.parseLong(n.getAttributes().getNamedItem("size").getNodeValue()); ...
[ "public", "static", "UpdatedFile", "fromNode", "(", "Node", "n", ")", "{", "String", "id", "=", "n", ".", "getAttributes", "(", ")", ".", "getNamedItem", "(", "\"id\"", ")", "==", "null", "?", "null", ":", "n", ".", "getAttributes", "(", ")", ".", "g...
needs to support both hash and MD5hash as attributes
[ "needs", "to", "support", "both", "hash", "and", "MD5hash", "as", "attributes" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.product.utility/src/com/ibm/ws/product/utility/extension/ifix/xml/UpdatedFile.java#L17-L25
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jca/src/com/ibm/ws/jca/service/JCAQuiesceListener.java
JCAQuiesceListener.serverStopping
@Override public void serverStopping() { BundleContext bundleContext = componentContext.getBundleContext(); Collection<ServiceReference<EndpointActivationService>> refs; try { refs = bundleContext.getServiceReferences(EndpointActivationService.class, null); } catch (Inval...
java
@Override public void serverStopping() { BundleContext bundleContext = componentContext.getBundleContext(); Collection<ServiceReference<EndpointActivationService>> refs; try { refs = bundleContext.getServiceReferences(EndpointActivationService.class, null); } catch (Inval...
[ "@", "Override", "public", "void", "serverStopping", "(", ")", "{", "BundleContext", "bundleContext", "=", "componentContext", ".", "getBundleContext", "(", ")", ";", "Collection", "<", "ServiceReference", "<", "EndpointActivationService", ">", ">", "refs", ";", "...
Invoked when server is quiescing. Deactivate all endpoints.
[ "Invoked", "when", "server", "is", "quiescing", ".", "Deactivate", "all", "endpoints", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca/src/com/ibm/ws/jca/service/JCAQuiesceListener.java#L54-L77
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/impl/store/filters/SubscriptionFilter.java
SubscriptionFilter.filterMatches
public boolean filterMatches(AbstractItem item) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "filterMatches", item); /* Cast the incoming item to a PersistentStoreReferenceStream object. if it is not, an * exception will be thrown and the match will fail */ ...
java
public boolean filterMatches(AbstractItem item) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "filterMatches", item); /* Cast the incoming item to a PersistentStoreReferenceStream object. if it is not, an * exception will be thrown and the match will fail */ ...
[ "public", "boolean", "filterMatches", "(", "AbstractItem", "item", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"filterMatches\"", ",",...
Filter method. Checks whether the given item is a consumerDispatcher and matches the one associated with this filter @param item - The item on the itemstream @return boolean - True if a match, false otherwise.
[ "Filter", "method", ".", "Checks", "whether", "the", "given", "item", "is", "a", "consumerDispatcher", "and", "matches", "the", "one", "associated", "with", "this", "filter" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/impl/store/filters/SubscriptionFilter.java#L68-L95
train
OpenLiberty/open-liberty
dev/com.ibm.websphere.javaee.jsf.2.3/src/javax/faces/validator/BeanValidator.java
BeanValidator.createValidatorFactory
private ValidatorFactory createValidatorFactory(FacesContext context) { Map<String, Object> applicationMap = context.getExternalContext().getApplicationMap(); Object attr = applicationMap.get(VALIDATOR_FACTORY_KEY); if (attr instanceof ValidatorFactory) { return (Validato...
java
private ValidatorFactory createValidatorFactory(FacesContext context) { Map<String, Object> applicationMap = context.getExternalContext().getApplicationMap(); Object attr = applicationMap.get(VALIDATOR_FACTORY_KEY); if (attr instanceof ValidatorFactory) { return (Validato...
[ "private", "ValidatorFactory", "createValidatorFactory", "(", "FacesContext", "context", ")", "{", "Map", "<", "String", ",", "Object", ">", "applicationMap", "=", "context", ".", "getExternalContext", "(", ")", ".", "getApplicationMap", "(", ")", ";", "Object", ...
This method creates ValidatorFactory instances or retrieves them from the container. Once created, ValidatorFactory instances are stored in the container under the key VALIDATOR_FACTORY_KEY for performance. @param context The FacesContext. @return The ValidatorFactory instance. @throws FacesException if no ValidatorF...
[ "This", "method", "creates", "ValidatorFactory", "instances", "or", "retrieves", "them", "from", "the", "container", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.javaee.jsf.2.3/src/javax/faces/validator/BeanValidator.java#L327-L351
train
OpenLiberty/open-liberty
dev/com.ibm.websphere.javaee.jsf.2.3/src/javax/faces/validator/BeanValidator.java
BeanValidator.postSetValidationGroups
private void postSetValidationGroups() { if (this.validationGroups == null || this.validationGroups.matches(EMPTY_VALIDATION_GROUPS_PATTERN)) { this.validationGroupsArray = DEFAULT_VALIDATION_GROUPS_ARRAY; } else { String[] classes = this.validationGro...
java
private void postSetValidationGroups() { if (this.validationGroups == null || this.validationGroups.matches(EMPTY_VALIDATION_GROUPS_PATTERN)) { this.validationGroupsArray = DEFAULT_VALIDATION_GROUPS_ARRAY; } else { String[] classes = this.validationGro...
[ "private", "void", "postSetValidationGroups", "(", ")", "{", "if", "(", "this", ".", "validationGroups", "==", "null", "||", "this", ".", "validationGroups", ".", "matches", "(", "EMPTY_VALIDATION_GROUPS_PATTERN", ")", ")", "{", "this", ".", "validationGroupsArray...
Fully initialize the validation groups if needed. If no validation groups are specified, the Default validation group is used.
[ "Fully", "initialize", "the", "validation", "groups", "if", "needed", ".", "If", "no", "validation", "groups", "are", "specified", "the", "Default", "validation", "group", "is", "used", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.javaee.jsf.2.3/src/javax/faces/validator/BeanValidator.java#L357-L421
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSEnum.java
JSEnum.setEnumerators
public void setEnumerators(String[] val) { enumerators = val; enumeratorCount = (enumerators != null) ? enumerators.length : 0; }
java
public void setEnumerators(String[] val) { enumerators = val; enumeratorCount = (enumerators != null) ? enumerators.length : 0; }
[ "public", "void", "setEnumerators", "(", "String", "[", "]", "val", ")", "{", "enumerators", "=", "val", ";", "enumeratorCount", "=", "(", "enumerators", "!=", "null", ")", "?", "enumerators", ".", "length", ":", "0", ";", "}" ]
Set the enumerators in the order of their assigned codes
[ "Set", "the", "enumerators", "in", "the", "order", "of", "their", "assigned", "codes" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSEnum.java#L61-L64
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSEnum.java
JSEnum.encodeType
public void encodeType(byte[] frame, int[] limits) { setByte(frame, limits, (byte)ENUM); setCount(frame, limits, enumeratorCount); }
java
public void encodeType(byte[] frame, int[] limits) { setByte(frame, limits, (byte)ENUM); setCount(frame, limits, enumeratorCount); }
[ "public", "void", "encodeType", "(", "byte", "[", "]", "frame", ",", "int", "[", "]", "limits", ")", "{", "setByte", "(", "frame", ",", "limits", ",", "(", "byte", ")", "ENUM", ")", ";", "setCount", "(", "frame", ",", "limits", ",", "enumeratorCount"...
propagate the enumeratorCount.
[ "propagate", "the", "enumeratorCount", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSEnum.java#L131-L134
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSEnum.java
JSEnum.format
public void format(StringBuffer fmt, Set done, Set todo, int indent) { formatName(fmt, indent); fmt.append("Enum"); if (enumerators != null) { fmt.append("{{"); String delim = ""; for (int i = 0; i < enumerators.length; i++) { fmt.append(delim).append(enumerators[i]); delim...
java
public void format(StringBuffer fmt, Set done, Set todo, int indent) { formatName(fmt, indent); fmt.append("Enum"); if (enumerators != null) { fmt.append("{{"); String delim = ""; for (int i = 0; i < enumerators.length; i++) { fmt.append(delim).append(enumerators[i]); delim...
[ "public", "void", "format", "(", "StringBuffer", "fmt", ",", "Set", "done", ",", "Set", "todo", ",", "int", "indent", ")", "{", "formatName", "(", "fmt", ",", "indent", ")", ";", "fmt", ".", "append", "(", "\"Enum\"", ")", ";", "if", "(", "enumerator...
Format for printing.
[ "Format", "for", "printing", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/jmf/impl/JSEnum.java#L137-L149
train
OpenLiberty/open-liberty
dev/com.ibm.websphere.javaee.jsf.2.2/src/javax/faces/validator/BeanValidator.java
_ValueReferenceResolver.resolve
public static _ValueReferenceWrapper resolve(ValueExpression valueExpression, final ELContext elCtx) { _ValueReferenceResolver resolver = new _ValueReferenceResolver(elCtx.getELResolver()); ELContext elCtxDecorator = new _ELContextDecorator(elCtx, resolver); valueExpression.getValue...
java
public static _ValueReferenceWrapper resolve(ValueExpression valueExpression, final ELContext elCtx) { _ValueReferenceResolver resolver = new _ValueReferenceResolver(elCtx.getELResolver()); ELContext elCtxDecorator = new _ELContextDecorator(elCtx, resolver); valueExpression.getValue...
[ "public", "static", "_ValueReferenceWrapper", "resolve", "(", "ValueExpression", "valueExpression", ",", "final", "ELContext", "elCtx", ")", "{", "_ValueReferenceResolver", "resolver", "=", "new", "_ValueReferenceResolver", "(", "elCtx", ".", "getELResolver", "(", ")", ...
This method can be used to extract the ValueReferenceWrapper from the given ValueExpression. @param valueExpression The ValueExpression to resolve. @param elCtx The ELContext, needed to parse and execute the expression. @return The ValueReferenceWrapper.
[ "This", "method", "can", "be", "used", "to", "extract", "the", "ValueReferenceWrapper", "from", "the", "given", "ValueExpression", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.javaee.jsf.2.2/src/javax/faces/validator/BeanValidator.java#L592-L607
train
OpenLiberty/open-liberty
dev/com.ibm.websphere.javaee.jsf.2.2/src/javax/faces/validator/BeanValidator.java
_ValueReferenceResolver.getValue
@Override public Object getValue(final ELContext context, final Object base, final Object property) { lastObject = new _ValueReferenceWrapper(base, property); return resolver.getValue(context, base, property); }
java
@Override public Object getValue(final ELContext context, final Object base, final Object property) { lastObject = new _ValueReferenceWrapper(base, property); return resolver.getValue(context, base, property); }
[ "@", "Override", "public", "Object", "getValue", "(", "final", "ELContext", "context", ",", "final", "Object", "base", ",", "final", "Object", "property", ")", "{", "lastObject", "=", "new", "_ValueReferenceWrapper", "(", "base", ",", "property", ")", ";", "...
This method is the only one that matters. It keeps track of the objects in the EL expression. It creates a new ValueReferenceWrapper and assigns it to lastObject. @param context The ELContext. @param base The base object, may be null. @param property The property, may be null. @return The resolved value
[ "This", "method", "is", "the", "only", "one", "that", "matters", ".", "It", "keeps", "track", "of", "the", "objects", "in", "the", "EL", "expression", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.javaee.jsf.2.2/src/javax/faces/validator/BeanValidator.java#L619-L624
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/AsyncMethodWrapper.java
AsyncMethodWrapper.isApplicationException
private boolean isApplicationException(Throwable ex, EJBMethodInfoImpl methodInfo) { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.isEntryEnabled()) Tr.entry(tc, "isApplicationException : " + ex.getClass().getName() + ", " + methodInfo); // d660...
java
private boolean isApplicationException(Throwable ex, EJBMethodInfoImpl methodInfo) { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.isEntryEnabled()) Tr.entry(tc, "isApplicationException : " + ex.getClass().getName() + ", " + methodInfo); // d660...
[ "private", "boolean", "isApplicationException", "(", "Throwable", "ex", ",", "EJBMethodInfoImpl", "methodInfo", ")", "{", "final", "boolean", "isTraceOn", "=", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", ";", "if", "(", "isTraceOn", "&&", "tc", ".", ...
F743-761
[ "F743", "-", "761" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/AsyncMethodWrapper.java#L283-L332
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaDynamicDestinationEndpointActivation.java
SibRaDynamicDestinationEndpointActivation.addMessagingEngine
synchronized protected void addMessagingEngine( final JsMessagingEngine messagingEngine) { final String methodName = "addMessagingEngine"; if (TraceComponent.isAnyTracingEnabled() && TRACE.isEntryEnabled()) { SibTr.entry(this, TRACE, methodName, messagingEngine); } ...
java
synchronized protected void addMessagingEngine( final JsMessagingEngine messagingEngine) { final String methodName = "addMessagingEngine"; if (TraceComponent.isAnyTracingEnabled() && TRACE.isEntryEnabled()) { SibTr.entry(this, TRACE, methodName, messagingEngine); } ...
[ "synchronized", "protected", "void", "addMessagingEngine", "(", "final", "JsMessagingEngine", "messagingEngine", ")", "{", "final", "String", "methodName", "=", "\"addMessagingEngine\"", ";", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "TR...
Connects to the given messaging engine. Registers a destination listener and creates listeners for each of the current destinations. @param messagingEngine the messaging engine to connect to
[ "Connects", "to", "the", "given", "messaging", "engine", ".", "Registers", "a", "destination", "listener", "and", "creates", "listeners", "for", "each", "of", "the", "current", "destinations", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/ra/inbound/impl/SibRaDynamicDestinationEndpointActivation.java#L130-L224
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java
ClientNotificationArea.addNotfication
public void addNotfication(Notification notification) { Object source = notification.getSource(); NotificationRecord nr; if (source instanceof ObjectName) { nr = new NotificationRecord(notification, (ObjectName) source); } else { nr = new NotificationRecord(notifi...
java
public void addNotfication(Notification notification) { Object source = notification.getSource(); NotificationRecord nr; if (source instanceof ObjectName) { nr = new NotificationRecord(notification, (ObjectName) source); } else { nr = new NotificationRecord(notifi...
[ "public", "void", "addNotfication", "(", "Notification", "notification", ")", "{", "Object", "source", "=", "notification", ".", "getSource", "(", ")", ";", "NotificationRecord", "nr", ";", "if", "(", "source", "instanceof", "ObjectName", ")", "{", "nr", "=", ...
This method will be called by the NotificationListener once the MBeanServer pushes a notification.
[ "This", "method", "will", "be", "called", "by", "the", "NotificationListener", "once", "the", "MBeanServer", "pushes", "a", "notification", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java#L146-L155
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java
ClientNotificationArea.addClientNotificationListener
public void addClientNotificationListener(RESTRequest request, NotificationRegistration notificationRegistration, JSONConverter converter) { String objectNameStr = notificationRegistration.objectName.getCanonicalName(); NotificationTargetInformation nti = toNotificationTargetInformation(request, object...
java
public void addClientNotificationListener(RESTRequest request, NotificationRegistration notificationRegistration, JSONConverter converter) { String objectNameStr = notificationRegistration.objectName.getCanonicalName(); NotificationTargetInformation nti = toNotificationTargetInformation(request, object...
[ "public", "void", "addClientNotificationListener", "(", "RESTRequest", "request", ",", "NotificationRegistration", "notificationRegistration", ",", "JSONConverter", "converter", ")", "{", "String", "objectNameStr", "=", "notificationRegistration", ".", "objectName", ".", "g...
Fetch or create a new listener for the given object name
[ "Fetch", "or", "create", "a", "new", "listener", "for", "the", "given", "object", "name" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java#L225-L260
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java
ClientNotificationArea.updateClientNotificationListener
public void updateClientNotificationListener(RESTRequest request, String objectNameStr, NotificationFilter[] filters, JSONConverter converter) { NotificationTargetInformation nti = toNotificationTargetInformation(request, objectNameStr); ClientNotificationListener listener = listeners.get(nti); ...
java
public void updateClientNotificationListener(RESTRequest request, String objectNameStr, NotificationFilter[] filters, JSONConverter converter) { NotificationTargetInformation nti = toNotificationTargetInformation(request, objectNameStr); ClientNotificationListener listener = listeners.get(nti); ...
[ "public", "void", "updateClientNotificationListener", "(", "RESTRequest", "request", ",", "String", "objectNameStr", ",", "NotificationFilter", "[", "]", "filters", ",", "JSONConverter", "converter", ")", "{", "NotificationTargetInformation", "nti", "=", "toNotificationTa...
Update the listener for the given object name with the provided filters
[ "Update", "the", "listener", "for", "the", "given", "object", "name", "with", "the", "provided", "filters" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java#L265-L276
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java
ClientNotificationArea.removeObject
private Object removeObject(Integer key) { if (key == null) { return null; } return objectLibrary.remove(key); }
java
private Object removeObject(Integer key) { if (key == null) { return null; } return objectLibrary.remove(key); }
[ "private", "Object", "removeObject", "(", "Integer", "key", ")", "{", "if", "(", "key", "==", "null", ")", "{", "return", "null", ";", "}", "return", "objectLibrary", ".", "remove", "(", "key", ")", ";", "}" ]
Only to be used by removal coming from direct-http calls, because calls from the jmx client can still reference this key for other notifications.
[ "Only", "to", "be", "used", "by", "removal", "coming", "from", "direct", "-", "http", "calls", "because", "calls", "from", "the", "jmx", "client", "can", "still", "reference", "this", "key", "for", "other", "notifications", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java#L309-L314
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java
ClientNotificationArea.removeClientNotificationListener
public void removeClientNotificationListener(RESTRequest request, ObjectName name) { NotificationTargetInformation nti = toNotificationTargetInformation(request, name.getCanonicalName()); // Remove locally ClientNotificationListener listener = listeners.remove(nti); // Check whether th...
java
public void removeClientNotificationListener(RESTRequest request, ObjectName name) { NotificationTargetInformation nti = toNotificationTargetInformation(request, name.getCanonicalName()); // Remove locally ClientNotificationListener listener = listeners.remove(nti); // Check whether th...
[ "public", "void", "removeClientNotificationListener", "(", "RESTRequest", "request", ",", "ObjectName", "name", ")", "{", "NotificationTargetInformation", "nti", "=", "toNotificationTargetInformation", "(", "request", ",", "name", ".", "getCanonicalName", "(", ")", ")",...
Remove the given NotificationListener
[ "Remove", "the", "given", "NotificationListener" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java#L354-L369
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java
ClientNotificationArea.addServerNotificationListener
public void addServerNotificationListener(RESTRequest request, ServerNotificationRegistration serverNotificationRegistration, JSONConverter converter) { NotificationTargetInformation nti = toNotificationTargetInformation(request, serverNotificationRegistration.objectName.getCanonicalName()); //Fetch th...
java
public void addServerNotificationListener(RESTRequest request, ServerNotificationRegistration serverNotificationRegistration, JSONConverter converter) { NotificationTargetInformation nti = toNotificationTargetInformation(request, serverNotificationRegistration.objectName.getCanonicalName()); //Fetch th...
[ "public", "void", "addServerNotificationListener", "(", "RESTRequest", "request", ",", "ServerNotificationRegistration", "serverNotificationRegistration", ",", "JSONConverter", "converter", ")", "{", "NotificationTargetInformation", "nti", "=", "toNotificationTargetInformation", ...
Add the server notification to our internal list so we can cleanup afterwards
[ "Add", "the", "server", "notification", "to", "our", "internal", "list", "so", "we", "can", "cleanup", "afterwards" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java#L497-L542
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java
ClientNotificationArea.remoteClientRegistrations
public synchronized void remoteClientRegistrations(RESTRequest request) { Iterator<Entry<NotificationTargetInformation, ClientNotificationListener>> clientListeners = listeners.entrySet().iterator(); try { while (clientListeners.hasNext()) { Entry<NotificationTargetInformati...
java
public synchronized void remoteClientRegistrations(RESTRequest request) { Iterator<Entry<NotificationTargetInformation, ClientNotificationListener>> clientListeners = listeners.entrySet().iterator(); try { while (clientListeners.hasNext()) { Entry<NotificationTargetInformati...
[ "public", "synchronized", "void", "remoteClientRegistrations", "(", "RESTRequest", "request", ")", "{", "Iterator", "<", "Entry", "<", "NotificationTargetInformation", ",", "ClientNotificationListener", ">", ">", "clientListeners", "=", "listeners", ".", "entrySet", "("...
Remove all the client notifications
[ "Remove", "all", "the", "client", "notifications" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java#L547-L585
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java
ClientNotificationArea.remoteServerRegistrations
public synchronized void remoteServerRegistrations(RESTRequest request) { Iterator<Entry<NotificationTargetInformation, List<ServerNotification>>> serverNotificationsIter = serverNotifications.entrySet().iterator(); while (serverNotificationsIter.hasNext()) { Entry<NotificationTargetInformat...
java
public synchronized void remoteServerRegistrations(RESTRequest request) { Iterator<Entry<NotificationTargetInformation, List<ServerNotification>>> serverNotificationsIter = serverNotifications.entrySet().iterator(); while (serverNotificationsIter.hasNext()) { Entry<NotificationTargetInformat...
[ "public", "synchronized", "void", "remoteServerRegistrations", "(", "RESTRequest", "request", ")", "{", "Iterator", "<", "Entry", "<", "NotificationTargetInformation", ",", "List", "<", "ServerNotification", ">", ">", ">", "serverNotificationsIter", "=", "serverNotifica...
Remove all the server notifications
[ "Remove", "all", "the", "server", "notifications" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jmx.connector.server.rest/src/com/ibm/ws/jmx/connector/server/rest/notification/ClientNotificationArea.java#L590-L632
train
OpenLiberty/open-liberty
dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/handlers/LogRecordTextHandler.java
LogRecordTextHandler.copyHeader
public void copyHeader(LogRepositoryWriter writer) throws IllegalArgumentException { if (writer == null) { throw new IllegalArgumentException("Parameter writer can't be null"); } writer.setHeader(headerBytes); }
java
public void copyHeader(LogRepositoryWriter writer) throws IllegalArgumentException { if (writer == null) { throw new IllegalArgumentException("Parameter writer can't be null"); } writer.setHeader(headerBytes); }
[ "public", "void", "copyHeader", "(", "LogRepositoryWriter", "writer", ")", "throws", "IllegalArgumentException", "{", "if", "(", "writer", "==", "null", ")", "{", "throw", "new", "IllegalArgumentException", "(", "\"Parameter writer can't be null\"", ")", ";", "}", "...
Copy header into provided writer @param writer repository writer to verify @throws IllegalArgumentException if writer is 'null'
[ "Copy", "header", "into", "provided", "writer" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.logging.hpel/src/com/ibm/ws/logging/hpel/handlers/LogRecordTextHandler.java#L110-L115
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiHdrsImpl.java
JsApiHdrsImpl.getCcsid
final Integer getCcsid() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getCcsid"); Integer value = (Integer) jmo.getPayloadPart().getField(JsPayloadAccess.CCSID_DATA); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) ...
java
final Integer getCcsid() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getCcsid"); Integer value = (Integer) jmo.getPayloadPart().getField(JsPayloadAccess.CCSID_DATA); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) ...
[ "final", "Integer", "getCcsid", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getCcsid\"", ")", ";", "Integer", ...
Get the contents of the ccsid field from the payload part. d395685 @return Integer The value of the CharacterSetID for the message payload.
[ "Get", "the", "contents", "of", "the", "ccsid", "field", "from", "the", "payload", "part", ".", "d395685" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiHdrsImpl.java#L1441-L1450
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiHdrsImpl.java
JsApiHdrsImpl.getEncoding
final Integer getEncoding() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getEncoding"); Integer value = (Integer) jmo.getPayloadPart().getField(JsPayloadAccess.ENCODING_DATA); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled...
java
final Integer getEncoding() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getEncoding"); Integer value = (Integer) jmo.getPayloadPart().getField(JsPayloadAccess.ENCODING_DATA); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled...
[ "final", "Integer", "getEncoding", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getEncoding\"", ")", ";", "Integ...
Get the contents of the encoding field from the payload part. d395685 @return Integer The value of the Encoding (for MQ) for the message payload.
[ "Get", "the", "contents", "of", "the", "encoding", "field", "from", "the", "payload", "part", ".", "d395685" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiHdrsImpl.java#L1458-L1467
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiHdrsImpl.java
JsApiHdrsImpl.setCcsid
final void setCcsid(Object value) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setCcsid", value); // If the value is null, then clear the field if (value == null) { jmo.getPayloadPart().setField(JsPayloadAccess.CCSID, JsPayloa...
java
final void setCcsid(Object value) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setCcsid", value); // If the value is null, then clear the field if (value == null) { jmo.getPayloadPart().setField(JsPayloadAccess.CCSID, JsPayloa...
[ "final", "void", "setCcsid", "(", "Object", "value", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"setCcsid\"", ",", ...
Set the contents of the ccsid field in the message payload part. d395685 @param value the Object value of the CharacterSetID to be set into the ccsid field
[ "Set", "the", "contents", "of", "the", "ccsid", "field", "in", "the", "message", "payload", "part", ".", "d395685" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiHdrsImpl.java#L1475-L1508
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiHdrsImpl.java
JsApiHdrsImpl.setEncoding
final void setEncoding(Object value) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setEncoding", value); // If the value is null or unsuitable, then clear the field if ((value == null) || !(value instanceof Integer)) { jmo.getP...
java
final void setEncoding(Object value) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setEncoding", value); // If the value is null or unsuitable, then clear the field if ((value == null) || !(value instanceof Integer)) { jmo.getP...
[ "final", "void", "setEncoding", "(", "Object", "value", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"setEncoding\"", ...
Set the contents of the encoding field in the message payload part. d395685 @param value the Object value of the Encoding (for MQ) be set into the encoding field
[ "Set", "the", "contents", "of", "the", "encoding", "field", "in", "the", "message", "payload", "part", ".", "d395685" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiHdrsImpl.java#L1516-L1531
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.preShutdown
public void preShutdown(boolean transactionsLeft) throws Exception /* @PK31789C */ { if (tc.isEntryEnabled()) Tr.entry(tc, "preShutdown", transactionsLeft); try { // Terminate partner log activity getPartnerLogTable().terminate(); // 172471 // If the...
java
public void preShutdown(boolean transactionsLeft) throws Exception /* @PK31789C */ { if (tc.isEntryEnabled()) Tr.entry(tc, "preShutdown", transactionsLeft); try { // Terminate partner log activity getPartnerLogTable().terminate(); // 172471 // If the...
[ "public", "void", "preShutdown", "(", "boolean", "transactionsLeft", ")", "throws", "Exception", "/* @PK31789C */", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"preShutdown\"", ",", "transactionsLeft", ")",...
Informs the RecoveryManager that the transaction service is being shut down. The shutdown method can be driven in one of two ways:- 1. Real server shutdown. The TxServiceImpl.destroy method runs through all its FailureScopeControllers and calls shutdown on them. This in turn directs the associated RecoveryManagers to...
[ "Informs", "the", "RecoveryManager", "that", "the", "transaction", "service", "is", "being", "shut", "down", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L481-L571
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.updateTranLogServiceData
protected void updateTranLogServiceData() throws Exception { if (tc.isEntryEnabled()) Tr.entry(tc, "updateTranLogServiceData"); try { // // Check we have a recoverableUnit and three sections to add the data. // On recovery we check that all service data s...
java
protected void updateTranLogServiceData() throws Exception { if (tc.isEntryEnabled()) Tr.entry(tc, "updateTranLogServiceData"); try { // // Check we have a recoverableUnit and three sections to add the data. // On recovery we check that all service data s...
[ "protected", "void", "updateTranLogServiceData", "(", ")", "throws", "Exception", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"updateTranLogServiceData\"", ")", ";", "try", "{", "//", "// Check we have a re...
Update service data in the tran log files
[ "Update", "service", "data", "in", "the", "tran", "log", "files" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L1012-L1044
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.updatePartnerServiceData
protected void updatePartnerServiceData() throws Exception { if (tc.isEntryEnabled()) Tr.entry(tc, "updatePartnerServiceData"); try { // // Check we have a recoverableUnit and three sections to add the data. // On recovery we check that all service data s...
java
protected void updatePartnerServiceData() throws Exception { if (tc.isEntryEnabled()) Tr.entry(tc, "updatePartnerServiceData"); try { // // Check we have a recoverableUnit and three sections to add the data. // On recovery we check that all service data s...
[ "protected", "void", "updatePartnerServiceData", "(", ")", "throws", "Exception", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"updatePartnerServiceData\"", ")", ";", "try", "{", "//", "// Check we have a re...
Update service data in the partner log files
[ "Update", "service", "data", "in", "the", "partner", "log", "files" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L1050-L1101
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.waitForRecoveryCompletion
public void waitForRecoveryCompletion() { if (tc.isEntryEnabled()) Tr.entry(tc, "waitForRecoveryCompletion"); if (!_recoveryCompleted) { try { if (tc.isEventEnabled()) Tr.event(tc, "starting to wait for recovery completion"); ...
java
public void waitForRecoveryCompletion() { if (tc.isEntryEnabled()) Tr.entry(tc, "waitForRecoveryCompletion"); if (!_recoveryCompleted) { try { if (tc.isEventEnabled()) Tr.event(tc, "starting to wait for recovery completion"); ...
[ "public", "void", "waitForRecoveryCompletion", "(", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"waitForRecoveryCompletion\"", ")", ";", "if", "(", "!", "_recoveryCompleted", ")", "{", "try", "{", ...
Blocks the current thread until initial recovery has completed.
[ "Blocks", "the", "current", "thread", "until", "initial", "recovery", "has", "completed", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L1175-L1197
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.recoveryComplete
public void recoveryComplete() /* @LIDB3187C */ { if (tc.isEntryEnabled()) Tr.entry(tc, "recoveryComplete"); if (!_recoveryCompleted) { _recoveryCompleted = true; _recoveryInProgress.post(); } // Check for null currently required as z/OS creates ...
java
public void recoveryComplete() /* @LIDB3187C */ { if (tc.isEntryEnabled()) Tr.entry(tc, "recoveryComplete"); if (!_recoveryCompleted) { _recoveryCompleted = true; _recoveryInProgress.post(); } // Check for null currently required as z/OS creates ...
[ "public", "void", "recoveryComplete", "(", ")", "/* @LIDB3187C */", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"recoveryComplete\"", ")", ";", "if", "(", "!", "_recoveryCompleted", ")", "{", "_recovery...
Marks recovery as completed and signals the recovery director to this effect.
[ "Marks", "recovery", "as", "completed", "and", "signals", "the", "recovery", "director", "to", "this", "effect", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L1202-L1223
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.shutdownInProgress
public boolean shutdownInProgress() /* @LIDB3187C */ { synchronized (_recoveryMonitor) { if (_shutdownInProgress) { // Put out a message stating the we are stopping recovery processing. Since this method can // be called a number of times in succession (to allow n...
java
public boolean shutdownInProgress() /* @LIDB3187C */ { synchronized (_recoveryMonitor) { if (_shutdownInProgress) { // Put out a message stating the we are stopping recovery processing. Since this method can // be called a number of times in succession (to allow n...
[ "public", "boolean", "shutdownInProgress", "(", ")", "/* @LIDB3187C */", "{", "synchronized", "(", "_recoveryMonitor", ")", "{", "if", "(", "_shutdownInProgress", ")", "{", "// Put out a message stating the we are stopping recovery processing. Since this method can", "// be calle...
examine the boolean return value and not proceed with recovery if its true.
[ "examine", "the", "boolean", "return", "value", "and", "not", "proceed", "with", "recovery", "if", "its", "true", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L1273-L1293
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.getRecoveringTransactions
protected TransactionImpl[] getRecoveringTransactions() { TransactionImpl[] recoveredTransactions = new TransactionImpl[_recoveringTransactions.size()]; _recoveringTransactions.toArray(recoveredTransactions); return recoveredTransactions; }
java
protected TransactionImpl[] getRecoveringTransactions() { TransactionImpl[] recoveredTransactions = new TransactionImpl[_recoveringTransactions.size()]; _recoveringTransactions.toArray(recoveredTransactions); return recoveredTransactions; }
[ "protected", "TransactionImpl", "[", "]", "getRecoveringTransactions", "(", ")", "{", "TransactionImpl", "[", "]", "recoveredTransactions", "=", "new", "TransactionImpl", "[", "_recoveringTransactions", ".", "size", "(", ")", "]", ";", "_recoveringTransactions", ".", ...
This method should only be called from the "recover" thread else ConcurretModificationException may arise
[ "This", "method", "should", "only", "be", "called", "from", "the", "recover", "thread", "else", "ConcurretModificationException", "may", "arise" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L1559-L1563
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.closeLogs
protected void closeLogs(boolean closeLeaseLog) { if (tc.isEntryEnabled()) Tr.entry(tc, "closeLogs", new Object[] { this, closeLeaseLog }); if ((_tranLog != null) && (_tranLog instanceof DistributedRecoveryLog)) { try { ((DistributedRecoveryLog) _tranLog).closeLo...
java
protected void closeLogs(boolean closeLeaseLog) { if (tc.isEntryEnabled()) Tr.entry(tc, "closeLogs", new Object[] { this, closeLeaseLog }); if ((_tranLog != null) && (_tranLog instanceof DistributedRecoveryLog)) { try { ((DistributedRecoveryLog) _tranLog).closeLo...
[ "protected", "void", "closeLogs", "(", "boolean", "closeLeaseLog", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"closeLogs\"", ",", "new", "Object", "[", "]", "{", "this", ",", "closeLeaseLog", ...
Close the loggs without any keypoint - to be called on a failure to leave the logs alone and ensure distributed shutdown code does not update them. The closeLeaseLog parameter will be false in the case that we have determined that a peer is recovering the server's logs. @param closeLeaseLog is true if we should proce...
[ "Close", "the", "loggs", "without", "any", "keypoint", "-", "to", "be", "called", "on", "a", "failure", "to", "leave", "the", "logs", "alone", "and", "ensure", "distributed", "shutdown", "code", "does", "not", "update", "them", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L1624-L1657
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.registerTransaction
public void registerTransaction(TransactionImpl tran) { if (tc.isEntryEnabled()) Tr.entry(tc, "registerTransaction", new Object[] { this, tran }); _recoveringTransactions.add(tran); if (tc.isEntryEnabled()) Tr.exit(tc, "registerTransaction", _recoveringTransactions.size...
java
public void registerTransaction(TransactionImpl tran) { if (tc.isEntryEnabled()) Tr.entry(tc, "registerTransaction", new Object[] { this, tran }); _recoveringTransactions.add(tran); if (tc.isEntryEnabled()) Tr.exit(tc, "registerTransaction", _recoveringTransactions.size...
[ "public", "void", "registerTransaction", "(", "TransactionImpl", "tran", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"registerTransaction\"", ",", "new", "Object", "[", "]", "{", "this", ",", "tr...
Registers a recovered transactions existance. This method is triggered from the FailureScopeController.registerTransaction for all transactions that have been created during a recovery process. @param tran The transaction reference object.
[ "Registers", "a", "recovered", "transactions", "existance", ".", "This", "method", "is", "triggered", "from", "the", "FailureScopeController", ".", "registerTransaction", "for", "all", "transactions", "that", "have", "been", "created", "during", "a", "recovery", "pr...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L2093-L2101
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.deregisterTransaction
public void deregisterTransaction(TransactionImpl tran) { if (tc.isEntryEnabled()) Tr.entry(tc, "deregisterTransaction", new Object[] { this, tran }); _recoveringTransactions.remove(tran); if (tc.isEntryEnabled()) Tr.exit(tc, "deregisterTransaction", _recoveringTransact...
java
public void deregisterTransaction(TransactionImpl tran) { if (tc.isEntryEnabled()) Tr.entry(tc, "deregisterTransaction", new Object[] { this, tran }); _recoveringTransactions.remove(tran); if (tc.isEntryEnabled()) Tr.exit(tc, "deregisterTransaction", _recoveringTransact...
[ "public", "void", "deregisterTransaction", "(", "TransactionImpl", "tran", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"deregisterTransaction\"", ",", "new", "Object", "[", "]", "{", "this", ",", ...
Deregisters a recovered transactions existance. This method is triggered from the FailureScopeController.deregisterTransaction for recovered transactions. @param tran The transaction reference object.
[ "Deregisters", "a", "recovered", "transactions", "existance", ".", "This", "method", "is", "triggered", "from", "the", "FailureScopeController", ".", "deregisterTransaction", "for", "recovered", "transactions", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L2109-L2117
train
OpenLiberty/open-liberty
dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java
RecoveryManager.recoveryModeTxnsComplete
protected boolean recoveryModeTxnsComplete() { if (tc.isEntryEnabled()) Tr.entry(tc, "recoveryModeTxnsComplete"); if (_recoveringTransactions != null) { for (TransactionImpl tx : _recoveringTransactions) { if (tx != null && !tx.isRAImport()) { ...
java
protected boolean recoveryModeTxnsComplete() { if (tc.isEntryEnabled()) Tr.entry(tc, "recoveryModeTxnsComplete"); if (_recoveringTransactions != null) { for (TransactionImpl tx : _recoveringTransactions) { if (tx != null && !tx.isRAImport()) { ...
[ "protected", "boolean", "recoveryModeTxnsComplete", "(", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entry", "(", "tc", ",", "\"recoveryModeTxnsComplete\"", ")", ";", "if", "(", "_recoveringTransactions", "!=", "null", ")", "...
This does not include JCA inbound txns
[ "This", "does", "not", "include", "JCA", "inbound", "txns" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.tx.core/src/com/ibm/tx/jta/impl/RecoveryManager.java#L2121-L2138
train