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.jaxws.clientcontainer/src/com/ibm/ws/jaxws/client/injection/InjectionHelper.java
InjectionHelper.getTypeFromMember
static Class<?> getTypeFromMember(Member member) throws InjectionException { Class<?> memberType = null; if (member instanceof Field) { memberType = ((Field) member).getType(); } else if (member instanceof Method) { Method method = (Method) member; if (method....
java
static Class<?> getTypeFromMember(Member member) throws InjectionException { Class<?> memberType = null; if (member instanceof Field) { memberType = ((Field) member).getType(); } else if (member instanceof Method) { Method method = (Method) member; if (method....
[ "static", "Class", "<", "?", ">", "getTypeFromMember", "(", "Member", "member", ")", "throws", "InjectionException", "{", "Class", "<", "?", ">", "memberType", "=", "null", ";", "if", "(", "member", "instanceof", "Field", ")", "{", "memberType", "=", "(", ...
This returns the type of the injection being requested based on either the annotated field or annotated method.
[ "This", "returns", "the", "type", "of", "the", "injection", "being", "requested", "based", "on", "either", "the", "annotated", "field", "or", "annotated", "method", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxws.clientcontainer/src/com/ibm/ws/jaxws/client/injection/InjectionHelper.java#L42-L56
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/StaticCATHelper.java
StaticCATHelper.sendExceptionToClient
public static void sendExceptionToClient(Throwable throwable, String probeId, Conversation conversation, int requestNumber) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "sendExceptionToClient", ...
java
public static void sendExceptionToClient(Throwable throwable, String probeId, Conversation conversation, int requestNumber) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "sendExceptionToClient", ...
[ "public", "static", "void", "sendExceptionToClient", "(", "Throwable", "throwable", ",", "String", "probeId", ",", "Conversation", "conversation", ",", "int", "requestNumber", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc",...
Sends an exception response back to the client. @param throwable The exception to send back @param probeId The probe ID of any corresponding FFDC record. @param conversation The conversaton to use. @param requestNumber The request number to reply with.
[ "Sends", "an", "exception", "response", "back", "to", "the", "client", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/StaticCATHelper.java#L76-L116
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/StaticCATHelper.java
StaticCATHelper.sendAsyncExceptionToClient
public static void sendAsyncExceptionToClient(Throwable throwable, String probeId, short clientSessionId, Conversation conversation, int requestNumber) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnab...
java
public static void sendAsyncExceptionToClient(Throwable throwable, String probeId, short clientSessionId, Conversation conversation, int requestNumber) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnab...
[ "public", "static", "void", "sendAsyncExceptionToClient", "(", "Throwable", "throwable", ",", "String", "probeId", ",", "short", "clientSessionId", ",", "Conversation", "conversation", ",", "int", "requestNumber", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTr...
This method is used to flow a message down to the client that will get picked up and delivered to the asynchronousException method of any listeners that the client has registered. @param throwable @param probeId @param clientSessionId @param conversation @param requestNumber
[ "This", "method", "is", "used", "to", "flow", "a", "message", "down", "to", "the", "client", "that", "will", "get", "picked", "up", "and", "delivered", "to", "the", "asynchronousException", "method", "of", "any", "listeners", "that", "the", "client", "has", ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/StaticCATHelper.java#L129-L170
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/StaticCATHelper.java
StaticCATHelper.sendSessionCreateResponse
public static void sendSessionCreateResponse(int segmentType, int requestNumber, Conversation conversation, short sessionId, DestinationSession session, SIDestinationAddress...
java
public static void sendSessionCreateResponse(int segmentType, int requestNumber, Conversation conversation, short sessionId, DestinationSession session, SIDestinationAddress...
[ "public", "static", "void", "sendSessionCreateResponse", "(", "int", "segmentType", ",", "int", "requestNumber", ",", "Conversation", "conversation", ",", "short", "sessionId", ",", "DestinationSession", "session", ",", "SIDestinationAddress", "originalDestinationAddr", "...
Because of the larger amount of data needed to be sent back on the response to a session create, I have split this into a seperate method so that we are not repeating code all over the place. @param segmentType The segment type to send the response with. @param requestNumber The request number we are replying to. @par...
[ "Because", "of", "the", "larger", "amount", "of", "data", "needed", "to", "be", "sent", "back", "on", "the", "response", "to", "a", "session", "create", "I", "have", "split", "this", "into", "a", "seperate", "method", "so", "that", "we", "are", "not", ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/StaticCATHelper.java#L189-L265
train
OpenLiberty/open-liberty
dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/internal/commands/JavaDumper.java
JavaDumper.createInstance
private static JavaDumper createInstance() { try { // Try to find IBM Java dumper class. Class<?> dumpClass = Class.forName("com.ibm.jvm.Dump"); try { // Try to find the IBM Java 7.1 dump methods. Class<?>[] paramTypes = new Class<?>[] { String...
java
private static JavaDumper createInstance() { try { // Try to find IBM Java dumper class. Class<?> dumpClass = Class.forName("com.ibm.jvm.Dump"); try { // Try to find the IBM Java 7.1 dump methods. Class<?>[] paramTypes = new Class<?>[] { String...
[ "private", "static", "JavaDumper", "createInstance", "(", ")", "{", "try", "{", "// Try to find IBM Java dumper class.", "Class", "<", "?", ">", "dumpClass", "=", "Class", ".", "forName", "(", "\"com.ibm.jvm.Dump\"", ")", ";", "try", "{", "// Try to find the IBM Jav...
Create a dumper for the current JVM.
[ "Create", "a", "dumper", "for", "the", "current", "JVM", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.boot.core/src/com/ibm/ws/kernel/boot/internal/commands/JavaDumper.java#L27-L62
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jaxrs.2.1.common/src/com/ibm/ws/jaxrs20/clientconfig/JAXRSClientConfigImpl.java
JAXRSClientConfigImpl.filterProps
private Map<String, String> filterProps(Map<String, Object> props) { HashMap<String, String> filteredProps = new HashMap<>(); Iterator<String> it = props.keySet().iterator(); boolean debug = tc.isDebugEnabled() && TraceComponent.isAnyTracingEnabled(); while (it.hasNext()) { ...
java
private Map<String, String> filterProps(Map<String, Object> props) { HashMap<String, String> filteredProps = new HashMap<>(); Iterator<String> it = props.keySet().iterator(); boolean debug = tc.isDebugEnabled() && TraceComponent.isAnyTracingEnabled(); while (it.hasNext()) { ...
[ "private", "Map", "<", "String", ",", "String", ">", "filterProps", "(", "Map", "<", "String", ",", "Object", ">", "props", ")", "{", "HashMap", "<", "String", ",", "String", ">", "filteredProps", "=", "new", "HashMap", "<>", "(", ")", ";", "Iterator",...
given the map of properties, remove ones we don't care about, and translate some others. If it's not one we're familiar with, transfer it unaltered @param props - input list of properties @return - a new Map of the filtered properties.
[ "given", "the", "map", "of", "properties", "remove", "ones", "we", "don", "t", "care", "about", "and", "translate", "some", "others", ".", "If", "it", "s", "not", "one", "we", "re", "familiar", "with", "transfer", "it", "unaltered" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxrs.2.1.common/src/com/ibm/ws/jaxrs20/clientconfig/JAXRSClientConfigImpl.java#L73-L113
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jaxrs.2.1.common/src/com/ibm/ws/jaxrs20/clientconfig/JAXRSClientConfigImpl.java
JAXRSClientConfigImpl.validateAuthn
private String validateAuthn(String value) { // for now, if we got here we're validating an authnToken String result = null; String valueLower = value.toLowerCase(); do { if (valueLower.equals("saml")) { result = JAXRSClientConstants.SAML_HANDLER; ...
java
private String validateAuthn(String value) { // for now, if we got here we're validating an authnToken String result = null; String valueLower = value.toLowerCase(); do { if (valueLower.equals("saml")) { result = JAXRSClientConstants.SAML_HANDLER; ...
[ "private", "String", "validateAuthn", "(", "String", "value", ")", "{", "// for now, if we got here we're validating an authnToken", "String", "result", "=", "null", ";", "String", "valueLower", "=", "value", ".", "toLowerCase", "(", ")", ";", "do", "{", "if", "("...
validate the value for authnToken key and select appropriate new key Note that the check is not case sensitive. @param value - shorthand key name @return long property name
[ "validate", "the", "value", "for", "authnToken", "key", "and", "select", "appropriate", "new", "key", "Note", "that", "the", "check", "is", "not", "case", "sensitive", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxrs.2.1.common/src/com/ibm/ws/jaxrs20/clientconfig/JAXRSClientConfigImpl.java#L122-L143
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jaxrs.2.1.common/src/com/ibm/ws/jaxrs20/clientconfig/JAXRSClientConfigImpl.java
JAXRSClientConfigImpl.getURI
private String getURI(Map<String, Object> props) { if (props == null) return null; if (props.keySet().contains(URI)) { return (props.get(URI).toString()); } else { return null; } }
java
private String getURI(Map<String, Object> props) { if (props == null) return null; if (props.keySet().contains(URI)) { return (props.get(URI).toString()); } else { return null; } }
[ "private", "String", "getURI", "(", "Map", "<", "String", ",", "Object", ">", "props", ")", "{", "if", "(", "props", "==", "null", ")", "return", "null", ";", "if", "(", "props", ".", "keySet", "(", ")", ".", "contains", "(", "URI", ")", ")", "{"...
find the uri parameter which we will key off of @param props @return value of uri param within props, or null if no uri param
[ "find", "the", "uri", "parameter", "which", "we", "will", "key", "off", "of" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jaxrs.2.1.common/src/com/ibm/ws/jaxrs20/clientconfig/JAXRSClientConfigImpl.java#L151-L159
train
OpenLiberty/open-liberty
dev/com.ibm.ws.org.apache.cxf.cxf.core.3.2/src/org/apache/cxf/staxutils/StaxUtils.java
StaxUtils.getXMLInputFactory
private static XMLInputFactory getXMLInputFactory() { if (SAFE_INPUT_FACTORY != null) { return SAFE_INPUT_FACTORY; } XMLInputFactory f = NS_AWARE_INPUT_FACTORY_POOL.poll(); if (f == null) { f = createXMLInputFactory(true); } return f; }
java
private static XMLInputFactory getXMLInputFactory() { if (SAFE_INPUT_FACTORY != null) { return SAFE_INPUT_FACTORY; } XMLInputFactory f = NS_AWARE_INPUT_FACTORY_POOL.poll(); if (f == null) { f = createXMLInputFactory(true); } return f; }
[ "private", "static", "XMLInputFactory", "getXMLInputFactory", "(", ")", "{", "if", "(", "SAFE_INPUT_FACTORY", "!=", "null", ")", "{", "return", "SAFE_INPUT_FACTORY", ";", "}", "XMLInputFactory", "f", "=", "NS_AWARE_INPUT_FACTORY_POOL", ".", "poll", "(", ")", ";", ...
Return a cached, namespace-aware, factory.
[ "Return", "a", "cached", "namespace", "-", "aware", "factory", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.org.apache.cxf.cxf.core.3.2/src/org/apache/cxf/staxutils/StaxUtils.java#L278-L287
train
OpenLiberty/open-liberty
dev/com.ibm.ws.org.apache.cxf.cxf.core.3.2/src/org/apache/cxf/staxutils/StaxUtils.java
StaxUtils.copy
public static void copy(XMLStreamReader reader, XMLStreamWriter writer) throws XMLStreamException { copy(reader, writer, false, false); }
java
public static void copy(XMLStreamReader reader, XMLStreamWriter writer) throws XMLStreamException { copy(reader, writer, false, false); }
[ "public", "static", "void", "copy", "(", "XMLStreamReader", "reader", ",", "XMLStreamWriter", "writer", ")", "throws", "XMLStreamException", "{", "copy", "(", "reader", ",", "writer", ",", "false", ",", "false", ")", ";", "}" ]
Copies the reader to the writer. The start and end document methods must be handled on the writer manually. @param reader @param writer @throws XMLStreamException
[ "Copies", "the", "reader", "to", "the", "writer", ".", "The", "start", "and", "end", "document", "methods", "must", "be", "handled", "on", "the", "writer", "manually", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.org.apache.cxf.cxf.core.3.2/src/org/apache/cxf/staxutils/StaxUtils.java#L729-L731
train
OpenLiberty/open-liberty
dev/com.ibm.ws.org.apache.cxf.cxf.core.3.2/src/org/apache/cxf/staxutils/StaxUtils.java
StaxUtils.readQName
public static QName readQName(XMLStreamReader reader) throws XMLStreamException { String value = reader.getElementText(); if (value == null) { return null; } value = value.trim(); int index = value.indexOf(":"); if (index == -1) { return new QNam...
java
public static QName readQName(XMLStreamReader reader) throws XMLStreamException { String value = reader.getElementText(); if (value == null) { return null; } value = value.trim(); int index = value.indexOf(":"); if (index == -1) { return new QNam...
[ "public", "static", "QName", "readQName", "(", "XMLStreamReader", "reader", ")", "throws", "XMLStreamException", "{", "String", "value", "=", "reader", ".", "getElementText", "(", ")", ";", "if", "(", "value", "==", "null", ")", "{", "return", "null", ";", ...
Reads a QName from the element text. Reader must be positioned at the start tag.
[ "Reads", "a", "QName", "from", "the", "element", "text", ".", "Reader", "must", "be", "positioned", "at", "the", "start", "tag", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.org.apache.cxf.cxf.core.3.2/src/org/apache/cxf/staxutils/StaxUtils.java#L1851-L1877
train
OpenLiberty/open-liberty
dev/com.ibm.ws.kernel.service/src/com/ibm/wsspi/kernel/service/utils/ConcurrentServiceReferenceSet.java
ConcurrentServiceReferenceSet.addReference
public boolean addReference(ServiceReference<T> reference) { if (reference == null) return false; ConcurrentServiceReferenceElement<T> element = new ConcurrentServiceReferenceElement<T>(referenceName, reference); synchronized (elementMap) { ConcurrentServiceReferenceEle...
java
public boolean addReference(ServiceReference<T> reference) { if (reference == null) return false; ConcurrentServiceReferenceElement<T> element = new ConcurrentServiceReferenceElement<T>(referenceName, reference); synchronized (elementMap) { ConcurrentServiceReferenceEle...
[ "public", "boolean", "addReference", "(", "ServiceReference", "<", "T", ">", "reference", ")", "{", "if", "(", "reference", "==", "null", ")", "return", "false", ";", "ConcurrentServiceReferenceElement", "<", "T", ">", "element", "=", "new", "ConcurrentServiceRe...
Adds the service reference to the set, or notifies the set that the service ranking for the reference might have been updated. @param reference ServiceReference for the target service @return true if this set already contained the service reference
[ "Adds", "the", "service", "reference", "to", "the", "set", "or", "notifies", "the", "set", "that", "the", "service", "ranking", "for", "the", "reference", "might", "have", "been", "updated", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.service/src/com/ibm/wsspi/kernel/service/utils/ConcurrentServiceReferenceSet.java#L139-L157
train
OpenLiberty/open-liberty
dev/com.ibm.ws.kernel.service/src/com/ibm/wsspi/kernel/service/utils/ConcurrentServiceReferenceSet.java
ConcurrentServiceReferenceSet.removeReference
public boolean removeReference(ServiceReference<T> reference) { synchronized (elementMap) { ConcurrentServiceReferenceElement<T> element = elementMap.remove(reference); if (element == null) { return false; } elementSet.remove(element); ...
java
public boolean removeReference(ServiceReference<T> reference) { synchronized (elementMap) { ConcurrentServiceReferenceElement<T> element = elementMap.remove(reference); if (element == null) { return false; } elementSet.remove(element); ...
[ "public", "boolean", "removeReference", "(", "ServiceReference", "<", "T", ">", "reference", ")", "{", "synchronized", "(", "elementMap", ")", "{", "ConcurrentServiceReferenceElement", "<", "T", ">", "element", "=", "elementMap", ".", "remove", "(", "reference", ...
Removes the service reference from the set @param reference ServiceReference associated with service to be unset @return true if this set contained the service reference
[ "Removes", "the", "service", "reference", "from", "the", "set" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.service/src/com/ibm/wsspi/kernel/service/utils/ConcurrentServiceReferenceSet.java#L165-L175
train
OpenLiberty/open-liberty
dev/com.ibm.ws.kernel.service/src/com/ibm/wsspi/kernel/service/utils/ConcurrentServiceReferenceSet.java
ConcurrentServiceReferenceSet.elements
private Iterator<ConcurrentServiceReferenceElement<T>> elements() { Collection<ConcurrentServiceReferenceElement<T>> set; synchronized (elementMap) { if (elementSetUnsorted) { elementSet = new ConcurrentSkipListSet<ConcurrentServiceReferenceElement<T>>(elementMap.values()); ...
java
private Iterator<ConcurrentServiceReferenceElement<T>> elements() { Collection<ConcurrentServiceReferenceElement<T>> set; synchronized (elementMap) { if (elementSetUnsorted) { elementSet = new ConcurrentSkipListSet<ConcurrentServiceReferenceElement<T>>(elementMap.values()); ...
[ "private", "Iterator", "<", "ConcurrentServiceReferenceElement", "<", "T", ">", ">", "elements", "(", ")", "{", "Collection", "<", "ConcurrentServiceReferenceElement", "<", "T", ">>", "set", ";", "synchronized", "(", "elementMap", ")", "{", "if", "(", "elementSe...
Return an iterator for the elements in service ranking order.
[ "Return", "an", "iterator", "for", "the", "elements", "in", "service", "ranking", "order", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.service/src/com/ibm/wsspi/kernel/service/utils/ConcurrentServiceReferenceSet.java#L243-L254
train
OpenLiberty/open-liberty
dev/com.ibm.ws.channelfw/src/com/ibm/ws/udpchannel/internal/UDPChannelConfiguration.java
UDPChannelConfiguration.setChannelData
public void setChannelData(ChannelData data) throws ChannelException { this.channelData = data; setValues(data.getPropertyBag()); if (tc.isDebugEnabled()) outputConfigToTrace(); }
java
public void setChannelData(ChannelData data) throws ChannelException { this.channelData = data; setValues(data.getPropertyBag()); if (tc.isDebugEnabled()) outputConfigToTrace(); }
[ "public", "void", "setChannelData", "(", "ChannelData", "data", ")", "throws", "ChannelException", "{", "this", ".", "channelData", "=", "data", ";", "setValues", "(", "data", ".", "getPropertyBag", "(", ")", ")", ";", "if", "(", "tc", ".", "isDebugEnabled",...
Update the configuration with a new channel framework configuration object. @param data @throws ChannelException
[ "Update", "the", "configuration", "with", "a", "new", "channel", "framework", "configuration", "object", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/udpchannel/internal/UDPChannelConfiguration.java#L256-L261
train
OpenLiberty/open-liberty
dev/com.ibm.ws.channelfw/src/com/ibm/ws/udpchannel/internal/UDPChannelConfiguration.java
UDPChannelConfiguration.setChannelReceiveBufferSize
public void setChannelReceiveBufferSize(int size) { this.channelReceiveBufferSize = size; if (size < 0 || size > UDPConfigConstants.MAX_UDP_PACKET_SIZE) { if (tc.isDebugEnabled()) { Tr.debug(tc, "Channel Receive buffer size not within Limits: " + size + " setting to default: ...
java
public void setChannelReceiveBufferSize(int size) { this.channelReceiveBufferSize = size; if (size < 0 || size > UDPConfigConstants.MAX_UDP_PACKET_SIZE) { if (tc.isDebugEnabled()) { Tr.debug(tc, "Channel Receive buffer size not within Limits: " + size + " setting to default: ...
[ "public", "void", "setChannelReceiveBufferSize", "(", "int", "size", ")", "{", "this", ".", "channelReceiveBufferSize", "=", "size", ";", "if", "(", "size", "<", "0", "||", "size", ">", "UDPConfigConstants", ".", "MAX_UDP_PACKET_SIZE", ")", "{", "if", "(", "...
Set the size of the bytebuffer to allocate when receiving data. @param size
[ "Set", "the", "size", "of", "the", "bytebuffer", "to", "allocate", "when", "receiving", "data", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/udpchannel/internal/UDPChannelConfiguration.java#L333-L341
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/ServerSICoreConnectionListener.java
ServerSICoreConnectionListener.addSICoreConnection
public void addSICoreConnection(SICoreConnection conn, Conversation conversation) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "addSICoreConnection"); if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) { SibTr.debug(tc, "Params...
java
public void addSICoreConnection(SICoreConnection conn, Conversation conversation) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "addSICoreConnection"); if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) { SibTr.debug(tc, "Params...
[ "public", "void", "addSICoreConnection", "(", "SICoreConnection", "conn", ",", "Conversation", "conversation", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", ...
Creates a new SICoreConnection that this listener is listening for events from. @param conn The SICoreConnection. @param conversation The associated conversation.
[ "Creates", "a", "new", "SICoreConnection", "that", "this", "listener", "is", "listening", "for", "events", "from", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/ServerSICoreConnectionListener.java#L92-L111
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/ServerSICoreConnectionListener.java
ServerSICoreConnectionListener.asynchronousException
@Override public void asynchronousException(ConsumerSession session, Throwable e) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "asynchronousException", new Object[] { session, ...
java
@Override public void asynchronousException(ConsumerSession session, Throwable e) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "asynchronousException", new Object[] { session, ...
[ "@", "Override", "public", "void", "asynchronousException", "(", "ConsumerSession", "session", ",", "Throwable", "e", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", ...
This event is generated if an exception is thrown during the processing of an asynchronous callback. In practise this should never occur as we should ensure that we catch all the errors in the place they occur as no state is available here. @param session @param e
[ "This", "event", "is", "generated", "if", "an", "exception", "is", "thrown", "during", "the", "processing", "of", "an", "asynchronous", "callback", ".", "In", "practise", "this", "should", "never", "occur", "as", "we", "should", "ensure", "that", "we", "catc...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/ServerSICoreConnectionListener.java#L145-L179
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/ServerSICoreConnectionListener.java
ServerSICoreConnectionListener.meTerminated
@Override public void meTerminated(SICoreConnection conn) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "meTerminated"); //Remember the fact that the ME has terminated so we don't issue spurious FFDCs final Conversation conversation = convers...
java
@Override public void meTerminated(SICoreConnection conn) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "meTerminated"); //Remember the fact that the ME has terminated so we don't issue spurious FFDCs final Conversation conversation = convers...
[ "@", "Override", "public", "void", "meTerminated", "(", "SICoreConnection", "conn", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"meT...
This method is called when the ME terminates. @param conn
[ "This", "method", "is", "called", "when", "the", "ME", "terminates", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/ServerSICoreConnectionListener.java#L252-L307
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/ServerSICoreConnectionListener.java
ServerSICoreConnectionListener.commsFailure
@Override public void commsFailure(SICoreConnection conn, SIConnectionLostException e) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "commsFailure", new Object[] { conn, ...
java
@Override public void commsFailure(SICoreConnection conn, SIConnectionLostException e) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "commsFailure", new Object[] { conn, ...
[ "@", "Override", "public", "void", "commsFailure", "(", "SICoreConnection", "conn", ",", "SIConnectionLostException", "e", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", "...
This is used to indicate a communication failure on the client. Seeing as we are the only people who would ever generate this event for the client if this gets invoked on the server then someone has done something not bad, not even wrong, but silly. @param conn @param e
[ "This", "is", "used", "to", "indicate", "a", "communication", "failure", "on", "the", "client", ".", "Seeing", "as", "we", "are", "the", "only", "people", "who", "would", "ever", "generate", "this", "event", "for", "the", "client", "if", "this", "gets", ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.comms.server/src/com/ibm/ws/sib/comms/server/clientsupport/ServerSICoreConnectionListener.java#L458-L478
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer/src/com/ibm/websphere/servlet/event/ServletInvocationEvent.java
ServletInvocationEvent.getRequestURL
public String getRequestURL() { HttpServletRequest httpReq = getRequest(); if (httpReq==null) return null; else return httpReq.getRequestURL().toString(); }
java
public String getRequestURL() { HttpServletRequest httpReq = getRequest(); if (httpReq==null) return null; else return httpReq.getRequestURL().toString(); }
[ "public", "String", "getRequestURL", "(", ")", "{", "HttpServletRequest", "httpReq", "=", "getRequest", "(", ")", ";", "if", "(", "httpReq", "==", "null", ")", "return", "null", ";", "else", "return", "httpReq", ".", "getRequestURL", "(", ")", ".", "toStri...
Get the URL of this invocation.
[ "Get", "the", "URL", "of", "this", "invocation", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/websphere/servlet/event/ServletInvocationEvent.java#L53-L60
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer/src/com/ibm/websphere/servlet/event/ServletInvocationEvent.java
ServletInvocationEvent.getRequest
public HttpServletRequest getRequest() { // moved as part of LIDB-3598 to ServletUtil /* ServletRequest r = _req; while (!(r instanceof HttpServletRequest)) { if (r instanceof ServletRequestWrapper) { r = ((ServletRequestWrapper...
java
public HttpServletRequest getRequest() { // moved as part of LIDB-3598 to ServletUtil /* ServletRequest r = _req; while (!(r instanceof HttpServletRequest)) { if (r instanceof ServletRequestWrapper) { r = ((ServletRequestWrapper...
[ "public", "HttpServletRequest", "getRequest", "(", ")", "{", "// \tmoved as part of \tLIDB-3598 to ServletUtil", "/*\n ServletRequest r = _req;\n \n while (!(r instanceof HttpServletRequest))\n {\n if (r instanceof ServletRequestWrapper)\n {\n ...
Get the request used for the servlet invocation.
[ "Get", "the", "request", "used", "for", "the", "servlet", "invocation", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/websphere/servlet/event/ServletInvocationEvent.java#L77-L110
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer/src/com/ibm/websphere/servlet/event/ServletInvocationEvent.java
ServletInvocationEvent.getResponse
public HttpServletResponse getResponse() { // moved as part of LIDB-3598 to ServletUtil /* ServletResponse r = _resp; while (!(r instanceof HttpServletResponse)) { if (r instanceof ServletResponseWrapper) { r = ((ServletResponseWrapper) r)....
java
public HttpServletResponse getResponse() { // moved as part of LIDB-3598 to ServletUtil /* ServletResponse r = _resp; while (!(r instanceof HttpServletResponse)) { if (r instanceof ServletResponseWrapper) { r = ((ServletResponseWrapper) r)....
[ "public", "HttpServletResponse", "getResponse", "(", ")", "{", "// moved as part of \tLIDB-3598 to ServletUtil", "/*\n ServletResponse r = _resp;\n\n while (!(r instanceof HttpServletResponse))\n {\n if (r instanceof ServletResponseWrapper)\n {\n ...
Get the response used for the servlet invocation.
[ "Get", "the", "response", "used", "for", "the", "servlet", "invocation", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/websphere/servlet/event/ServletInvocationEvent.java#L115-L148
train
OpenLiberty/open-liberty
dev/com.ibm.ws.monitor/src/com/ibm/websphere/pmi/PmiDataInfo.java
PmiDataInfo.isAvailableInPlatform
public boolean isAvailableInPlatform(String p) { if (this.platform.equals(PLATFORM_ALL)) return true; else return (this.platform.equals(p)); }
java
public boolean isAvailableInPlatform(String p) { if (this.platform.equals(PLATFORM_ALL)) return true; else return (this.platform.equals(p)); }
[ "public", "boolean", "isAvailableInPlatform", "(", "String", "p", ")", "{", "if", "(", "this", ".", "platform", ".", "equals", "(", "PLATFORM_ALL", ")", ")", "return", "true", ";", "else", "return", "(", "this", ".", "platform", ".", "equals", "(", "p", ...
Return true if this statistic is available in the given platform @param p - platform string defined in PmiConstants
[ "Return", "true", "if", "this", "statistic", "is", "available", "in", "the", "given", "platform" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/websphere/pmi/PmiDataInfo.java#L329-L334
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/webcontainerext/JSPExtensionClassLoader.java
JSPExtensionClassLoader.loadClassDataFromFile
protected byte[] loadClassDataFromFile(String fileName) { byte[] classBytes = null; try { InputStream in = getResourceAsStream(fileName); if (in == null) { return null; } ByteArrayOutputStream baos = new ByteArrayOutputStream(); ...
java
protected byte[] loadClassDataFromFile(String fileName) { byte[] classBytes = null; try { InputStream in = getResourceAsStream(fileName); if (in == null) { return null; } ByteArrayOutputStream baos = new ByteArrayOutputStream(); ...
[ "protected", "byte", "[", "]", "loadClassDataFromFile", "(", "String", "fileName", ")", "{", "byte", "[", "]", "classBytes", "=", "null", ";", "try", "{", "InputStream", "in", "=", "getResourceAsStream", "(", "fileName", ")", ";", "if", "(", "in", "==", ...
Load JSP class data from file.
[ "Load", "JSP", "class", "data", "from", "file", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/com/ibm/ws/jsp/webcontainerext/JSPExtensionClassLoader.java#L209-L228
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiMessageImpl.java
JsApiMessageImpl.typeCheck
private final Object typeCheck(Object value, int type) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.debug(this, tc, "typecheck: value = " + value + ", " + value.getClass() + " , type=" + type); switch (type) { /* No checking, just return the value */ ...
java
private final Object typeCheck(Object value, int type) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.debug(this, tc, "typecheck: value = " + value + ", " + value.getClass() + " , type=" + type); switch (type) { /* No checking, just return the value */ ...
[ "private", "final", "Object", "typeCheck", "(", "Object", "value", ",", "int", "type", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isDebugEnabled", "(", ")", ")", "SibTr", ".", "debug", "(", "this", ",",...
Check the type of the value obtained from the message. The value is returned as is if it is of the correct type, otherwise null is returned. @param value The Object value retrieved from the message @param type The expected SelectorType of the value. @return Object Either the original Object value, or null if the typ...
[ "Check", "the", "type", "of", "the", "value", "obtained", "from", "the", "message", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiMessageImpl.java#L723-L746
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiMessageImpl.java
JsApiMessageImpl.restoreMapObject
final Serializable restoreMapObject(byte[] mapItemArray) throws IOException, ClassNotFoundException { Serializable item = null;; /* If it is a real byte array, we need to return a safe copy with the */ /* header bytes removed. */ if ((mapItemArray[0] == HEADER_BYTE_0) && (mapItemArray[...
java
final Serializable restoreMapObject(byte[] mapItemArray) throws IOException, ClassNotFoundException { Serializable item = null;; /* If it is a real byte array, we need to return a safe copy with the */ /* header bytes removed. */ if ((mapItemArray[0] == HEADER_BYTE_0) && (mapItemArray[...
[ "final", "Serializable", "restoreMapObject", "(", "byte", "[", "]", "mapItemArray", ")", "throws", "IOException", ",", "ClassNotFoundException", "{", "Serializable", "item", "=", "null", ";", ";", "/* If it is a real byte array, we need to return a safe copy with the */", "...
Restore an item retrieved from a Property or SystemContext map as a byte array into whatever it originally was. For a Serialized property, the deserialized object is returned. For any other byte array, a copy of the byte array is returned. <p> The method has package level visibility as it is used by JsSdoMessageImpl. ...
[ "Restore", "an", "item", "retrieved", "from", "a", "Property", "or", "SystemContext", "map", "as", "a", "byte", "array", "into", "whatever", "it", "originally", "was", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiMessageImpl.java#L1697-L1758
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiMessageImpl.java
JsApiMessageImpl.setTransportVersion
final void setTransportVersion(Object value) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setTransportVersion", value); getHdr2().setField(JsHdr2Access.TRANSPORTVERSION_DATA, value); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEn...
java
final void setTransportVersion(Object value) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "setTransportVersion", value); getHdr2().setField(JsHdr2Access.TRANSPORTVERSION_DATA, value); if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEn...
[ "final", "void", "setTransportVersion", "(", "Object", "value", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"setTranspo...
Set the transportVersion field in the message header to the given value. This method is package visibility as it is also used by JsJmsMessageImpl @param value The value for the field, which must be a String.
[ "Set", "the", "transportVersion", "field", "in", "the", "message", "header", "to", "the", "given", "value", ".", "This", "method", "is", "package", "visibility", "as", "it", "is", "also", "used", "by", "JsJmsMessageImpl" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiMessageImpl.java#L1813-L1819
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiMessageImpl.java
JsApiMessageImpl.clearTransportVersion
final void clearTransportVersion() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "clearTransportVersion"); getHdr2().setChoiceField(JsHdr2Access.TRANSPORTVERSION, JsHdr2Access.IS_TRANSPORTVERSION_EMPTY); if (TraceComponent.isAnyTracingEnable...
java
final void clearTransportVersion() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "clearTransportVersion"); getHdr2().setChoiceField(JsHdr2Access.TRANSPORTVERSION, JsHdr2Access.IS_TRANSPORTVERSION_EMPTY); if (TraceComponent.isAnyTracingEnable...
[ "final", "void", "clearTransportVersion", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"clearTransportVersion\"", ")"...
Clear the transportVersion field in the message header. This method is package visibility as it is also used by JsJmsMessageImpl
[ "Clear", "the", "transportVersion", "field", "in", "the", "message", "header", ".", "This", "method", "is", "package", "visibility", "as", "it", "is", "also", "used", "by", "JsJmsMessageImpl" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/JsApiMessageImpl.java#L1825-L1831
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jsp/src/com/ibm/wsspi/jsp/resource/JspClassFactory.java
JspClassFactory.getInstanceOf
public Object getInstanceOf(String key){ try { ClassLoader loader = Thread.currentThread().getContextClassLoader(); return Class.forName((String)classesMap.get(key),true,loader).newInstance(); } catch (IllegalAccessException e) { logger.logp(Level.SEVERE,"JspClassFactory","getInstanceOf","jsp.error...
java
public Object getInstanceOf(String key){ try { ClassLoader loader = Thread.currentThread().getContextClassLoader(); return Class.forName((String)classesMap.get(key),true,loader).newInstance(); } catch (IllegalAccessException e) { logger.logp(Level.SEVERE,"JspClassFactory","getInstanceOf","jsp.error...
[ "public", "Object", "getInstanceOf", "(", "String", "key", ")", "{", "try", "{", "ClassLoader", "loader", "=", "Thread", ".", "currentThread", "(", ")", ".", "getContextClassLoader", "(", ")", ";", "return", "Class", ".", "forName", "(", "(", "String", ")"...
Creates an instance of the type of class specified by the key arg, dependent on the value stored in the classesMap. @param key @return an object of the type corresponding to the key.
[ "Creates", "an", "instance", "of", "the", "type", "of", "class", "specified", "by", "the", "key", "arg", "dependent", "on", "the", "value", "stored", "in", "the", "classesMap", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/com/ibm/wsspi/jsp/resource/JspClassFactory.java#L51-L66
train
OpenLiberty/open-liberty
dev/com.ibm.ws.kernel.feature.core/src/com/ibm/ws/kernel/feature/internal/subsystem/FeatureDefinitionUtils.java
FeatureDefinitionUtils.loadAttributes
static ImmutableAttributes loadAttributes(String repoType, File featureFile, ProvisioningDetails details) throws IOException { // This will throw exceptions if required attributes mismatch or are missing details.ensureValid(); // retrieve the symbolic name and feature manifest version ...
java
static ImmutableAttributes loadAttributes(String repoType, File featureFile, ProvisioningDetails details) throws IOException { // This will throw exceptions if required attributes mismatch or are missing details.ensureValid(); // retrieve the symbolic name and feature manifest version ...
[ "static", "ImmutableAttributes", "loadAttributes", "(", "String", "repoType", ",", "File", "featureFile", ",", "ProvisioningDetails", "details", ")", "throws", "IOException", "{", "// This will throw exceptions if required attributes mismatch or are missing", "details", ".", "e...
Create the ImmutableAttributes based on the contents read from a subsystem manifest. @param details ManifestDetails containing manifest parser and accessor methods for retrieving information from the manifest. @return new ImmutableAttributes
[ "Create", "the", "ImmutableAttributes", "based", "on", "the", "contents", "read", "from", "a", "subsystem", "manifest", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.feature.core/src/com/ibm/ws/kernel/feature/internal/subsystem/FeatureDefinitionUtils.java#L261-L318
train
OpenLiberty/open-liberty
dev/com.ibm.ws.kernel.feature.core/src/com/ibm/ws/kernel/feature/internal/subsystem/FeatureDefinitionUtils.java
FeatureDefinitionUtils.loadAttributes
static ImmutableAttributes loadAttributes(String line, ImmutableAttributes cachedAttributes) { // Builder pattern for Immutable attributes // This parses a cache line that looks like this: // repoType|symbolicName=Lots;of;attribtues int ind...
java
static ImmutableAttributes loadAttributes(String line, ImmutableAttributes cachedAttributes) { // Builder pattern for Immutable attributes // This parses a cache line that looks like this: // repoType|symbolicName=Lots;of;attribtues int ind...
[ "static", "ImmutableAttributes", "loadAttributes", "(", "String", "line", ",", "ImmutableAttributes", "cachedAttributes", ")", "{", "// Builder pattern for Immutable attributes", "// This parses a cache line that looks like this: ", "// repoType|symbolicName=Lots;of;attribtues", "int", ...
Create the ImmutableAttributes based on an line in a cache file. There is no validation or warnings in this load path, as it is assumed the definition would not have been added to the cache if it were invalid. @param line Line containing feature information from the cache file @param cachedEntry the previous attribute...
[ "Create", "the", "ImmutableAttributes", "based", "on", "an", "line", "in", "a", "cache", "file", ".", "There", "is", "no", "validation", "or", "warnings", "in", "this", "load", "path", "as", "it", "is", "assumed", "the", "definition", "would", "not", "have...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.kernel.feature.core/src/com/ibm/ws/kernel/feature/internal/subsystem/FeatureDefinitionUtils.java#L332-L408
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/cache/links/ItemLink.java
ItemLink.commitDecrementReferenceCount
public final synchronized void commitDecrementReferenceCount(PersistentTransaction transaction) throws SevereMessageStoreException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "commitDecrementReferenceCount"); if (_referenceCount < 1) { ...
java
public final synchronized void commitDecrementReferenceCount(PersistentTransaction transaction) throws SevereMessageStoreException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "commitDecrementReferenceCount"); if (_referenceCount < 1) { ...
[ "public", "final", "synchronized", "void", "commitDecrementReferenceCount", "(", "PersistentTransaction", "transaction", ")", "throws", "SevereMessageStoreException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled"...
This method is called when committing the removal of a reference. It should only be called by the message store code. @param transaction The transaction @throws SevereMessageStoreException
[ "This", "method", "is", "called", "when", "committing", "the", "removal", "of", "a", "reference", ".", "It", "should", "only", "be", "called", "by", "the", "message", "store", "code", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/cache/links/ItemLink.java#L98-L122
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/cache/links/ItemLink.java
ItemLink.incrementReferenceCount
public final synchronized void incrementReferenceCount() throws SevereMessageStoreException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "incrementReferenceCount"); if (_referenceCountIsDecreasing) { if (TraceComponent.isAnyTracingEnabled...
java
public final synchronized void incrementReferenceCount() throws SevereMessageStoreException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "incrementReferenceCount"); if (_referenceCountIsDecreasing) { if (TraceComponent.isAnyTracingEnabled...
[ "public", "final", "synchronized", "void", "incrementReferenceCount", "(", ")", "throws", "SevereMessageStoreException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry"...
This method is called when a reference is being added by an active transaction and when a reference is being restored. It should only be called by the message store code. @throws SevereMessageStoreException
[ "This", "method", "is", "called", "when", "a", "reference", "is", "being", "added", "by", "an", "active", "transaction", "and", "when", "a", "reference", "is", "being", "restored", ".", "It", "should", "only", "be", "called", "by", "the", "message", "store...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/cache/links/ItemLink.java#L143-L156
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/cache/links/ItemLink.java
ItemLink.rollbackIncrementReferenceCount
public final synchronized void rollbackIncrementReferenceCount(PersistentTransaction transaction) throws SevereMessageStoreException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "rollbackIncrementReferenceCount"); if (_referenceCount < 1) { ...
java
public final synchronized void rollbackIncrementReferenceCount(PersistentTransaction transaction) throws SevereMessageStoreException { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "rollbackIncrementReferenceCount"); if (_referenceCount < 1) { ...
[ "public", "final", "synchronized", "void", "rollbackIncrementReferenceCount", "(", "PersistentTransaction", "transaction", ")", "throws", "SevereMessageStoreException", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnable...
This method is called when rolling back the addition of a reference. It should only be called by the message store code. @param transaction The transaction @throws SevereMessageStoreException
[ "This", "method", "is", "called", "when", "rolling", "back", "the", "addition", "of", "a", "reference", ".", "It", "should", "only", "be", "called", "by", "the", "message", "store", "code", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.msgstore/src/com/ibm/ws/sib/msgstore/cache/links/ItemLink.java#L179-L194
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java
KeystoreConfigurationFactory.performFileBasedAction
@Override public void performFileBasedAction(Collection<File> modifiedFiles) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Tr.entry(tc, "performFileBasedAction", new Object[] { modifiedFiles }); try { com.ibm.ws.ssl.config.KeyStoreManager.getInstance().c...
java
@Override public void performFileBasedAction(Collection<File> modifiedFiles) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Tr.entry(tc, "performFileBasedAction", new Object[] { modifiedFiles }); try { com.ibm.ws.ssl.config.KeyStoreManager.getInstance().c...
[ "@", "Override", "public", "void", "performFileBasedAction", "(", "Collection", "<", "File", ">", "modifiedFiles", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ".", "entr...
The specified files have been modified and we need to clear the SSLContext caches and keystore caches. This will cause the new keystore file to get loaded on the next use of the ssl context. If the keystore associated with the SSLContext that the process is using then the process SSLContext needs to be reloaded.
[ "The", "specified", "files", "have", "been", "modified", "and", "we", "need", "to", "clear", "the", "SSLContext", "caches", "and", "keystore", "caches", ".", "This", "will", "cause", "the", "new", "keystore", "file", "to", "get", "loaded", "on", "the", "ne...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java#L187-L204
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java
KeystoreConfigurationFactory.unsetFileMonitorRegistration
protected void unsetFileMonitorRegistration() { if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) { Tr.event(this, tc, "unsetFileMonitorRegistration"); } if (keyStoreFileMonitorRegistration != null) { keyStoreFileMonitorRegistration.unregister(); ...
java
protected void unsetFileMonitorRegistration() { if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) { Tr.event(this, tc, "unsetFileMonitorRegistration"); } if (keyStoreFileMonitorRegistration != null) { keyStoreFileMonitorRegistration.unregister(); ...
[ "protected", "void", "unsetFileMonitorRegistration", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEventEnabled", "(", ")", ")", "{", "Tr", ".", "event", "(", "this", ",", "tc", ",", "\"unsetFileMonitor...
Remove the reference to the file monitor.
[ "Remove", "the", "reference", "to", "the", "file", "monitor", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java#L251-L259
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java
KeystoreConfigurationFactory.setFileMonitorRegistration
protected void setFileMonitorRegistration(ServiceRegistration<FileMonitor> keyStoreFileMonitorRegistration) { if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) { Tr.event(this, tc, "setFileMonitorRegistration"); } this.keyStoreFileMonitorRegistration = keyStoreFileMoni...
java
protected void setFileMonitorRegistration(ServiceRegistration<FileMonitor> keyStoreFileMonitorRegistration) { if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) { Tr.event(this, tc, "setFileMonitorRegistration"); } this.keyStoreFileMonitorRegistration = keyStoreFileMoni...
[ "protected", "void", "setFileMonitorRegistration", "(", "ServiceRegistration", "<", "FileMonitor", ">", "keyStoreFileMonitorRegistration", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEventEnabled", "(", ")", ")", ...
Sets the keystore file monitor registration. @param keyStoreFileMonitorRegistration
[ "Sets", "the", "keystore", "file", "monitor", "registration", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java#L266-L271
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java
KeystoreConfigurationFactory.createFileMonitor
private void createFileMonitor(String ID, String keyStoreLocation, String trigger, long interval) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Tr.entry(tc, "createFileMonitor", new Object[] { ID, keyStoreLocation, trigger, interval }); try { keyStoreFileMoni...
java
private void createFileMonitor(String ID, String keyStoreLocation, String trigger, long interval) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Tr.entry(tc, "createFileMonitor", new Object[] { ID, keyStoreLocation, trigger, interval }); try { keyStoreFileMoni...
[ "private", "void", "createFileMonitor", "(", "String", "ID", ",", "String", "keyStoreLocation", ",", "String", "trigger", ",", "long", "interval", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "...
Handles the creation of the keystore file monitor.
[ "Handles", "the", "creation", "of", "the", "keystore", "file", "monitor", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java#L276-L290
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java
KeystoreConfigurationFactory.unsetKeyringMonitorRegistration
protected void unsetKeyringMonitorRegistration() { if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) { Tr.event(this, tc, "unsetKeyringMonitorRegistration"); } if (keyringMonitorRegistration != null) { keyringMonitorRegistration.unregister(); ke...
java
protected void unsetKeyringMonitorRegistration() { if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) { Tr.event(this, tc, "unsetKeyringMonitorRegistration"); } if (keyringMonitorRegistration != null) { keyringMonitorRegistration.unregister(); ke...
[ "protected", "void", "unsetKeyringMonitorRegistration", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEventEnabled", "(", ")", ")", "{", "Tr", ".", "event", "(", "this", ",", "tc", ",", "\"unsetKeyringM...
Remove the reference to the keyRing monitor.
[ "Remove", "the", "reference", "to", "the", "keyRing", "monitor", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java#L295-L303
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java
KeystoreConfigurationFactory.setKeyringMonitorRegistration
protected void setKeyringMonitorRegistration(ServiceRegistration<KeyringMonitor> keyringMonitorRegistration) { if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) { Tr.event(this, tc, "setKeyringMonitorRegistration"); } this.keyringMonitorRegistration = keyringMonitorReg...
java
protected void setKeyringMonitorRegistration(ServiceRegistration<KeyringMonitor> keyringMonitorRegistration) { if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) { Tr.event(this, tc, "setKeyringMonitorRegistration"); } this.keyringMonitorRegistration = keyringMonitorReg...
[ "protected", "void", "setKeyringMonitorRegistration", "(", "ServiceRegistration", "<", "KeyringMonitor", ">", "keyringMonitorRegistration", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEventEnabled", "(", ")", ")", ...
Sets the keyring monitor registration. @param keyringMonitorRegistration
[ "Sets", "the", "keyring", "monitor", "registration", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java#L310-L315
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java
KeystoreConfigurationFactory.createKeyringMonitor
private void createKeyringMonitor(String ID, String trigger, String keyStoreLocation) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Tr.entry(tc, "createKeyringMonitor", new Object[] { ID, trigger }); try { KeyringMonitor = new KeyringMonitorImpl(this); ...
java
private void createKeyringMonitor(String ID, String trigger, String keyStoreLocation) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) Tr.entry(tc, "createKeyringMonitor", new Object[] { ID, trigger }); try { KeyringMonitor = new KeyringMonitorImpl(this); ...
[ "private", "void", "createKeyringMonitor", "(", "String", "ID", ",", "String", "trigger", ",", "String", "keyStoreLocation", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "Tr", ...
Handles the creation of the keyring monitor.
[ "Handles", "the", "creation", "of", "the", "keyring", "monitor", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/internal/KeystoreConfigurationFactory.java#L320-L334
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java
Util.encodeDN
public static byte[] encodeDN(Codec codec, String distinguishedName) throws Exception { X500Principal issuer = new X500Principal(distinguishedName); X509CertSelector certSelector = new X509CertSelector(); certSelector.setIssuer(issuer); byte[] asnX501DN = certSelector.getIssuerAsBytes();...
java
public static byte[] encodeDN(Codec codec, String distinguishedName) throws Exception { X500Principal issuer = new X500Principal(distinguishedName); X509CertSelector certSelector = new X509CertSelector(); certSelector.setIssuer(issuer); byte[] asnX501DN = certSelector.getIssuerAsBytes();...
[ "public", "static", "byte", "[", "]", "encodeDN", "(", "Codec", "codec", ",", "String", "distinguishedName", ")", "throws", "Exception", "{", "X500Principal", "issuer", "=", "new", "X500Principal", "(", "distinguishedName", ")", ";", "X509CertSelector", "certSelec...
Encode a distinguished name into a codec encoded ASN.1 X501 encoded Distinguished Name. @param codec The codec to do the encoding of the Any. @param distinguishedName The distinguished name. @return the codec encoded ASN.1 X501 encoded Distinguished Name. @throws Exception
[ "Encode", "a", "distinguished", "name", "into", "a", "codec", "encoded", "ASN", ".", "1", "X501", "encoded", "Distinguished", "Name", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java#L692-L701
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java
Util.decodeDN
public static String decodeDN(Codec codec, byte[] encodedDN) throws SASException { String dn = null; try { Any any = codec.decode_value(encodedDN, X501DistinguishedNameHelper.type()); byte[] asnX501DN = X501DistinguishedNameHelper.extract(any); X500Principal x500Pri...
java
public static String decodeDN(Codec codec, byte[] encodedDN) throws SASException { String dn = null; try { Any any = codec.decode_value(encodedDN, X501DistinguishedNameHelper.type()); byte[] asnX501DN = X501DistinguishedNameHelper.extract(any); X500Principal x500Pri...
[ "public", "static", "String", "decodeDN", "(", "Codec", "codec", ",", "byte", "[", "]", "encodedDN", ")", "throws", "SASException", "{", "String", "dn", "=", "null", ";", "try", "{", "Any", "any", "=", "codec", ".", "decode_value", "(", "encodedDN", ",",...
Decode a distinguished name from an ASN.1 X501 encoded Distinguished Name @param codec The codec to do the decoding of the Any. @param encodedDN The codec encoded byte[] containing the ASN.1 X501 encoded Distinguished Name. @return the distinguished name. @throws SASException
[ "Decode", "a", "distinguished", "name", "from", "an", "ASN", ".", "1", "X501", "encoded", "Distinguished", "Name" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java#L711-L726
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java
Util.upperCaseIndexString
private static String upperCaseIndexString(String iiopName) { StringBuilder StringBuilder = new StringBuilder(); for (int i = 0; i < iiopName.length(); i++) { char c = iiopName.charAt(i); if (Character.isUpperCase(c)) { StringBuilder.append('_').append(i); ...
java
private static String upperCaseIndexString(String iiopName) { StringBuilder StringBuilder = new StringBuilder(); for (int i = 0; i < iiopName.length(); i++) { char c = iiopName.charAt(i); if (Character.isUpperCase(c)) { StringBuilder.append('_').append(i); ...
[ "private", "static", "String", "upperCaseIndexString", "(", "String", "iiopName", ")", "{", "StringBuilder", "StringBuilder", "=", "new", "StringBuilder", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "iiopName", ".", "length", "(", ")", ...
Return the a string containing an underscore '_' index of each uppercase character in the iiop name. This is used for distinction of names that only differ by case, since corba does not support case sensitive names.
[ "Return", "the", "a", "string", "containing", "an", "underscore", "_", "index", "of", "each", "uppercase", "character", "in", "the", "iiop", "name", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java#L1235-L1244
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java
Util.replace
private static String replace(String source, char oldChar, String newString) { StringBuilder StringBuilder = new StringBuilder(source.length()); for (int i = 0; i < source.length(); i++) { char c = source.charAt(i); if (c == oldChar) { StringBuilder.append(newStri...
java
private static String replace(String source, char oldChar, String newString) { StringBuilder StringBuilder = new StringBuilder(source.length()); for (int i = 0; i < source.length(); i++) { char c = source.charAt(i); if (c == oldChar) { StringBuilder.append(newStri...
[ "private", "static", "String", "replace", "(", "String", "source", ",", "char", "oldChar", ",", "String", "newString", ")", "{", "StringBuilder", "StringBuilder", "=", "new", "StringBuilder", "(", "source", ".", "length", "(", ")", ")", ";", "for", "(", "i...
Replaces any occurnace of the specified "oldChar" with the nes string. This is used to replace occurances if '$' in corba names since '$' is a special character
[ "Replaces", "any", "occurnace", "of", "the", "specified", "oldChar", "with", "the", "nes", "string", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java#L1251-L1262
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java
Util.buildOverloadParameterString
private static String buildOverloadParameterString(Class<?> parameterType) { String name = "_"; int arrayDimensions = 0; while (parameterType.isArray()) { arrayDimensions++; parameterType = parameterType.getComponentType(); } // arrays start with org_omg...
java
private static String buildOverloadParameterString(Class<?> parameterType) { String name = "_"; int arrayDimensions = 0; while (parameterType.isArray()) { arrayDimensions++; parameterType = parameterType.getComponentType(); } // arrays start with org_omg...
[ "private", "static", "String", "buildOverloadParameterString", "(", "Class", "<", "?", ">", "parameterType", ")", "{", "String", "name", "=", "\"_\"", ";", "int", "arrayDimensions", "=", "0", ";", "while", "(", "parameterType", ".", "isArray", "(", ")", ")",...
Returns a single parameter type encoded using the Java to IDL rules.
[ "Returns", "a", "single", "parameter", "type", "encoded", "using", "the", "Java", "to", "IDL", "rules", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java#L1289-L1330
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java
Util.buildClassName
private static String buildClassName(Class<?> type) { if (type.isArray()) { throw new IllegalArgumentException("type is an array: " + type); } // get the classname String typeName = type.getName(); int endIndex = typeName.lastIndexOf('.'); if (endIndex < 0) {...
java
private static String buildClassName(Class<?> type) { if (type.isArray()) { throw new IllegalArgumentException("type is an array: " + type); } // get the classname String typeName = type.getName(); int endIndex = typeName.lastIndexOf('.'); if (endIndex < 0) {...
[ "private", "static", "String", "buildClassName", "(", "Class", "<", "?", ">", "type", ")", "{", "if", "(", "type", ".", "isArray", "(", ")", ")", "{", "throw", "new", "IllegalArgumentException", "(", "\"type is an array: \"", "+", "type", ")", ";", "}", ...
Returns a string contianing an encoded class name.
[ "Returns", "a", "string", "contianing", "an", "encoded", "class", "name", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.csiv2.common/src/com/ibm/ws/transport/iiop/security/util/Util.java#L1335-L1361
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jpa.container.ormdiagnostics/src/com/ibm/ws/jpa/diagnostics/puparser/jaxb/puxml10/Persistence.java
Persistence.getPersistenceUnit
public List<Persistence.PersistenceUnit> getPersistenceUnit() { if (persistenceUnit == null) { persistenceUnit = new ArrayList<Persistence.PersistenceUnit>(); } return this.persistenceUnit; }
java
public List<Persistence.PersistenceUnit> getPersistenceUnit() { if (persistenceUnit == null) { persistenceUnit = new ArrayList<Persistence.PersistenceUnit>(); } return this.persistenceUnit; }
[ "public", "List", "<", "Persistence", ".", "PersistenceUnit", ">", "getPersistenceUnit", "(", ")", "{", "if", "(", "persistenceUnit", "==", "null", ")", "{", "persistenceUnit", "=", "new", "ArrayList", "<", "Persistence", ".", "PersistenceUnit", ">", "(", ")",...
Gets the value of the persistenceUnit property. <p> This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a <CODE>set</CODE> method for the persistenceUnit property. <p> For e...
[ "Gets", "the", "value", "of", "the", "persistenceUnit", "property", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jpa.container.ormdiagnostics/src/com/ibm/ws/jpa/diagnostics/puparser/jaxb/puxml10/Persistence.java#L137-L142
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/PersistenceType.java
PersistenceType.getPersistenceType
public final static PersistenceType getPersistenceType(Byte aValue) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.debug(tc,"Value = " + aValue); return set[aValue.intValue()]; }
java
public final static PersistenceType getPersistenceType(Byte aValue) { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) SibTr.debug(tc,"Value = " + aValue); return set[aValue.intValue()]; }
[ "public", "final", "static", "PersistenceType", "getPersistenceType", "(", "Byte", "aValue", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isDebugEnabled", "(", ")", ")", "SibTr", ".", "debug", "(", "tc", ",",...
Returns the corresponding PersistenceType for a given Byte. This method should NOT be called by any code outside the MFP component. It is only public so that it can be accessed by sub-packages. @param aValue The Byte for which an PersistenceType is required. @return The corresponding PersistenceType
[ "Returns", "the", "corresponding", "PersistenceType", "for", "a", "given", "Byte", ".", "This", "method", "should", "NOT", "be", "called", "by", "any", "code", "outside", "the", "MFP", "component", ".", "It", "is", "only", "public", "so", "that", "it", "ca...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/PersistenceType.java#L59-L62
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java
SibDiagnosticModule.register
protected void register(String[] specificPackageList) { if (TraceComponent.isAnyTracingEnabled() && _tc.isEntryEnabled()) SibTr.entry(_tc, "register", new Object[] { this, specificPackageList }); synchronized(SibDiagnosticModule.class) { if (!_registeredMasterDiagnosticModule) { SibDi...
java
protected void register(String[] specificPackageList) { if (TraceComponent.isAnyTracingEnabled() && _tc.isEntryEnabled()) SibTr.entry(_tc, "register", new Object[] { this, specificPackageList }); synchronized(SibDiagnosticModule.class) { if (!_registeredMasterDiagnosticModule) { SibDi...
[ "protected", "void", "register", "(", "String", "[", "]", "specificPackageList", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "_tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "_tc", ",", "\"regi...
Register a subclass of this diagnostic module with FFDC @param specificPackageList The package list for which it is being registered
[ "Register", "a", "subclass", "of", "this", "diagnostic", "module", "with", "FFDC" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java#L126-L143
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java
SibDiagnosticModule.captureDefaultInformation
protected void captureDefaultInformation(IncidentStream is, Throwable th) { is.writeLine("Platform Messaging :: Messaging engine:", SibTr.getMEName(null)); // is.writeLine("Platform Messaging :: Release name: ", BuildInfo.getBuildRelease()); // is.writeLine("Platform Messaging :: Level name: ", Buil...
java
protected void captureDefaultInformation(IncidentStream is, Throwable th) { is.writeLine("Platform Messaging :: Messaging engine:", SibTr.getMEName(null)); // is.writeLine("Platform Messaging :: Release name: ", BuildInfo.getBuildRelease()); // is.writeLine("Platform Messaging :: Level name: ", Buil...
[ "protected", "void", "captureDefaultInformation", "(", "IncidentStream", "is", ",", "Throwable", "th", ")", "{", "is", ".", "writeLine", "(", "\"Platform Messaging :: Messaging engine:\"", ",", "SibTr", ".", "getMEName", "(", "null", ")", ")", ";", "// is.writeLin...
Capture the default information about the messaging engine, exception etc. @param is The incident stream into which to place the information @param th The Throwable that caused the FFDC (may be null)
[ "Capture", "the", "default", "information", "about", "the", "messaging", "engine", "exception", "etc", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java#L165-L206
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java
SibDiagnosticModule.ffdcDumpDefault
public void ffdcDumpDefault(Throwable t, IncidentStream is, Object callerThis, Object[] objs, String sourceId) { is.writeLine("SIB FFDC dump for:", t); captureDefaultInformation(is,t); if (callerThis != null) { is.writeLine("SibDiagnosticModule :: Dump of callerThis (DiagnosticModule)", toFFDC...
java
public void ffdcDumpDefault(Throwable t, IncidentStream is, Object callerThis, Object[] objs, String sourceId) { is.writeLine("SIB FFDC dump for:", t); captureDefaultInformation(is,t); if (callerThis != null) { is.writeLine("SibDiagnosticModule :: Dump of callerThis (DiagnosticModule)", toFFDC...
[ "public", "void", "ffdcDumpDefault", "(", "Throwable", "t", ",", "IncidentStream", "is", ",", "Object", "callerThis", ",", "Object", "[", "]", "objs", ",", "String", "sourceId", ")", "{", "is", ".", "writeLine", "(", "\"SIB FFDC dump for:\"", ",", "t", ")", ...
Capture information about this problem into the incidentStream @param t The exception which triggered the FFDC capture process. @param is The IncidentStream. Data to be captured is written to this stream. @param callerThis The 'this' pointer for the object which invoked the filter. The value will be n...
[ "Capture", "information", "about", "this", "problem", "into", "the", "incidentStream" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java#L255-L277
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java
SibDiagnosticModule.toFFDCString
public final String toFFDCString(Object obj) { if (obj instanceof Map) { return toFFDCString((Map) obj); } else if (obj instanceof Collection) { return toFFDCString((Collection) obj); } else if (obj instanceof Object[]) { return toFFDCString((Obj...
java
public final String toFFDCString(Object obj) { if (obj instanceof Map) { return toFFDCString((Map) obj); } else if (obj instanceof Collection) { return toFFDCString((Collection) obj); } else if (obj instanceof Object[]) { return toFFDCString((Obj...
[ "public", "final", "String", "toFFDCString", "(", "Object", "obj", ")", "{", "if", "(", "obj", "instanceof", "Map", ")", "{", "return", "toFFDCString", "(", "(", "Map", ")", "obj", ")", ";", "}", "else", "if", "(", "obj", "instanceof", "Collection", ")...
Generates a string representation of the object for FFDC. If the object is an Object Array, Collection or Map the elements are inspected individually up to a maximum of multiple_object_count_to_ffdc @param obj Object to generate a string representation of @return The string representation of the object
[ "Generates", "a", "string", "representation", "of", "the", "object", "for", "FFDC", ".", "If", "the", "object", "is", "an", "Object", "Array", "Collection", "or", "Map", "the", "elements", "are", "inspected", "individually", "up", "to", "a", "maximum", "of",...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java#L291-L306
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java
SibDiagnosticModule.toFFDCStringSingleObject
protected String toFFDCStringSingleObject(Object obj) { if (obj == null) { return "<null>"; } else if (obj instanceof Traceable) { return ((Traceable) obj).toTraceString(); } else if (obj instanceof String) { return ((String) obj); } else if (obj instanceof by...
java
protected String toFFDCStringSingleObject(Object obj) { if (obj == null) { return "<null>"; } else if (obj instanceof Traceable) { return ((Traceable) obj).toTraceString(); } else if (obj instanceof String) { return ((String) obj); } else if (obj instanceof by...
[ "protected", "String", "toFFDCStringSingleObject", "(", "Object", "obj", ")", "{", "if", "(", "obj", "==", "null", ")", "{", "return", "\"<null>\"", ";", "}", "else", "if", "(", "obj", "instanceof", "Traceable", ")", "{", "return", "(", "(", "Traceable", ...
Generates a string representation of an object for FFDC. @param obj Object to generate a string representation of @return The string representation of the object
[ "Generates", "a", "string", "representation", "of", "an", "object", "for", "FFDC", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java#L317-L339
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java
SibDiagnosticModule.toFFDCString
public final String toFFDCString(Collection aCollection) { StringBuffer buffer = new StringBuffer(); buffer.append('{'); if (aCollection == null) { buffer.append("<null>"); } else { Iterator i = aCollection.iterator(); boolean hasNext = i.hasNext(); int ctr = 0; ...
java
public final String toFFDCString(Collection aCollection) { StringBuffer buffer = new StringBuffer(); buffer.append('{'); if (aCollection == null) { buffer.append("<null>"); } else { Iterator i = aCollection.iterator(); boolean hasNext = i.hasNext(); int ctr = 0; ...
[ "public", "final", "String", "toFFDCString", "(", "Collection", "aCollection", ")", "{", "StringBuffer", "buffer", "=", "new", "StringBuffer", "(", ")", ";", "buffer", ".", "append", "(", "'", "'", ")", ";", "if", "(", "aCollection", "==", "null", ")", "...
Generates a String representation of a Collection, calling toFFDCStringObject for the first multiple_object_count_to_ffdc elements @param aCollection @return the string representation of a Collection.
[ "Generates", "a", "String", "representation", "of", "a", "Collection", "calling", "toFFDCStringObject", "for", "the", "first", "multiple_object_count_to_ffdc", "elements" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java#L468-L498
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java
SibDiagnosticModule.toFFDCString
public final String toFFDCString(Map aMap) { StringBuffer buffer = new StringBuffer(); buffer.append('{'); if (aMap == null) { buffer.append("<null>"); } else { Iterator i = aMap.entrySet().iterator(); boolean hasNext = i.hasNext(); int ctr = 0; while (hasNext...
java
public final String toFFDCString(Map aMap) { StringBuffer buffer = new StringBuffer(); buffer.append('{'); if (aMap == null) { buffer.append("<null>"); } else { Iterator i = aMap.entrySet().iterator(); boolean hasNext = i.hasNext(); int ctr = 0; while (hasNext...
[ "public", "final", "String", "toFFDCString", "(", "Map", "aMap", ")", "{", "StringBuffer", "buffer", "=", "new", "StringBuffer", "(", ")", ";", "buffer", ".", "append", "(", "'", "'", ")", ";", "if", "(", "aMap", "==", "null", ")", "{", "buffer", "."...
Generates a String representation of a Map, calling toFFDCStringObject for the first multiple_object_count_to_ffdc elements @param aMap @return the string representation of the map.
[ "Generates", "a", "String", "representation", "of", "a", "Map", "calling", "toFFDCStringObject", "for", "the", "first", "multiple_object_count_to_ffdc", "elements" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.utils/src/com/ibm/ws/sib/utils/ffdc/SibDiagnosticModule.java#L543-L576
train
OpenLiberty/open-liberty
dev/com.ibm.ws.http.plugin.merge/src/com/ibm/ws/http/plugin/merge/internal/PluginMergeToolImpl.java
PluginMergeToolImpl.removeComments
private boolean removeComments(DocumentBuilder parser, Document doc) { try { // Check for the traversal module DOMImplementation impl = parser.getDOMImplementation(); if (!impl.hasFeature("traversal", "2.0")) { // DOM implementation does not support traversal ...
java
private boolean removeComments(DocumentBuilder parser, Document doc) { try { // Check for the traversal module DOMImplementation impl = parser.getDOMImplementation(); if (!impl.hasFeature("traversal", "2.0")) { // DOM implementation does not support traversal ...
[ "private", "boolean", "removeComments", "(", "DocumentBuilder", "parser", ",", "Document", "doc", ")", "{", "try", "{", "// Check for the traversal module", "DOMImplementation", "impl", "=", "parser", ".", "getDOMImplementation", "(", ")", ";", "if", "(", "!", "im...
Removes all comments from the document except for the Properties comment All exceptions are suppressed because this is just a nicety to improve human readability. @param parser @param doc @return
[ "Removes", "all", "comments", "from", "the", "document", "except", "for", "the", "Properties", "comment", "All", "exceptions", "are", "suppressed", "because", "this", "is", "just", "a", "nicety", "to", "improve", "human", "readability", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.http.plugin.merge/src/com/ibm/ws/http/plugin/merge/internal/PluginMergeToolImpl.java#L120-L143
train
OpenLiberty/open-liberty
dev/com.ibm.ws.http.plugin.merge/src/com/ibm/ws/http/plugin/merge/internal/PluginMergeToolImpl.java
PluginMergeToolImpl.nodeListRemoveAll
public static void nodeListRemoveAll(Element xEml, NodeList nodes) { int cnt = nodes.getLength(); for (int i = 0; i < cnt; i++) xEml.removeChild(nodes.item(0)); }
java
public static void nodeListRemoveAll(Element xEml, NodeList nodes) { int cnt = nodes.getLength(); for (int i = 0; i < cnt; i++) xEml.removeChild(nodes.item(0)); }
[ "public", "static", "void", "nodeListRemoveAll", "(", "Element", "xEml", ",", "NodeList", "nodes", ")", "{", "int", "cnt", "=", "nodes", ".", "getLength", "(", ")", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "cnt", ";", "i", "++", ")", ...
Removes all nodes contained in the NodeList from the Element. Convenience method because NodeList objects in the DOM are live. @param xEml @param nodes
[ "Removes", "all", "nodes", "contained", "in", "the", "NodeList", "from", "the", "Element", ".", "Convenience", "method", "because", "NodeList", "objects", "in", "the", "DOM", "are", "live", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.http.plugin.merge/src/com/ibm/ws/http/plugin/merge/internal/PluginMergeToolImpl.java#L432-L436
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.jms.j2ee.mbeans/src/com/ibm/ws/messaging/jms/j2ee/mbeans/internal/JMSMbeansActivator.java
JMSMbeansActivator.registerMBeanService
private ServiceRegistration<?> registerMBeanService(String jmsResourceName, BundleContext bundleContext) { Dictionary<String, String> props = new Hashtable<String, String>(); props.put(KEY_SERVICE_VENDOR, "IBM"); JmsServiceProviderMBeanImpl jmsProviderMBean = new JmsServiceProviderMBeanImpl(get...
java
private ServiceRegistration<?> registerMBeanService(String jmsResourceName, BundleContext bundleContext) { Dictionary<String, String> props = new Hashtable<String, String>(); props.put(KEY_SERVICE_VENDOR, "IBM"); JmsServiceProviderMBeanImpl jmsProviderMBean = new JmsServiceProviderMBeanImpl(get...
[ "private", "ServiceRegistration", "<", "?", ">", "registerMBeanService", "(", "String", "jmsResourceName", ",", "BundleContext", "bundleContext", ")", "{", "Dictionary", "<", "String", ",", "String", ">", "props", "=", "new", "Hashtable", "<", "String", ",", "St...
Registers MBean for JMSServiceProvider .. in future can be made generic. @param jmsResourceName @param bundleContext @return
[ "Registers", "MBean", "for", "JMSServiceProvider", "..", "in", "future", "can", "be", "made", "generic", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.j2ee.mbeans/src/com/ibm/ws/messaging/jms/j2ee/mbeans/internal/JMSMbeansActivator.java#L105-L116
train
OpenLiberty/open-liberty
dev/com.ibm.ws.org.apache.cxf.cxf.rt.rs.client.3.2/src/org/apache/cxf/jaxrs/client/ClientProxyImpl.java
ClientProxyImpl.invokeDefaultMethodUsingPrivateLookup
private static Object invokeDefaultMethodUsingPrivateLookup(Class<?> declaringClass, Object o, Method m, Object[] params) throws WrappedException, NoSuchMethodException { try { final Method privateLookup = MethodHandles .class .getDeclaredMethod("privateL...
java
private static Object invokeDefaultMethodUsingPrivateLookup(Class<?> declaringClass, Object o, Method m, Object[] params) throws WrappedException, NoSuchMethodException { try { final Method privateLookup = MethodHandles .class .getDeclaredMethod("privateL...
[ "private", "static", "Object", "invokeDefaultMethodUsingPrivateLookup", "(", "Class", "<", "?", ">", "declaringClass", ",", "Object", "o", ",", "Method", "m", ",", "Object", "[", "]", "params", ")", "throws", "WrappedException", ",", "NoSuchMethodException", "{", ...
For JDK 9+, we could use MethodHandles.privateLookupIn, which is not available in JDK 8.
[ "For", "JDK", "9", "+", "we", "could", "use", "MethodHandles", ".", "privateLookupIn", "which", "is", "not", "available", "in", "JDK", "8", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.org.apache.cxf.cxf.rt.rs.client.3.2/src/org/apache/cxf/jaxrs/client/ClientProxyImpl.java#L237-L254
train
OpenLiberty/open-liberty
dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/channel/h2internal/frames/FrameData.java
FrameData.buildFrameForWrite
@Override public WsByteBuffer buildFrameForWrite() { WsByteBuffer[] output = buildFrameArrayForWrite(); int size = 0; for (WsByteBuffer b : output) { if (b != null) { size += b.remaining(); } } WsByteBuffer singleBuffer = this.getBuffe...
java
@Override public WsByteBuffer buildFrameForWrite() { WsByteBuffer[] output = buildFrameArrayForWrite(); int size = 0; for (WsByteBuffer b : output) { if (b != null) { size += b.remaining(); } } WsByteBuffer singleBuffer = this.getBuffe...
[ "@", "Override", "public", "WsByteBuffer", "buildFrameForWrite", "(", ")", "{", "WsByteBuffer", "[", "]", "output", "=", "buildFrameArrayForWrite", "(", ")", ";", "int", "size", "=", "0", ";", "for", "(", "WsByteBuffer", "b", ":", "output", ")", "{", "if",...
The test code expects a single buffer instead of an array of buffers, as returned by buildFrameArrayForWrite
[ "The", "test", "code", "expects", "a", "single", "buffer", "instead", "of", "an", "array", "of", "buffers", "as", "returned", "by", "buildFrameArrayForWrite" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.transport.http/src/com/ibm/ws/http/channel/h2internal/frames/FrameData.java#L149-L163
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java
HomeOfHomes.create
public EJSHome create(BeanMetaData beanMetaData) throws RemoteException { J2EEName name = beanMetaData.j2eeName; HomeRecord hr = beanMetaData.homeRecord; StatelessBeanO homeBeanO = null; EJSHome result = null; try { result = (EJSHome) beanMeta...
java
public EJSHome create(BeanMetaData beanMetaData) throws RemoteException { J2EEName name = beanMetaData.j2eeName; HomeRecord hr = beanMetaData.homeRecord; StatelessBeanO homeBeanO = null; EJSHome result = null; try { result = (EJSHome) beanMeta...
[ "public", "EJSHome", "create", "(", "BeanMetaData", "beanMetaData", ")", "throws", "RemoteException", "{", "J2EEName", "name", "=", "beanMetaData", ".", "j2eeName", ";", "HomeRecord", "hr", "=", "beanMetaData", ".", "homeRecord", ";", "StatelessBeanO", "homeBeanO", ...
Create a new EJSHome instance.
[ "Create", "a", "new", "EJSHome", "instance", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java#L99-L124
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java
HomeOfHomes.addHome
public void addHome(BeanMetaData bmd) // F743-26072 throws RemoteException { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.isEntryEnabled()) Tr.entry(tc, "addHome : " + bmd.j2eeName); if (homesByName.get(bmd.j2eeName) != null) { ...
java
public void addHome(BeanMetaData bmd) // F743-26072 throws RemoteException { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.isEntryEnabled()) Tr.entry(tc, "addHome : " + bmd.j2eeName); if (homesByName.get(bmd.j2eeName) != null) { ...
[ "public", "void", "addHome", "(", "BeanMetaData", "bmd", ")", "// F743-26072", "throws", "RemoteException", "{", "final", "boolean", "isTraceOn", "=", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", ";", "if", "(", "isTraceOn", "&&", "tc", ".", "isEntryE...
LIDB859-4 d429866.2
[ "LIDB859", "-", "4", "d429866", ".", "2" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java#L134-L189
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java
HomeOfHomes.updateAppLinkData
private void updateAppLinkData(AppLinkData linkData, boolean add, J2EEName j2eeName, BeanMetaData bmd) // F743-26072 { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.isEntryEnabled()) Tr.entry(tc, "updateAppLinkData: " + j2eeName + ", add=" + add); ...
java
private void updateAppLinkData(AppLinkData linkData, boolean add, J2EEName j2eeName, BeanMetaData bmd) // F743-26072 { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.isEntryEnabled()) Tr.entry(tc, "updateAppLinkData: " + j2eeName + ", add=" + add); ...
[ "private", "void", "updateAppLinkData", "(", "AppLinkData", "linkData", ",", "boolean", "add", ",", "J2EEName", "j2eeName", ",", "BeanMetaData", "bmd", ")", "// F743-26072", "{", "final", "boolean", "isTraceOn", "=", "TraceComponent", ".", "isAnyTracingEnabled", "("...
Updates the EJB-link and auto-link data for a bean. @param linkData @param add <tt>true</tt> if data for the bean should be added, or <tt>false</tt> if data should be removed @param bmd
[ "Updates", "the", "EJB", "-", "link", "and", "auto", "-", "link", "data", "for", "a", "bean", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java#L918-L951
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java
HomeOfHomes.updateAppLinkDataTable
private static <T> void updateAppLinkDataTable(Map<String, Set<T>> table, boolean add, String key, T value, String t...
java
private static <T> void updateAppLinkDataTable(Map<String, Set<T>> table, boolean add, String key, T value, String t...
[ "private", "static", "<", "T", ">", "void", "updateAppLinkDataTable", "(", "Map", "<", "String", ",", "Set", "<", "T", ">", ">", "table", ",", "boolean", "add", ",", "String", "key", ",", "T", "value", ",", "String", "tracePrefix", ")", "// F743-26072", ...
Updates a map from name to set of values. @param table the table to update @param add <tt>true</tt> if data should be added, or <tt>false</tt> if data should be removed @param key the key to add or remove @param value the value to add
[ "Updates", "a", "map", "from", "name", "to", "set", "of", "values", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java#L979-L1022
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java
HomeOfHomes.updateAutoLink
private void updateAutoLink(AppLinkData linkData, boolean add, J2EEName j2eeName, BeanMetaData bmd) { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.isEntryEnabled()) Tr.entry(tc, "updateAutoLink"); String module = j2eeName.getModule(); ...
java
private void updateAutoLink(AppLinkData linkData, boolean add, J2EEName j2eeName, BeanMetaData bmd) { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.isEntryEnabled()) Tr.entry(tc, "updateAutoLink"); String module = j2eeName.getModule(); ...
[ "private", "void", "updateAutoLink", "(", "AppLinkData", "linkData", ",", "boolean", "add", ",", "J2EEName", "j2eeName", ",", "BeanMetaData", "bmd", ")", "{", "final", "boolean", "isTraceOn", "=", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", ";", "if"...
d429866.2
[ "d429866", ".", "2" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java#L1035-L1114
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java
HomeOfHomes.createBeanO
@Override public BeanO createBeanO(EJBThreadData threadData, ContainerTx tx, BeanId id) throws RemoteException { J2EEName homeKey = id.getJ2EEName(); // d366845.3 HomeRecord hr = homesByName.get(homeKey); // d366845.3 BeanO result = null; // d199071 if (hr !=...
java
@Override public BeanO createBeanO(EJBThreadData threadData, ContainerTx tx, BeanId id) throws RemoteException { J2EEName homeKey = id.getJ2EEName(); // d366845.3 HomeRecord hr = homesByName.get(homeKey); // d366845.3 BeanO result = null; // d199071 if (hr !=...
[ "@", "Override", "public", "BeanO", "createBeanO", "(", "EJBThreadData", "threadData", ",", "ContainerTx", "tx", ",", "BeanId", "id", ")", "throws", "RemoteException", "{", "J2EEName", "homeKey", "=", "id", ".", "getJ2EEName", "(", ")", ";", "// d366845.3", "H...
Added ContainerTx d168509
[ "Added", "ContainerTx", "d168509" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java#L1223-L1258
train
OpenLiberty/open-liberty
dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java
HomeOfHomes.getEnterpriseBeanClassName
@Override public String getEnterpriseBeanClassName(Object homeKey) { HomeRecord hr = homesByName.get(homeKey); // d366845.3 return hr.homeInternal.getEnterpriseBeanClassName(homeKey); }
java
@Override public String getEnterpriseBeanClassName(Object homeKey) { HomeRecord hr = homesByName.get(homeKey); // d366845.3 return hr.homeInternal.getEnterpriseBeanClassName(homeKey); }
[ "@", "Override", "public", "String", "getEnterpriseBeanClassName", "(", "Object", "homeKey", ")", "{", "HomeRecord", "hr", "=", "homesByName", ".", "get", "(", "homeKey", ")", ";", "// d366845.3", "return", "hr", ".", "homeInternal", ".", "getEnterpriseBeanClassNa...
Return the name of the class that implements the bean's owned by the given home.
[ "Return", "the", "name", "of", "the", "class", "that", "implements", "the", "bean", "s", "owned", "by", "the", "given", "home", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/HomeOfHomes.java#L1404-L1409
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jsp/src/org/apache/jasper/runtime/JspContextWrapper.java
JspContextWrapper.resolveVariable
public Object resolveVariable(String pName) throws ELException { ELContext ctx = this.getELContext(); return ctx.getELResolver().getValue(ctx, null, pName); }
java
public Object resolveVariable(String pName) throws ELException { ELContext ctx = this.getELContext(); return ctx.getELResolver().getValue(ctx, null, pName); }
[ "public", "Object", "resolveVariable", "(", "String", "pName", ")", "throws", "ELException", "{", "ELContext", "ctx", "=", "this", ".", "getELContext", "(", ")", ";", "return", "ctx", ".", "getELResolver", "(", ")", ".", "getValue", "(", "ctx", ",", "null"...
LIDB4147-9 Begin - modified for JSP 2.1
[ "LIDB4147", "-", "9", "Begin", "-", "modified", "for", "JSP", "2", ".", "1" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/org/apache/jasper/runtime/JspContextWrapper.java#L369-L372
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jsp/src/org/apache/jasper/runtime/JspContextWrapper.java
JspContextWrapper.copyTagToPageScope
private void copyTagToPageScope(int scope) { Iterator iter = null; switch (scope) { case VariableInfo.NESTED: if (nestedVars != null) { iter = nestedVars.iterator(); } break; case VariableInfo.AT_BEGIN: if (atBeginVars != null) { iter = atBeginVars.iterator(); } break; case Varia...
java
private void copyTagToPageScope(int scope) { Iterator iter = null; switch (scope) { case VariableInfo.NESTED: if (nestedVars != null) { iter = nestedVars.iterator(); } break; case VariableInfo.AT_BEGIN: if (atBeginVars != null) { iter = atBeginVars.iterator(); } break; case Varia...
[ "private", "void", "copyTagToPageScope", "(", "int", "scope", ")", "{", "Iterator", "iter", "=", "null", ";", "switch", "(", "scope", ")", "{", "case", "VariableInfo", ".", "NESTED", ":", "if", "(", "nestedVars", "!=", "null", ")", "{", "iter", "=", "n...
Copies the variables of the given scope from the virtual page scope of this JSP context wrapper to the page scope of the invoking JSP context. @param scope variable scope (one of NESTED, AT_BEGIN, or AT_END)
[ "Copies", "the", "variables", "of", "the", "given", "scope", "from", "the", "virtual", "page", "scope", "of", "this", "JSP", "context", "wrapper", "to", "the", "page", "scope", "of", "the", "invoking", "JSP", "context", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/org/apache/jasper/runtime/JspContextWrapper.java#L405-L436
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jsp/src/org/apache/jasper/runtime/JspContextWrapper.java
JspContextWrapper.saveNestedVariables
private void saveNestedVariables() { if (nestedVars != null) { Iterator iter = nestedVars.iterator(); while (iter.hasNext()) { String varName = (String) iter.next(); varName = findAlias(varName); Object obj = invokingJspCtxt.getAttribute(varName); if (obj != null) { originalNestedVars.put(varNa...
java
private void saveNestedVariables() { if (nestedVars != null) { Iterator iter = nestedVars.iterator(); while (iter.hasNext()) { String varName = (String) iter.next(); varName = findAlias(varName); Object obj = invokingJspCtxt.getAttribute(varName); if (obj != null) { originalNestedVars.put(varNa...
[ "private", "void", "saveNestedVariables", "(", ")", "{", "if", "(", "nestedVars", "!=", "null", ")", "{", "Iterator", "iter", "=", "nestedVars", ".", "iterator", "(", ")", ";", "while", "(", "iter", ".", "hasNext", "(", ")", ")", "{", "String", "varNam...
Saves the values of any NESTED variables that are present in the invoking JSP context, so they can later be restored.
[ "Saves", "the", "values", "of", "any", "NESTED", "variables", "that", "are", "present", "in", "the", "invoking", "JSP", "context", "so", "they", "can", "later", "be", "restored", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/org/apache/jasper/runtime/JspContextWrapper.java#L442-L454
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jsp/src/org/apache/jasper/runtime/JspContextWrapper.java
JspContextWrapper.restoreNestedVariables
private void restoreNestedVariables() { if (nestedVars != null) { Iterator iter = nestedVars.iterator(); while (iter.hasNext()) { String varName = (String) iter.next(); varName = findAlias(varName); Object obj = originalNestedVars.get(varName); if (obj != null) { invokingJspCtxt.setAttribute(va...
java
private void restoreNestedVariables() { if (nestedVars != null) { Iterator iter = nestedVars.iterator(); while (iter.hasNext()) { String varName = (String) iter.next(); varName = findAlias(varName); Object obj = originalNestedVars.get(varName); if (obj != null) { invokingJspCtxt.setAttribute(va...
[ "private", "void", "restoreNestedVariables", "(", ")", "{", "if", "(", "nestedVars", "!=", "null", ")", "{", "Iterator", "iter", "=", "nestedVars", ".", "iterator", "(", ")", ";", "while", "(", "iter", ".", "hasNext", "(", ")", ")", "{", "String", "var...
Restores the values of any NESTED variables in the invoking JSP context.
[ "Restores", "the", "values", "of", "any", "NESTED", "variables", "in", "the", "invoking", "JSP", "context", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jsp/src/org/apache/jasper/runtime/JspContextWrapper.java#L460-L474
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/gd/ARangeList.java
ARangeList.getNext
public RangeObject getNext() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getNext", Integer.valueOf(cursor)); int curr = cursor; cursor = cursor < (blockVector.size() - 1) ? cursor + 1 : cursor; if (TraceComponent.isAnyTracingEnabled() && tc.isEntry...
java
public RangeObject getNext() { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getNext", Integer.valueOf(cursor)); int curr = cursor; cursor = cursor < (blockVector.size() - 1) ? cursor + 1 : cursor; if (TraceComponent.isAnyTracingEnabled() && tc.isEntry...
[ "public", "RangeObject", "getNext", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getNext\"", ",", "Integer", "."...
Returns the next range object
[ "Returns", "the", "next", "range", "object" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/gd/ARangeList.java#L119-L131
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/gd/ARangeList.java
ARangeList.replacePrefix
public void replacePrefix(RangeObject w) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "replacePrefix", w); long lstamp = w.endstamp; // Set index to position of lstamp. int lindex; RangeObject lastro; for (lindex = 0;; lindex++) { l...
java
public void replacePrefix(RangeObject w) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "replacePrefix", w); long lstamp = w.endstamp; // Set index to position of lstamp. int lindex; RangeObject lastro; for (lindex = 0;; lindex++) { l...
[ "public", "void", "replacePrefix", "(", "RangeObject", "w", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"replacePrefix\...
return a list of RangeObjects that are removed
[ "return", "a", "list", "of", "RangeObjects", "that", "are", "removed" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/gd/ARangeList.java#L338-L384
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/gd/ARangeList.java
ARangeList.getIndex
protected final int getIndex(long stamp) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getIndex", Long.valueOf(stamp)); int first = 0; int last = blockVector.size(); int index = linearSearch(stamp, first, last - 1); if (TraceComponent.isAnyT...
java
protected final int getIndex(long stamp) { if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(this, tc, "getIndex", Long.valueOf(stamp)); int first = 0; int last = blockVector.size(); int index = linearSearch(stamp, first, last - 1); if (TraceComponent.isAnyT...
[ "protected", "final", "int", "getIndex", "(", "long", "stamp", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "this", ",", "tc", ",", "\"getIndex\...
gets the index in blockVector for the RangeObject containing stamp
[ "gets", "the", "index", "in", "blockVector", "for", "the", "RangeObject", "containing", "stamp" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/gd/ARangeList.java#L585-L599
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.jwt/src/com/ibm/ws/security/jwt/web/JwtEndpointServices.java
JwtEndpointServices.handleJwtRequest
protected void handleJwtRequest(HttpServletRequest request, HttpServletResponse response, ServletContext servletContext, JwtConfig jwtConfig, EndpointType endpointType) throws IOException { if (jwtConfig == null) { if (tc.isDebugEnabled()) { Tr.debug(tc, "No JwtConfig object provided"); } return; } ...
java
protected void handleJwtRequest(HttpServletRequest request, HttpServletResponse response, ServletContext servletContext, JwtConfig jwtConfig, EndpointType endpointType) throws IOException { if (jwtConfig == null) { if (tc.isDebugEnabled()) { Tr.debug(tc, "No JwtConfig object provided"); } return; } ...
[ "protected", "void", "handleJwtRequest", "(", "HttpServletRequest", "request", ",", "HttpServletResponse", "response", ",", "ServletContext", "servletContext", ",", "JwtConfig", "jwtConfig", ",", "EndpointType", "endpointType", ")", "throws", "IOException", "{", "if", "...
Handle the request for the respective endpoint to which the request was directed. @param request @param response @param servletContext @param jwtConfig @param endpointType @throws IOException
[ "Handle", "the", "request", "for", "the", "respective", "endpoint", "to", "which", "the", "request", "was", "directed", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.jwt/src/com/ibm/ws/security/jwt/web/JwtEndpointServices.java#L149-L191
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.jwt/src/com/ibm/ws/security/jwt/web/JwtEndpointServices.java
JwtEndpointServices.isTransportSecure
private boolean isTransportSecure(HttpServletRequest req) { String url = req.getRequestURL().toString(); if (req.getScheme().equals("https")) { return true; } String value = req.getHeader("X-Forwarded-Proto"); if (value != null && value.toLowerCase().equals("https")) { return true; } return false; ...
java
private boolean isTransportSecure(HttpServletRequest req) { String url = req.getRequestURL().toString(); if (req.getScheme().equals("https")) { return true; } String value = req.getHeader("X-Forwarded-Proto"); if (value != null && value.toLowerCase().equals("https")) { return true; } return false; ...
[ "private", "boolean", "isTransportSecure", "(", "HttpServletRequest", "req", ")", "{", "String", "url", "=", "req", ".", "getRequestURL", "(", ")", ".", "toString", "(", ")", ";", "if", "(", "req", ".", "getScheme", "(", ")", ".", "equals", "(", "\"https...
determine if transport is secure. Either the protocol must be https or we must see a forwarding header that indicates it was https upstream of a proxy. Use of a configuration property to allow plain http was rejected in review. @param req @return
[ "determine", "if", "transport", "is", "secure", ".", "Either", "the", "protocol", "must", "be", "https", "or", "we", "must", "see", "a", "forwarding", "header", "that", "indicates", "it", "was", "https", "upstream", "of", "a", "proxy", ".", "Use", "of", ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.jwt/src/com/ibm/ws/security/jwt/web/JwtEndpointServices.java#L202-L213
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.jwt/src/com/ibm/ws/security/jwt/web/JwtEndpointServices.java
JwtEndpointServices.processTokenRequest
private void processTokenRequest(HttpServletResponse response, JwtConfig jwtConfig) throws IOException { String tokenString = new TokenBuilder().createTokenString(jwtConfig); addNoCacheHeaders(response); response.setStatus(200); if (tokenString == null) { return; } try { PrintWriter pw = response.ge...
java
private void processTokenRequest(HttpServletResponse response, JwtConfig jwtConfig) throws IOException { String tokenString = new TokenBuilder().createTokenString(jwtConfig); addNoCacheHeaders(response); response.setStatus(200); if (tokenString == null) { return; } try { PrintWriter pw = response.ge...
[ "private", "void", "processTokenRequest", "(", "HttpServletResponse", "response", ",", "JwtConfig", "jwtConfig", ")", "throws", "IOException", "{", "String", "tokenString", "=", "new", "TokenBuilder", "(", ")", ".", "createTokenString", "(", "jwtConfig", ")", ";", ...
produces a JWT token based upon the jwt Configuration, and the security credentials of the authenticated user that called this method. Returns the token as JSON in the response. @param response @param jwtConfig @throws IOException
[ "produces", "a", "JWT", "token", "based", "upon", "the", "jwt", "Configuration", "and", "the", "security", "credentials", "of", "the", "authenticated", "user", "that", "called", "this", "method", ".", "Returns", "the", "token", "as", "JSON", "in", "the", "re...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.jwt/src/com/ibm/ws/security/jwt/web/JwtEndpointServices.java#L224-L244
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.jwt/src/com/ibm/ws/security/jwt/web/JwtEndpointServices.java
JwtEndpointServices.processJWKRequest
private void processJWKRequest(HttpServletResponse response, JwtConfig jwtConfig) throws IOException { /* * if (!jwtConfig.isJwkEnabled()) { String errorMsg = * Tr.formatMessage(tc, "JWK_ENDPOINT_JWK_NOT_ENABLED", new Object[] { * jwtConfig.getId() }); Tr.error(tc, errorMsg); * response.sendError(HttpSer...
java
private void processJWKRequest(HttpServletResponse response, JwtConfig jwtConfig) throws IOException { /* * if (!jwtConfig.isJwkEnabled()) { String errorMsg = * Tr.formatMessage(tc, "JWK_ENDPOINT_JWK_NOT_ENABLED", new Object[] { * jwtConfig.getId() }); Tr.error(tc, errorMsg); * response.sendError(HttpSer...
[ "private", "void", "processJWKRequest", "(", "HttpServletResponse", "response", ",", "JwtConfig", "jwtConfig", ")", "throws", "IOException", "{", "/*\n\t\t * if (!jwtConfig.isJwkEnabled()) { String errorMsg =\n\t\t * Tr.formatMessage(tc, \"JWK_ENDPOINT_JWK_NOT_ENABLED\", new Object[] {\n\t...
Obtains the JWK string that is active in the specified config and prints it in JSON format in the response. If a JWK is not found, the response will be empty. @param response @param jwtConfig @throws IOException
[ "Obtains", "the", "JWK", "string", "that", "is", "active", "in", "the", "specified", "config", "and", "prints", "it", "in", "JSON", "format", "in", "the", "response", ".", "If", "a", "JWK", "is", "not", "found", "the", "response", "will", "be", "empty", ...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.jwt/src/com/ibm/ws/security/jwt/web/JwtEndpointServices.java#L255-L293
train
OpenLiberty/open-liberty
dev/com.ibm.ws.security.jwt/src/com/ibm/ws/security/jwt/web/JwtEndpointServices.java
JwtEndpointServices.addNoCacheHeaders
protected void addNoCacheHeaders(HttpServletResponse response) { String cacheControlValue = response.getHeader(WebConstants.HEADER_CACHE_CONTROL); if (cacheControlValue != null && !cacheControlValue.isEmpty()) { cacheControlValue = cacheControlValue + ", " + WebConstants.CACHE_CONTROL_NO_STORE; } else { ca...
java
protected void addNoCacheHeaders(HttpServletResponse response) { String cacheControlValue = response.getHeader(WebConstants.HEADER_CACHE_CONTROL); if (cacheControlValue != null && !cacheControlValue.isEmpty()) { cacheControlValue = cacheControlValue + ", " + WebConstants.CACHE_CONTROL_NO_STORE; } else { ca...
[ "protected", "void", "addNoCacheHeaders", "(", "HttpServletResponse", "response", ")", "{", "String", "cacheControlValue", "=", "response", ".", "getHeader", "(", "WebConstants", ".", "HEADER_CACHE_CONTROL", ")", ";", "if", "(", "cacheControlValue", "!=", "null", "&...
Adds header values to avoid caching of the provided response. @param response
[ "Adds", "header", "values", "to", "avoid", "caching", "of", "the", "provided", "response", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.jwt/src/com/ibm/ws/security/jwt/web/JwtEndpointServices.java#L300-L311
train
OpenLiberty/open-liberty
dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java
MonitoringProxyActivator.activate
protected void activate() throws Exception { // If the ProbeProxy class is available, check it's version String runtimeVersion = getRuntimeClassVersion(); if (runtimeVersion != null && !runtimeVersion.equals(getCurrentVersion())) { // TODO: Use a compatibility check instead ...
java
protected void activate() throws Exception { // If the ProbeProxy class is available, check it's version String runtimeVersion = getRuntimeClassVersion(); if (runtimeVersion != null && !runtimeVersion.equals(getCurrentVersion())) { // TODO: Use a compatibility check instead ...
[ "protected", "void", "activate", "(", ")", "throws", "Exception", "{", "// If the ProbeProxy class is available, check it's version", "String", "runtimeVersion", "=", "getRuntimeClassVersion", "(", ")", ";", "if", "(", "runtimeVersion", "!=", "null", "&&", "!", "runtime...
Activate this declarative services component. Bundles that are currently active will be examined for monitoring metadata and registered as appropriate. @throws Exception if an error occurs during proxy setup
[ "Activate", "this", "declarative", "services", "component", ".", "Bundles", "that", "are", "currently", "active", "will", "be", "examined", "for", "monitoring", "metadata", "and", "registered", "as", "appropriate", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java#L135-L155
train
OpenLiberty/open-liberty
dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java
MonitoringProxyActivator.getRuntimeClassVersion
@FFDCIgnore(Exception.class) String getRuntimeClassVersion() { String runtimeVersion = null; try { Class<?> clazz = Class.forName(PROBE_PROXY_CLASS_NAME); Field version = ReflectionHelper.getDeclaredField(clazz, VERSION_FIELD_NAME); runtimeVersion = (String) versi...
java
@FFDCIgnore(Exception.class) String getRuntimeClassVersion() { String runtimeVersion = null; try { Class<?> clazz = Class.forName(PROBE_PROXY_CLASS_NAME); Field version = ReflectionHelper.getDeclaredField(clazz, VERSION_FIELD_NAME); runtimeVersion = (String) versi...
[ "@", "FFDCIgnore", "(", "Exception", ".", "class", ")", "String", "getRuntimeClassVersion", "(", ")", "{", "String", "runtimeVersion", "=", "null", ";", "try", "{", "Class", "<", "?", ">", "clazz", "=", "Class", ".", "forName", "(", "PROBE_PROXY_CLASS_NAME",...
Determine if the boot delegated proxy is already available and, if so, what its version is. @return the runtime version of the emitter proxy or null if the class is not currently available
[ "Determine", "if", "the", "boot", "delegated", "proxy", "is", "already", "available", "and", "if", "so", "what", "its", "version", "is", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java#L178-L188
train
OpenLiberty/open-liberty
dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java
MonitoringProxyActivator.getBootProxyJarIfCurrent
JarFile getBootProxyJarIfCurrent() { File dataFile = bundleContext.getDataFile("boot-proxy.jar"); if (!dataFile.exists()) { return null; } JarFile jarFile = null; try { jarFile = new JarFile(dataFile); Manifest manifest = jarFile.getManifest()...
java
JarFile getBootProxyJarIfCurrent() { File dataFile = bundleContext.getDataFile("boot-proxy.jar"); if (!dataFile.exists()) { return null; } JarFile jarFile = null; try { jarFile = new JarFile(dataFile); Manifest manifest = jarFile.getManifest()...
[ "JarFile", "getBootProxyJarIfCurrent", "(", ")", "{", "File", "dataFile", "=", "bundleContext", ".", "getDataFile", "(", "\"boot-proxy.jar\"", ")", ";", "if", "(", "!", "dataFile", ".", "exists", "(", ")", ")", "{", "return", "null", ";", "}", "JarFile", "...
Get the boot proxy jar from the current data area if the code matches the current bundle version. @return the proxy jar iff the proxy jar exits and matches this bundle's version
[ "Get", "the", "boot", "proxy", "jar", "from", "the", "current", "data", "area", "if", "the", "code", "matches", "the", "current", "bundle", "version", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java#L197-L217
train
OpenLiberty/open-liberty
dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java
MonitoringProxyActivator.createBootProxyJar
JarFile createBootProxyJar() throws IOException { File dataFile = bundleContext.getDataFile("boot-proxy.jar"); // Create the file if it doesn't already exist if (!dataFile.exists()) { dataFile.createNewFile(); } // Generate a manifest Manifest manifest = cre...
java
JarFile createBootProxyJar() throws IOException { File dataFile = bundleContext.getDataFile("boot-proxy.jar"); // Create the file if it doesn't already exist if (!dataFile.exists()) { dataFile.createNewFile(); } // Generate a manifest Manifest manifest = cre...
[ "JarFile", "createBootProxyJar", "(", ")", "throws", "IOException", "{", "File", "dataFile", "=", "bundleContext", ".", "getDataFile", "(", "\"boot-proxy.jar\"", ")", ";", "// Create the file if it doesn't already exist", "if", "(", "!", "dataFile", ".", "exists", "("...
Create a jar file that contains the proxy code that will live in the boot delegation package. @return the jar file containing the proxy code to append to the boot class path @throws IOException if a file I/O error occurs
[ "Create", "a", "jar", "file", "that", "contains", "the", "proxy", "code", "that", "will", "live", "in", "the", "boot", "delegation", "package", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java#L228-L261
train
OpenLiberty/open-liberty
dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java
MonitoringProxyActivator.createDirectoryEntries
public void createDirectoryEntries(JarOutputStream jarStream, String packageName) throws IOException { StringBuilder entryName = new StringBuilder(packageName.length()); for (String str : packageName.split("\\.")) { entryName.append(str).append("/"); JarEntry jarEntry = new JarEn...
java
public void createDirectoryEntries(JarOutputStream jarStream, String packageName) throws IOException { StringBuilder entryName = new StringBuilder(packageName.length()); for (String str : packageName.split("\\.")) { entryName.append(str).append("/"); JarEntry jarEntry = new JarEn...
[ "public", "void", "createDirectoryEntries", "(", "JarOutputStream", "jarStream", ",", "String", "packageName", ")", "throws", "IOException", "{", "StringBuilder", "entryName", "=", "new", "StringBuilder", "(", "packageName", ".", "length", "(", ")", ")", ";", "for...
Create the jar directory entries corresponding to the specified package name. @param jarStream the target jar's output stream @param packageName the target package name @throws IOException if an IO exception raised while creating the entries
[ "Create", "the", "jar", "directory", "entries", "corresponding", "to", "the", "specified", "package", "name", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java#L272-L279
train
OpenLiberty/open-liberty
dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java
MonitoringProxyActivator.writeRemappedClass
private void writeRemappedClass(URL classUrl, JarOutputStream jarStream, String targetPackage) throws IOException { InputStream inputStream = classUrl.openStream(); String sourceInternalName = getClassInternalName(classUrl); String targetInternalName = getTargetInternalName(sourceInternalName, t...
java
private void writeRemappedClass(URL classUrl, JarOutputStream jarStream, String targetPackage) throws IOException { InputStream inputStream = classUrl.openStream(); String sourceInternalName = getClassInternalName(classUrl); String targetInternalName = getTargetInternalName(sourceInternalName, t...
[ "private", "void", "writeRemappedClass", "(", "URL", "classUrl", ",", "JarOutputStream", "jarStream", ",", "String", "targetPackage", ")", "throws", "IOException", "{", "InputStream", "inputStream", "=", "classUrl", ".", "openStream", "(", ")", ";", "String", "sou...
Transform the proxy template class that's in this package into a class that's in a package on the framework boot delegation package list. @return the byte array containing the updated class @throws IOException if an IO exception raised while processing the class
[ "Transform", "the", "proxy", "template", "class", "that", "s", "in", "this", "package", "into", "a", "class", "that", "s", "in", "a", "package", "on", "the", "framework", "boot", "delegation", "package", "list", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java#L289-L304
train
OpenLiberty/open-liberty
dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java
MonitoringProxyActivator.getTargetInternalName
String getTargetInternalName(String sourceInternalName, String targetPackage) { StringBuilder targetInternalName = new StringBuilder(); targetInternalName.append(targetPackage.replaceAll("\\.", "/")); int lastSlashIndex = sourceInternalName.lastIndexOf('/'); targetInternalName.append(so...
java
String getTargetInternalName(String sourceInternalName, String targetPackage) { StringBuilder targetInternalName = new StringBuilder(); targetInternalName.append(targetPackage.replaceAll("\\.", "/")); int lastSlashIndex = sourceInternalName.lastIndexOf('/'); targetInternalName.append(so...
[ "String", "getTargetInternalName", "(", "String", "sourceInternalName", ",", "String", "targetPackage", ")", "{", "StringBuilder", "targetInternalName", "=", "new", "StringBuilder", "(", ")", ";", "targetInternalName", ".", "append", "(", "targetPackage", ".", "replac...
Get the class internal name that should be used where moving the internal class across packages. @param sourceInternalName the internal name of the template class @param targetPackage the package to move the class to @return the target class name
[ "Get", "the", "class", "internal", "name", "that", "should", "be", "used", "where", "moving", "the", "internal", "class", "across", "packages", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java#L335-L343
train
OpenLiberty/open-liberty
dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java
MonitoringProxyActivator.activateProbeProxyTarget
void activateProbeProxyTarget() throws Exception { Method method = ReflectionHelper.getDeclaredMethod( probeManagerImpl.getClass(), ProbeMethodAdapter.FIRE_PROBE_METHOD_NAME, ...
java
void activateProbeProxyTarget() throws Exception { Method method = ReflectionHelper.getDeclaredMethod( probeManagerImpl.getClass(), ProbeMethodAdapter.FIRE_PROBE_METHOD_NAME, ...
[ "void", "activateProbeProxyTarget", "(", ")", "throws", "Exception", "{", "Method", "method", "=", "ReflectionHelper", ".", "getDeclaredMethod", "(", "probeManagerImpl", ".", "getClass", "(", ")", ",", "ProbeMethodAdapter", ".", "FIRE_PROBE_METHOD_NAME", ",", "long", ...
Hook up the monitoring boot proxy delegate. @throws Exception the method invocation exception
[ "Hook", "up", "the", "monitoring", "boot", "proxy", "delegate", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.monitor/src/com/ibm/ws/monitor/internal/MonitoringProxyActivator.java#L394-L404
train
OpenLiberty/open-liberty
dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/osgi/webapp/WebAppConfiguration.java
WebAppConfiguration.setWebApp
@Override public void setWebApp(com.ibm.ws.webcontainer.webapp.WebApp webApp) { super.setWebApp((WebApp)webApp); }
java
@Override public void setWebApp(com.ibm.ws.webcontainer.webapp.WebApp webApp) { super.setWebApp((WebApp)webApp); }
[ "@", "Override", "public", "void", "setWebApp", "(", "com", ".", "ibm", ".", "ws", ".", "webcontainer", ".", "webapp", ".", "WebApp", "webApp", ")", "{", "super", ".", "setWebApp", "(", "(", "WebApp", ")", "webApp", ")", ";", "}" ]
Override to ensure all WebApp are osgi.WebApp.
[ "Override", "to", "ensure", "all", "WebApp", "are", "osgi", ".", "WebApp", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.webcontainer/src/com/ibm/ws/webcontainer/osgi/webapp/WebAppConfiguration.java#L62-L66
train
OpenLiberty/open-liberty
dev/com.ibm.websphere.javaee.jsf.2.2/src/javax/faces/validator/_ExternalSpecifications.java
_ExternalSpecifications.isBeanValidationAvailable
public static boolean isBeanValidationAvailable() { if (beanValidationAvailable == null) { try { try { beanValidationAvailable = (Class.forName("javax.validation.Validation") != null); } catch...
java
public static boolean isBeanValidationAvailable() { if (beanValidationAvailable == null) { try { try { beanValidationAvailable = (Class.forName("javax.validation.Validation") != null); } catch...
[ "public", "static", "boolean", "isBeanValidationAvailable", "(", ")", "{", "if", "(", "beanValidationAvailable", "==", "null", ")", "{", "try", "{", "try", "{", "beanValidationAvailable", "=", "(", "Class", ".", "forName", "(", "\"javax.validation.Validation\"", "...
This method determines if Bean Validation is present. Eager initialization is used for performance. This means Bean Validation binaries should not be added at runtime after this variable has been set. @return true if Bean Validation is available, false otherwise.
[ "This", "method", "determines", "if", "Bean", "Validation", "is", "present", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.javaee.jsf.2.2/src/javax/faces/validator/_ExternalSpecifications.java#L50-L90
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/NeighbourProxyListener.java
NeighbourProxyListener.handleRollback
void handleRollback(SubscriptionMessage subMessage, LocalTransaction transaction) { if (tc.isEntryEnabled()) SibTr.entry(tc, "handleRollback", new Object[] { subMessage, transaction }); try { if (transaction != null) { try { transaction.r...
java
void handleRollback(SubscriptionMessage subMessage, LocalTransaction transaction) { if (tc.isEntryEnabled()) SibTr.entry(tc, "handleRollback", new Object[] { subMessage, transaction }); try { if (transaction != null) { try { transaction.r...
[ "void", "handleRollback", "(", "SubscriptionMessage", "subMessage", ",", "LocalTransaction", "transaction", ")", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"handleRollback\"", ",", "new", "Object", "[",...
Rolls back and readds the proxy subscriptions that may have been removed. @param subMessage
[ "Rolls", "back", "and", "readds", "the", "proxy", "subscriptions", "that", "may", "have", "been", "removed", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/NeighbourProxyListener.java#L290-L378
train
OpenLiberty/open-liberty
dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/NeighbourProxyListener.java
NeighbourProxyListener.handleDeleteProxySubscription
void handleDeleteProxySubscription(SubscriptionMessage deleteMessage, Transaction transaction) throws SIResourceException { if (tc.isEntryEnabled()) SibTr.entry(tc, "handleDeleteProxySubscription", new Object[] { deleteMessage, transaction }); // Get the iterators that we require for thi...
java
void handleDeleteProxySubscription(SubscriptionMessage deleteMessage, Transaction transaction) throws SIResourceException { if (tc.isEntryEnabled()) SibTr.entry(tc, "handleDeleteProxySubscription", new Object[] { deleteMessage, transaction }); // Get the iterators that we require for thi...
[ "void", "handleDeleteProxySubscription", "(", "SubscriptionMessage", "deleteMessage", ",", "Transaction", "transaction", ")", "throws", "SIResourceException", "{", "if", "(", "tc", ".", "isEntryEnabled", "(", ")", ")", "SibTr", ".", "entry", "(", "tc", ",", "\"han...
Used to remove a proxy subscription on this Neighbour There can be more than one Subscription to be removed in this message so the list of topics needs to be iterated through. The message can also be empty indicating that this Neighbour can now be removed. @param deleteMessage This is the message containing the del...
[ "Used", "to", "remove", "a", "proxy", "subscription", "on", "this", "Neighbour" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.runtime/src/com/ibm/ws/sib/processor/proxyhandler/NeighbourProxyListener.java#L665-L690
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java
WSRdbManagedConnectionImpl.setKerberosConnection
public void setKerberosConnection() { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) Tr.debug(this, tc, "setting this mc to indicate it was gotten using kerberos"); kerberosConnection = true; }
java
public void setKerberosConnection() { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) Tr.debug(this, tc, "setting this mc to indicate it was gotten using kerberos"); kerberosConnection = true; }
[ "public", "void", "setKerberosConnection", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isDebugEnabled", "(", ")", ")", "Tr", ".", "debug", "(", "this", ",", "tc", ",", "\"setting this mc to indicate it wa...
new code RRS
[ "new", "code", "RRS" ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java#L185-L190
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java
WSRdbManagedConnectionImpl.markStale
public void markStale() { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) Tr.debug(this, tc, "mark mc stale"); _mcStale = true; }
java
public void markStale() { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) Tr.debug(this, tc, "mark mc stale"); _mcStale = true; }
[ "public", "void", "markStale", "(", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isDebugEnabled", "(", ")", ")", "Tr", ".", "debug", "(", "this", ",", "tc", ",", "\"mark mc stale\"", ")", ";", "_mcStale",...
Marks the managed connection as stale.
[ "Marks", "the", "managed", "connection", "as", "stale", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java#L210-L214
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java
WSRdbManagedConnectionImpl.addHandle
private final void addHandle(WSJdbcConnection handle) throws ResourceException { (numHandlesInUse < handlesInUse.length - 1 ? handlesInUse : resizeHandleList())[numHandlesInUse++] = handle; if (!inRequest && dsConfig.get().enableBeginEndRequest) try { inRequest = true; ...
java
private final void addHandle(WSJdbcConnection handle) throws ResourceException { (numHandlesInUse < handlesInUse.length - 1 ? handlesInUse : resizeHandleList())[numHandlesInUse++] = handle; if (!inRequest && dsConfig.get().enableBeginEndRequest) try { inRequest = true; ...
[ "private", "final", "void", "addHandle", "(", "WSJdbcConnection", "handle", ")", "throws", "ResourceException", "{", "(", "numHandlesInUse", "<", "handlesInUse", ".", "length", "-", "1", "?", "handlesInUse", ":", "resizeHandleList", "(", ")", ")", "[", "numHandl...
Add a handle to this ManagedConnection's list of handles. Signal the JDBC 4.3+ driver that a request is starting. @param handle the handle to add. @throws ResourceException if a JDBC 4.3+ driver rejects the beginRequest operation
[ "Add", "a", "handle", "to", "this", "ManagedConnection", "s", "list", "of", "handles", ".", "Signal", "the", "JDBC", "4", ".", "3", "+", "driver", "that", "a", "request", "is", "starting", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java#L547-L557
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java
WSRdbManagedConnectionImpl.connectionClosed
public void connectionClosed(javax.sql.ConnectionEvent event) { if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) Tr.event(this, tc, "connectionClosed", "Notification of connection closed received from the JDBC driver", AdapterUtil.toString(event.getSource())); // We have int...
java
public void connectionClosed(javax.sql.ConnectionEvent event) { if (TraceComponent.isAnyTracingEnabled() && tc.isEventEnabled()) Tr.event(this, tc, "connectionClosed", "Notification of connection closed received from the JDBC driver", AdapterUtil.toString(event.getSource())); // We have int...
[ "public", "void", "connectionClosed", "(", "javax", ".", "sql", ".", "ConnectionEvent", "event", ")", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isEventEnabled", "(", ")", ")", "Tr", ".", "event", "(", "this",...
Invoked by the JDBC driver when the java.sql.Connection is closed. @param event a data structure containing information about the event.
[ "Invoked", "by", "the", "JDBC", "driver", "when", "the", "java", ".", "sql", ".", "Connection", "is", "closed", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java#L577-L591
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java
WSRdbManagedConnectionImpl.destroyStatement
private void destroyStatement(Object unwantedStatement) { try { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) Tr.debug(this, tc, "Statement cache at capacity. Discarding a statement.", AdapterUtil.toString(unwanted...
java
private void destroyStatement(Object unwantedStatement) { try { if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) Tr.debug(this, tc, "Statement cache at capacity. Discarding a statement.", AdapterUtil.toString(unwanted...
[ "private", "void", "destroyStatement", "(", "Object", "unwantedStatement", ")", "{", "try", "{", "if", "(", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", "&&", "tc", ".", "isDebugEnabled", "(", ")", ")", "Tr", ".", "debug", "(", "this", ",", "tc"...
Destroy an unwanted statement. This method should close the statement. @param unwantedStatement a statement we don't want in the cache anymore.
[ "Destroy", "an", "unwanted", "statement", ".", "This", "method", "should", "close", "the", "statement", "." ]
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java#L682-L697
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java
WSRdbManagedConnectionImpl.detectMultithreadedAccess
final void detectMultithreadedAccess() { Thread currentThreadID = Thread.currentThread(); if (currentThreadID == threadID) return; if (threadID == null) threadID = currentThreadID; else { mcf.detectedMultithreadedAccess = true; java.io.S...
java
final void detectMultithreadedAccess() { Thread currentThreadID = Thread.currentThread(); if (currentThreadID == threadID) return; if (threadID == null) threadID = currentThreadID; else { mcf.detectedMultithreadedAccess = true; java.io.S...
[ "final", "void", "detectMultithreadedAccess", "(", ")", "{", "Thread", "currentThreadID", "=", "Thread", ".", "currentThread", "(", ")", ";", "if", "(", "currentThreadID", "==", "threadID", ")", "return", ";", "if", "(", "threadID", "==", "null", ")", "threa...
Detect multithreaded access. This method is called only if detection is enabled. The method ensures that the current thread id matches the saved thread id for this MC. If the MC was just taken out the pool, the thread id may not have been recorded yet. In this case, we save the current thread id. Otherwise, if the thre...
[ "Detect", "multithreaded", "access", ".", "This", "method", "is", "called", "only", "if", "detection", "is", "enabled", ".", "The", "method", "ensures", "that", "the", "current", "thread", "id", "matches", "the", "saved", "thread", "id", "for", "this", "MC",...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java#L706-L727
train
OpenLiberty/open-liberty
dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java
WSRdbManagedConnectionImpl.dissociateConnections
public void dissociateConnections() throws ResourceException { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.isEntryEnabled()) Tr.entry(this, tc, "dissociateConnections"); // The first exception to occur while dissociating connection hand...
java
public void dissociateConnections() throws ResourceException { final boolean isTraceOn = TraceComponent.isAnyTracingEnabled(); if (isTraceOn && tc.isEntryEnabled()) Tr.entry(this, tc, "dissociateConnections"); // The first exception to occur while dissociating connection hand...
[ "public", "void", "dissociateConnections", "(", ")", "throws", "ResourceException", "{", "final", "boolean", "isTraceOn", "=", "TraceComponent", ".", "isAnyTracingEnabled", "(", ")", ";", "if", "(", "isTraceOn", "&&", "tc", ".", "isEntryEnabled", "(", ")", ")", ...
Dissociate all connection handles from this ManagedConnection, transitioning the handles to an inactive state where are not associated with any ManagedConnection. Processing continues when errors occur. All errors are logged, and the first error is saved to be thrown when processing completes. @throws ResourceExceptio...
[ "Dissociate", "all", "connection", "handles", "from", "this", "ManagedConnection", "transitioning", "the", "handles", "to", "an", "inactive", "state", "where", "are", "not", "associated", "with", "any", "ManagedConnection", ".", "Processing", "continues", "when", "e...
ca725d9903e63645018f9fa8cbda25f60af83a5d
https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jdbc/src/com/ibm/ws/rsadapter/impl/WSRdbManagedConnectionImpl.java#L737-L789
train