repo stringlengths 7 58 | path stringlengths 12 218 | func_name stringlengths 3 140 | original_string stringlengths 73 34.1k | language stringclasses 1
value | code stringlengths 73 34.1k | code_tokens list | docstring stringlengths 3 16k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 105 339 | partition stringclasses 1
value |
|---|---|---|---|---|---|---|---|---|---|---|---|
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.insertByLeftShift | Object insertByLeftShift(
int ix,
Object new1)
{
Object old1 = leftMostKey();
leftShift(ix);
_nodeKey[ix] = new1;
if (midPoint() > rightMostIndex())
_nodeKey[midPoint()] = rightMostKey();
return old1;
} | java | Object insertByLeftShift(
int ix,
Object new1)
{
Object old1 = leftMostKey();
leftShift(ix);
_nodeKey[ix] = new1;
if (midPoint() > rightMostIndex())
_nodeKey[midPoint()] = rightMostKey();
return old1;
} | [
"Object",
"insertByLeftShift",
"(",
"int",
"ix",
",",
"Object",
"new1",
")",
"{",
"Object",
"old1",
"=",
"leftMostKey",
"(",
")",
";",
"leftShift",
"(",
"ix",
")",
";",
"_nodeKey",
"[",
"ix",
"]",
"=",
"new1",
";",
"if",
"(",
"midPoint",
"(",
")",
... | Insert a new key by overlaying the left-most key, shifting
other keys left and inserting the new key at the appropriate
insert point.
@param ix The insert point within the node.
@param new1 The new key to be inserted.
@return the key that used to be the left-most key in the node. | [
"Insert",
"a",
"new",
"key",
"by",
"overlaying",
"the",
"left",
"-",
"most",
"key",
"shifting",
"other",
"keys",
"left",
"and",
"inserting",
"the",
"new",
"key",
"at",
"the",
"appropriate",
"insert",
"point",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L972-L982 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.leftShift | private void leftShift(
int ix)
{
for (int j = 0; j < ix; j++)
_nodeKey[j] = _nodeKey[j+1];
} | java | private void leftShift(
int ix)
{
for (int j = 0; j < ix; j++)
_nodeKey[j] = _nodeKey[j+1];
} | [
"private",
"void",
"leftShift",
"(",
"int",
"ix",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"0",
";",
"j",
"<",
"ix",
";",
"j",
"++",
")",
"_nodeKey",
"[",
"j",
"]",
"=",
"_nodeKey",
"[",
"j",
"+",
"1",
"]",
";",
"}"
] | Open up a slot in a node by shifting the keys left.
<p>We are inserting a new key into a node that is not currently
full. There is at least one vacant slot. We open up the correct
slot for the new key by shifting all other keys left.</p> | [
"Open",
"up",
"a",
"slot",
"in",
"a",
"node",
"by",
"shifting",
"the",
"keys",
"left",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1004-L1009 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.insertByRightShift | Object insertByRightShift(
int ix,
Object new1)
{
Object old1 = null;
if (isFull())
{
old1 = rightMostKey();
rightMove(ix+1);
_nodeKey[ix+1] = new1;
}
else
{
rightShift(ix+1);
_nodeKey[ix+1] = new1;
_populat... | java | Object insertByRightShift(
int ix,
Object new1)
{
Object old1 = null;
if (isFull())
{
old1 = rightMostKey();
rightMove(ix+1);
_nodeKey[ix+1] = new1;
}
else
{
rightShift(ix+1);
_nodeKey[ix+1] = new1;
_populat... | [
"Object",
"insertByRightShift",
"(",
"int",
"ix",
",",
"Object",
"new1",
")",
"{",
"Object",
"old1",
"=",
"null",
";",
"if",
"(",
"isFull",
"(",
")",
")",
"{",
"old1",
"=",
"rightMostKey",
"(",
")",
";",
"rightMove",
"(",
"ix",
"+",
"1",
")",
";",
... | Insert a new key by shifting keys right.
<p>Insert a new key by overlaying the right-most key, shifting
other keys right and inserting the new key at the appropriate
insert point.</p>
@param ix The insert point within the node.
@param new1 The new key to be inserted.
@return the key that used to be the right-most key... | [
"Insert",
"a",
"new",
"key",
"by",
"shifting",
"keys",
"right",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1022-L1042 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.addRightMostKey | Object addRightMostKey(
Object new1)
{
Object old1 = null;
if (isFull()) /* Node is currently full */
{ /* We will overlay right-most key */
old1 = rightMostKey();
_nodeKey[rightMostIndex()] = new1;
}... | java | Object addRightMostKey(
Object new1)
{
Object old1 = null;
if (isFull()) /* Node is currently full */
{ /* We will overlay right-most key */
old1 = rightMostKey();
_nodeKey[rightMostIndex()] = new1;
}... | [
"Object",
"addRightMostKey",
"(",
"Object",
"new1",
")",
"{",
"Object",
"old1",
"=",
"null",
";",
"if",
"(",
"isFull",
"(",
")",
")",
"/* Node is currently full */",
"{",
"/* We will overlay right-most key */",
"old1",
"=",
"rightMostKey",
"(",
... | Add the right-most key to the node.
<p>Insert a new key in the right-most slot in the node.
If this causes the right-most key to be overlayed
it is returned to the caller. Otherwise null is returned to the
caller.</p>
@param new1 The new key to be inserted.
@return the key that used to be the right-most key in the n... | [
"Add",
"the",
"right",
"-",
"most",
"key",
"to",
"the",
"node",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1092-L1111 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.fillFromRight | void fillFromRight()
{
int gapWid = width() - population();
int gidx = population();
GBSNode p = rightChild();
for (int j = 0; j < gapWid; j++)
_nodeKey[j+gidx] = p._nodeKey[j];
int delta = gapWid;
if (p._population < delta)
delta = p._population;
_population += delta;
p.... | java | void fillFromRight()
{
int gapWid = width() - population();
int gidx = population();
GBSNode p = rightChild();
for (int j = 0; j < gapWid; j++)
_nodeKey[j+gidx] = p._nodeKey[j];
int delta = gapWid;
if (p._population < delta)
delta = p._population;
_population += delta;
p.... | [
"void",
"fillFromRight",
"(",
")",
"{",
"int",
"gapWid",
"=",
"width",
"(",
")",
"-",
"population",
"(",
")",
";",
"int",
"gidx",
"=",
"population",
"(",
")",
";",
"GBSNode",
"p",
"=",
"rightChild",
"(",
")",
";",
"for",
"(",
"int",
"j",
"=",
"0"... | Fill a node with new keys from the right side.
<p>A node that is not completely full has acquired a right child.
Use the left keys of the right child to fill the node as much
as possible, limited by the free space in the current node and
the population of the right child.</p> | [
"Fill",
"a",
"node",
"with",
"new",
"keys",
"from",
"the",
"right",
"side",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1179-L1193 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.rightMostChild | GBSNode rightMostChild()
{
GBSNode q = this;
GBSNode p = rightChild();
while (p != null)
{
q = p;
p = p.rightChild();
}
return q;
} | java | GBSNode rightMostChild()
{
GBSNode q = this;
GBSNode p = rightChild();
while (p != null)
{
q = p;
p = p.rightChild();
}
return q;
} | [
"GBSNode",
"rightMostChild",
"(",
")",
"{",
"GBSNode",
"q",
"=",
"this",
";",
"GBSNode",
"p",
"=",
"rightChild",
"(",
")",
";",
"while",
"(",
"p",
"!=",
"null",
")",
"{",
"q",
"=",
"p",
";",
"p",
"=",
"p",
".",
"rightChild",
"(",
")",
";",
"}",... | Find the right-most child of a node by following the paths of
all of the right-most children all the way to the bottom of
the tree. | [
"Find",
"the",
"right",
"-",
"most",
"child",
"of",
"a",
"node",
"by",
"following",
"the",
"paths",
"of",
"all",
"of",
"the",
"right",
"-",
"most",
"children",
"all",
"the",
"way",
"to",
"the",
"bottom",
"of",
"the",
"tree",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1210-L1220 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.rightShift | private void rightShift(
int ix)
{
for (int j = rightMostIndex(); j >= ix; j--)
_nodeKey[j+1] = _nodeKey[j];
} | java | private void rightShift(
int ix)
{
for (int j = rightMostIndex(); j >= ix; j--)
_nodeKey[j+1] = _nodeKey[j];
} | [
"private",
"void",
"rightShift",
"(",
"int",
"ix",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"rightMostIndex",
"(",
")",
";",
"j",
">=",
"ix",
";",
"j",
"--",
")",
"_nodeKey",
"[",
"j",
"+",
"1",
"]",
"=",
"_nodeKey",
"[",
"j",
"]",
";",
"}"
] | Open up a slot for a new key by shifting keys right to make room.
<p>We are inserting a new key into a node that is not currently
full. There is at least one vacant slot. We open up the correct
slot for the new key by shifting all other keys right.</p> | [
"Open",
"up",
"a",
"slot",
"for",
"a",
"new",
"key",
"by",
"shifting",
"keys",
"right",
"to",
"make",
"room",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1229-L1234 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.rightMove | private void rightMove(
int ix)
{
for (int j = rightMostIndex()-1; j >= ix; j--)
_nodeKey[j+1] = _nodeKey[j];
} | java | private void rightMove(
int ix)
{
for (int j = rightMostIndex()-1; j >= ix; j--)
_nodeKey[j+1] = _nodeKey[j];
} | [
"private",
"void",
"rightMove",
"(",
"int",
"ix",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"rightMostIndex",
"(",
")",
"-",
"1",
";",
"j",
">=",
"ix",
";",
"j",
"--",
")",
"_nodeKey",
"[",
"j",
"+",
"1",
"]",
"=",
"_nodeKey",
"[",
"j",
"]",
";"... | Open up a slot for a new key by shifting keys right to make room
and overlaying the right-most key.
<p>We are inserting a new key into a node that is currently full.
We open up the correct slot for the new key by shifting all other
keys right, overlaying the right-most key.</p> | [
"Open",
"up",
"a",
"slot",
"for",
"a",
"new",
"key",
"by",
"shifting",
"keys",
"right",
"to",
"make",
"room",
"and",
"overlaying",
"the",
"right",
"-",
"most",
"key",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1244-L1249 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.overlayLeftShift | void overlayLeftShift(
int ix)
{
for (int j = ix; j < rightMostIndex(); j++)
_nodeKey[j] = _nodeKey[j+1];
} | java | void overlayLeftShift(
int ix)
{
for (int j = ix; j < rightMostIndex(); j++)
_nodeKey[j] = _nodeKey[j+1];
} | [
"void",
"overlayLeftShift",
"(",
"int",
"ix",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"ix",
";",
"j",
"<",
"rightMostIndex",
"(",
")",
";",
"j",
"++",
")",
"_nodeKey",
"[",
"j",
"]",
"=",
"_nodeKey",
"[",
"j",
"+",
"1",
"]",
";",
"}"
] | Overlay a key to be deleted by moving keys left.
<p>We are removing a key from a node. We shift all of the keys
left to overlay the slot of the key to be deleted and open up the
slot occupied by the right-most key in the node.</p> | [
"Overlay",
"a",
"key",
"to",
"be",
"deleted",
"by",
"moving",
"keys",
"left",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1258-L1263 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.overlayRightShift | private void overlayRightShift(
int ix)
{
for (int j = ix; j > 0; j--)
_nodeKey[j] = _nodeKey[j-1];
} | java | private void overlayRightShift(
int ix)
{
for (int j = ix; j > 0; j--)
_nodeKey[j] = _nodeKey[j-1];
} | [
"private",
"void",
"overlayRightShift",
"(",
"int",
"ix",
")",
"{",
"for",
"(",
"int",
"j",
"=",
"ix",
";",
"j",
">",
"0",
";",
"j",
"--",
")",
"_nodeKey",
"[",
"j",
"]",
"=",
"_nodeKey",
"[",
"j",
"-",
"1",
"]",
";",
"}"
] | Overlay a key to be deleted by moving keys right.
<p>We are removing a key from a node. We shift all of the keys
right to overlay the slot of the key to be deleted and open up the
slot occupied by the left most key in the node.</p> | [
"Overlay",
"a",
"key",
"to",
"be",
"deleted",
"by",
"moving",
"keys",
"right",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1272-L1277 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.lowerPredecessor | GBSNode lowerPredecessor(
NodeStack stack)
{
GBSNode r = leftChild();
GBSNode lastr = r;
if (r != null)
stack.push(NodeStack.PROCESS_CURRENT, this);
while (r != null) /* Find right-most child of left child */
{
if (r.rightChild() != null)
stack.push... | java | GBSNode lowerPredecessor(
NodeStack stack)
{
GBSNode r = leftChild();
GBSNode lastr = r;
if (r != null)
stack.push(NodeStack.PROCESS_CURRENT, this);
while (r != null) /* Find right-most child of left child */
{
if (r.rightChild() != null)
stack.push... | [
"GBSNode",
"lowerPredecessor",
"(",
"NodeStack",
"stack",
")",
"{",
"GBSNode",
"r",
"=",
"leftChild",
"(",
")",
";",
"GBSNode",
"lastr",
"=",
"r",
";",
"if",
"(",
"r",
"!=",
"null",
")",
"stack",
".",
"push",
"(",
"NodeStack",
".",
"PROCESS_CURRENT",
"... | Find the lower predecessor of this node.
<p>The lower predecessor is the right-most child of the left child.
This is the prior node in order that is also below this node.</p>
@param stack The stack that is used to remember the traversal path.
@return The lower predecessor node. | [
"Find",
"the",
"lower",
"predecessor",
"of",
"this",
"node",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1289-L1304 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java | GBSNode.validate | public boolean validate()
{
boolean correct = true;
if (population() > 1)
{
java.util.Comparator comp = index().insertComparator();
int xcc = 0;
for (int i = 0; i < population()-1; i++)
{
xcc = comp.compare(_nodeKey[i], _nodeKey[i+1]);
if ( !(xcc < 0) )
{
... | java | public boolean validate()
{
boolean correct = true;
if (population() > 1)
{
java.util.Comparator comp = index().insertComparator();
int xcc = 0;
for (int i = 0; i < population()-1; i++)
{
xcc = comp.compare(_nodeKey[i], _nodeKey[i+1]);
if ( !(xcc < 0) )
{
... | [
"public",
"boolean",
"validate",
"(",
")",
"{",
"boolean",
"correct",
"=",
"true",
";",
"if",
"(",
"population",
"(",
")",
">",
"1",
")",
"{",
"java",
".",
"util",
".",
"Comparator",
"comp",
"=",
"index",
"(",
")",
".",
"insertComparator",
"(",
")",
... | Used by test code to make sure that all of the keys within
a node are in the correct collating sequence. | [
"Used",
"by",
"test",
"code",
"to",
"make",
"sure",
"that",
"all",
"of",
"the",
"keys",
"within",
"a",
"node",
"are",
"in",
"the",
"correct",
"collating",
"sequence",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/msgstore/gbs/GBSNode.java#L1375-L1393 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.cdi.internal/src/com/ibm/ws/cdi/internal/archive/AbstractCDIArchive.java | AbstractCDIArchive.getExtensionClasses | @Override
public Set<String> getExtensionClasses() {
Set<String> serviceClazzes = new HashSet<>();
if (getType() == ArchiveType.WEB_MODULE) {
Resource webInfClassesMetaInfServicesEntry = getResource(CDIUtils.WEB_INF_CLASSES_META_INF_SERVICES_CDI_EXTENSION);
serviceClazzes.a... | java | @Override
public Set<String> getExtensionClasses() {
Set<String> serviceClazzes = new HashSet<>();
if (getType() == ArchiveType.WEB_MODULE) {
Resource webInfClassesMetaInfServicesEntry = getResource(CDIUtils.WEB_INF_CLASSES_META_INF_SERVICES_CDI_EXTENSION);
serviceClazzes.a... | [
"@",
"Override",
"public",
"Set",
"<",
"String",
">",
"getExtensionClasses",
"(",
")",
"{",
"Set",
"<",
"String",
">",
"serviceClazzes",
"=",
"new",
"HashSet",
"<>",
"(",
")",
";",
"if",
"(",
"getType",
"(",
")",
"==",
"ArchiveType",
".",
"WEB_MODULE",
... | Get hold of the extension class names from the file of META-INF\services\javax.enterprise.inject.spi.Extension
@return a set of classes mentioned in the extension file | [
"Get",
"hold",
"of",
"the",
"extension",
"class",
"names",
"from",
"the",
"file",
"of",
"META",
"-",
"INF",
"\\",
"services",
"\\",
"javax",
".",
"enterprise",
".",
"inject",
".",
"spi",
".",
"Extension"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.cdi.internal/src/com/ibm/ws/cdi/internal/archive/AbstractCDIArchive.java#L134-L147 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.cdi.internal/src/com/ibm/ws/cdi/internal/archive/AbstractCDIArchive.java | AbstractCDIArchive.getBeanDiscoveryMode | public BeanDiscoveryMode getBeanDiscoveryMode(CDIRuntime cdiRuntime, BeansXml beansXml) {
BeanDiscoveryMode mode = BeanDiscoveryMode.ANNOTATED;
if (beansXml != null) {
mode = beansXml.getBeanDiscoveryMode();
} else if (cdiRuntime.isImplicitBeanArchivesScanningDisabled(this)) {
... | java | public BeanDiscoveryMode getBeanDiscoveryMode(CDIRuntime cdiRuntime, BeansXml beansXml) {
BeanDiscoveryMode mode = BeanDiscoveryMode.ANNOTATED;
if (beansXml != null) {
mode = beansXml.getBeanDiscoveryMode();
} else if (cdiRuntime.isImplicitBeanArchivesScanningDisabled(this)) {
... | [
"public",
"BeanDiscoveryMode",
"getBeanDiscoveryMode",
"(",
"CDIRuntime",
"cdiRuntime",
",",
"BeansXml",
"beansXml",
")",
"{",
"BeanDiscoveryMode",
"mode",
"=",
"BeanDiscoveryMode",
".",
"ANNOTATED",
";",
"if",
"(",
"beansXml",
"!=",
"null",
")",
"{",
"mode",
"=",... | Determine the bean deployment archive scanning mode
If there is a beans.xml, the bean discovery mode will be used.
If there is no beans.xml, the mode will be annotated, unless the enableImplicitBeanArchives is configured as false via the server.xml.
If there is no beans.xml and the enableImplicitBeanArchives attribute ... | [
"Determine",
"the",
"bean",
"deployment",
"archive",
"scanning",
"mode",
"If",
"there",
"is",
"a",
"beans",
".",
"xml",
"the",
"bean",
"discovery",
"mode",
"will",
"be",
"used",
".",
"If",
"there",
"is",
"no",
"beans",
".",
"xml",
"the",
"mode",
"will",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.cdi.internal/src/com/ibm/ws/cdi/internal/archive/AbstractCDIArchive.java#L183-L192 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap_fat/fat/src/com/ibm/ws/security/wim/adapter/ldap/fat/URAPIs_UserGroupSearchBases.java | URAPIs_UserGroupSearchBases.teardownClass | @AfterClass
public static void teardownClass() throws Exception {
try {
if (libertyServer != null) {
libertyServer.stopServer("CWIML4537E");
}
} finally {
if (ds != null) {
ds.shutDown(true);
}
}
libertyS... | java | @AfterClass
public static void teardownClass() throws Exception {
try {
if (libertyServer != null) {
libertyServer.stopServer("CWIML4537E");
}
} finally {
if (ds != null) {
ds.shutDown(true);
}
}
libertyS... | [
"@",
"AfterClass",
"public",
"static",
"void",
"teardownClass",
"(",
")",
"throws",
"Exception",
"{",
"try",
"{",
"if",
"(",
"libertyServer",
"!=",
"null",
")",
"{",
"libertyServer",
".",
"stopServer",
"(",
"\"CWIML4537E\"",
")",
";",
"}",
"}",
"finally",
... | Tear down the test. | [
"Tear",
"down",
"the",
"test",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap_fat/fat/src/com/ibm/ws/security/wim/adapter/ldap/fat/URAPIs_UserGroupSearchBases.java#L94-L106 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap_fat/fat/src/com/ibm/ws/security/wim/adapter/ldap/fat/URAPIs_UserGroupSearchBases.java | URAPIs_UserGroupSearchBases.setupLibertyServer | private static void setupLibertyServer() throws Exception {
/*
* Add LDAP variables to bootstrap properties file
*/
LDAPUtils.addLDAPVariables(libertyServer);
Log.info(c, "setUp", "Starting the server... (will wait for userRegistry servlet to start)");
libertyServer.cop... | java | private static void setupLibertyServer() throws Exception {
/*
* Add LDAP variables to bootstrap properties file
*/
LDAPUtils.addLDAPVariables(libertyServer);
Log.info(c, "setUp", "Starting the server... (will wait for userRegistry servlet to start)");
libertyServer.cop... | [
"private",
"static",
"void",
"setupLibertyServer",
"(",
")",
"throws",
"Exception",
"{",
"/*\n * Add LDAP variables to bootstrap properties file\n */",
"LDAPUtils",
".",
"addLDAPVariables",
"(",
"libertyServer",
")",
";",
"Log",
".",
"info",
"(",
"c",
",",... | Setup the Liberty server. This server will start with very basic configuration. The tests
will configure the server dynamically.
@throws Exception If there was an issue setting up the Liberty server. | [
"Setup",
"the",
"Liberty",
"server",
".",
"This",
"server",
"will",
"start",
"with",
"very",
"basic",
"configuration",
".",
"The",
"tests",
"will",
"configure",
"the",
"server",
"dynamically",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap_fat/fat/src/com/ibm/ws/security/wim/adapter/ldap/fat/URAPIs_UserGroupSearchBases.java#L114-L146 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap_fat/fat/src/com/ibm/ws/security/wim/adapter/ldap/fat/URAPIs_UserGroupSearchBases.java | URAPIs_UserGroupSearchBases.setupldapServer | private static void setupldapServer() throws Exception {
ds = new InMemoryLDAPServer(SUB_DN);
Entry entry = new Entry(SUB_DN);
entry.addAttribute("objectclass", "top");
entry.addAttribute("objectclass", "domain");
ds.add(entry);
/*
* Add the partition entries.
... | java | private static void setupldapServer() throws Exception {
ds = new InMemoryLDAPServer(SUB_DN);
Entry entry = new Entry(SUB_DN);
entry.addAttribute("objectclass", "top");
entry.addAttribute("objectclass", "domain");
ds.add(entry);
/*
* Add the partition entries.
... | [
"private",
"static",
"void",
"setupldapServer",
"(",
")",
"throws",
"Exception",
"{",
"ds",
"=",
"new",
"InMemoryLDAPServer",
"(",
"SUB_DN",
")",
";",
"Entry",
"entry",
"=",
"new",
"Entry",
"(",
"SUB_DN",
")",
";",
"entry",
".",
"addAttribute",
"(",
"\"obj... | Configure the embedded LDAP server.
@throws Exception If the server failed to start for some reason. | [
"Configure",
"the",
"embedded",
"LDAP",
"server",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap_fat/fat/src/com/ibm/ws/security/wim/adapter/ldap/fat/URAPIs_UserGroupSearchBases.java#L153-L216 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/bytebuffer/internal/FastSynchHashTable.java | FastSynchHashTable.syncGetValueFromBucket | private Object syncGetValueFromBucket(FastSyncHashBucket hb, int key, boolean remove) {
FastSyncHashEntry e = null;
FastSyncHashEntry last = null;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "syncGetValueFromBucket: key, remove " + key + " " + rem... | java | private Object syncGetValueFromBucket(FastSyncHashBucket hb, int key, boolean remove) {
FastSyncHashEntry e = null;
FastSyncHashEntry last = null;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "syncGetValueFromBucket: key, remove " + key + " " + rem... | [
"private",
"Object",
"syncGetValueFromBucket",
"(",
"FastSyncHashBucket",
"hb",
",",
"int",
"key",
",",
"boolean",
"remove",
")",
"{",
"FastSyncHashEntry",
"e",
"=",
"null",
";",
"FastSyncHashEntry",
"last",
"=",
"null",
";",
"if",
"(",
"TraceComponent",
".",
... | Internal get from the table which is partially synchronized at the hash
bucket level.
@param hb
a hash bucket to go to.
@param key
the key to retrieve
@param remove
whether to remove it from the table or not
@return value in the table | [
"Internal",
"get",
"from",
"the",
"table",
"which",
"is",
"partially",
"synchronized",
"at",
"the",
"hash",
"bucket",
"level",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/bytebuffer/internal/FastSynchHashTable.java#L91-L123 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/bytebuffer/internal/FastSynchHashTable.java | FastSynchHashTable.put | public Object put(int key, Object value) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "put");
}
if (value == null) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "value == null");
... | java | public Object put(int key, Object value) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "put");
}
if (value == null) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "value == null");
... | [
"public",
"Object",
"put",
"(",
"int",
"key",
",",
"Object",
"value",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"put\"",
"... | Put into the table if does not exist.
@param key
Object to identify the value by
@param value
Object to store in the table
@return value of the object in the cache | [
"Put",
"into",
"the",
"table",
"if",
"does",
"not",
"exist",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/bytebuffer/internal/FastSynchHashTable.java#L134-L162 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/bytebuffer/internal/FastSynchHashTable.java | FastSynchHashTable.syncPutIntoBucket | private Object syncPutIntoBucket(FastSyncHashBucket hb, FastSyncHashEntry newEntry) {
FastSyncHashEntry e = null;
FastSyncHashEntry last = null;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "syncPutIntoBucket");
}
synchronized (hb) {... | java | private Object syncPutIntoBucket(FastSyncHashBucket hb, FastSyncHashEntry newEntry) {
FastSyncHashEntry e = null;
FastSyncHashEntry last = null;
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "syncPutIntoBucket");
}
synchronized (hb) {... | [
"private",
"Object",
"syncPutIntoBucket",
"(",
"FastSyncHashBucket",
"hb",
",",
"FastSyncHashEntry",
"newEntry",
")",
"{",
"FastSyncHashEntry",
"e",
"=",
"null",
";",
"FastSyncHashEntry",
"last",
"=",
"null",
";",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabl... | Put synchronized into bucket.
Puts an object into the bucket and is synchronized.
@param hb
a FastSyncHashBucket
@param newEntry
a FastSyncHashEntry to place in the Bucket
@return the value in the table | [
"Put",
"synchronized",
"into",
"bucket",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/bytebuffer/internal/FastSynchHashTable.java#L224-L265 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/bytebuffer/internal/FastSynchHashTable.java | FastSynchHashTable.getAllEntryValues | public Object[] getAllEntryValues() {
List<Object> values = new ArrayList<Object>();
FastSyncHashBucket hb = null;
FastSyncHashEntry e = null;
for (int i = 0; i < xVar; i++) {
for (int j = 0; j < yVar; j++) {
hb = mainTable[i][j];
synchronized... | java | public Object[] getAllEntryValues() {
List<Object> values = new ArrayList<Object>();
FastSyncHashBucket hb = null;
FastSyncHashEntry e = null;
for (int i = 0; i < xVar; i++) {
for (int j = 0; j < yVar; j++) {
hb = mainTable[i][j];
synchronized... | [
"public",
"Object",
"[",
"]",
"getAllEntryValues",
"(",
")",
"{",
"List",
"<",
"Object",
">",
"values",
"=",
"new",
"ArrayList",
"<",
"Object",
">",
"(",
")",
";",
"FastSyncHashBucket",
"hb",
"=",
"null",
";",
"FastSyncHashEntry",
"e",
"=",
"null",
";",
... | This routine returns a snapshot of all the values in the hash table.
CAUTION: The entries returned may no longer be valid, so code that
processes
of the return values should be aware of this. The main reason for
this function is to provide a way of dumping the table for diagnostic
purposes.
@return an array of all th... | [
"This",
"routine",
"returns",
"a",
"snapshot",
"of",
"all",
"the",
"values",
"in",
"the",
"hash",
"table",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/bytebuffer/internal/FastSynchHashTable.java#L291-L310 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.removeSession | void removeSession(JmsSessionImpl sess) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "removeSession", sess);
synchronized (stateLock) {
// Remove the Session
// Note that this is a synchronized collection.
boole... | java | void removeSession(JmsSessionImpl sess) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "removeSession", sess);
synchronized (stateLock) {
// Remove the Session
// Note that this is a synchronized collection.
boole... | [
"void",
"removeSession",
"(",
"JmsSessionImpl",
"sess",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"removeSession\"",
... | This method is used to remove a Session from the list of sessions held by
the Connection. | [
"This",
"method",
"is",
"used",
"to",
"remove",
"a",
"Session",
"from",
"the",
"list",
"of",
"sessions",
"held",
"by",
"the",
"Connection",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L880-L898 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.getState | protected int getState() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "getState");
int tempState;
synchronized (stateLock) {
tempState = state;
}
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
... | java | protected int getState() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "getState");
int tempState;
synchronized (stateLock) {
tempState = state;
}
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
... | [
"protected",
"int",
"getState",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"getState\"",
")",
";",
"int",
"te... | Returns the state.
@return int | [
"Returns",
"the",
"state",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L905-L915 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.setState | protected void setState(int newState) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "setState", newState);
synchronized (stateLock) {
if ((newState == JmsInternalConstants.CLOSED)
|| (newState == JmsInternalConstants.STO... | java | protected void setState(int newState) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "setState", newState);
synchronized (stateLock) {
if ((newState == JmsInternalConstants.CLOSED)
|| (newState == JmsInternalConstants.STO... | [
"protected",
"void",
"setState",
"(",
"int",
"newState",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"setState\"",
",... | Sets the state.
@param state The state to set | [
"Sets",
"the",
"state",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L922-L937 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.checkClosed | protected void checkClosed() throws JMSException {
if (getState() == CLOSED) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
SibTr.debug(this, tc, "This Connection is closed.");
throw (javax.jms.IllegalStateException) JmsErrorUtils.newThrowable(javax.jm... | java | protected void checkClosed() throws JMSException {
if (getState() == CLOSED) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
SibTr.debug(this, tc, "This Connection is closed.");
throw (javax.jms.IllegalStateException) JmsErrorUtils.newThrowable(javax.jm... | [
"protected",
"void",
"checkClosed",
"(",
")",
"throws",
"JMSException",
"{",
"if",
"(",
"getState",
"(",
")",
"==",
"CLOSED",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"... | This method is called at the beginning of every method that should not work
if the Connection has been closed. It prevents further execution by throwing
a JMSException with a suitable "I'm closed" message. | [
"This",
"method",
"is",
"called",
"at",
"the",
"beginning",
"of",
"every",
"method",
"that",
"should",
"not",
"work",
"if",
"the",
"Connection",
"has",
"been",
"closed",
".",
"It",
"prevents",
"further",
"execution",
"by",
"throwing",
"a",
"JMSException",
"w... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L944-L952 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.fixClientID | protected void fixClientID() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "fixClientID");
synchronized (stateLock) {
clientIDFixed = true;
}
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
... | java | protected void fixClientID() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "fixClientID");
synchronized (stateLock) {
clientIDFixed = true;
}
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
... | [
"protected",
"void",
"fixClientID",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"fixClientID\"",
")",
";",
"sync... | This method is called in order to mark that the clientID may not now change. | [
"This",
"method",
"is",
"called",
"in",
"order",
"to",
"mark",
"that",
"the",
"clientID",
"may",
"not",
"now",
"change",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L965-L975 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.unfixClientID | void unfixClientID() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "unfixClientID");
synchronized (stateLock) {
clientIDFixed = false;
}
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr... | java | void unfixClientID() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "unfixClientID");
synchronized (stateLock) {
clientIDFixed = false;
}
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr... | [
"void",
"unfixClientID",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
",",
"tc",
",",
"\"unfixClientID\"",
")",
";",
"synchronized",
... | This method is called in order to mark that the clientID may now change. | [
"This",
"method",
"is",
"called",
"in",
"order",
"to",
"mark",
"that",
"the",
"clientID",
"may",
"now",
"change",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L980-L990 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.createJcaSession | protected JmsJcaSession createJcaSession(boolean transacted) throws JMSException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "createJcaSession", transacted);
JmsJcaSession jcaSess = null;
// If we have a JCA connection, then make a JCA se... | java | protected JmsJcaSession createJcaSession(boolean transacted) throws JMSException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "createJcaSession", transacted);
JmsJcaSession jcaSess = null;
// If we have a JCA connection, then make a JCA se... | [
"protected",
"JmsJcaSession",
"createJcaSession",
"(",
"boolean",
"transacted",
")",
"throws",
"JMSException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
... | Create a JCA Session.
If this Connection contains a JCA Connection, then use it to create a
JCA Session.
@return The new JCA Session
@throws JMSException if the JCA runtime fails to create the JCA Session | [
"Create",
"a",
"JCA",
"Session",
".",
"If",
"this",
"Connection",
"contains",
"a",
"JCA",
"Connection",
"then",
"use",
"it",
"to",
"create",
"a",
"JCA",
"Session",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L1000-L1030 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.addTemporaryDestination | protected void addTemporaryDestination(JmsTemporaryDestinationInternal tempDest) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "addTemporaryDestination", System.identityHashCode(tempDest));
synchronized (temporaryDestinations) { // synchronize agai... | java | protected void addTemporaryDestination(JmsTemporaryDestinationInternal tempDest) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "addTemporaryDestination", System.identityHashCode(tempDest));
synchronized (temporaryDestinations) { // synchronize agai... | [
"protected",
"void",
"addTemporaryDestination",
"(",
"JmsTemporaryDestinationInternal",
"tempDest",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this",
... | Add a TemporaryDestination to the list of temporary destinations
created by sessions under this connection
@param tempDest - the temporary destination | [
"Add",
"a",
"TemporaryDestination",
"to",
"the",
"list",
"of",
"temporary",
"destinations",
"created",
"by",
"sessions",
"under",
"this",
"connection"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L1049-L1059 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.removeTemporaryDestination | protected void removeTemporaryDestination(JmsTemporaryDestinationInternal tempDest) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "removeTemporaryDestination", System.identityHashCode(tempDest));
synchronized (temporaryDestinations) { // synchroniz... | java | protected void removeTemporaryDestination(JmsTemporaryDestinationInternal tempDest) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(this, tc, "removeTemporaryDestination", System.identityHashCode(tempDest));
synchronized (temporaryDestinations) { // synchroniz... | [
"protected",
"void",
"removeTemporaryDestination",
"(",
"JmsTemporaryDestinationInternal",
"tempDest",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"this"... | Remove a TemporaryDestination from the list of temporary destinations
created by sessions under this connection
@param tempDest - the temporary destination to be removed from the List | [
"Remove",
"a",
"TemporaryDestination",
"from",
"the",
"list",
"of",
"temporary",
"destinations",
"created",
"by",
"sessions",
"under",
"this",
"connection"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L1067-L1077 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.allocateOrderingContext | public OrderingContext allocateOrderingContext() throws SIConnectionDroppedException, SIConnectionUnavailableException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "allocateOrderingContext");
// Synchronize on the state lock, and either re-use an existi... | java | public OrderingContext allocateOrderingContext() throws SIConnectionDroppedException, SIConnectionUnavailableException {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "allocateOrderingContext");
// Synchronize on the state lock, and either re-use an existi... | [
"public",
"OrderingContext",
"allocateOrderingContext",
"(",
")",
"throws",
"SIConnectionDroppedException",
",",
"SIConnectionUnavailableException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",... | Called by each session when it is created to get an ordering context for that session.
@throws SIConnectionUnavailableException
@throws SIConnectionDroppedException | [
"Called",
"by",
"each",
"session",
"when",
"it",
"is",
"created",
"to",
"get",
"an",
"ordering",
"context",
"for",
"that",
"session",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L1121-L1145 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.initExceptionThreadPool | private static void initExceptionThreadPool() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "initExceptionThreadPool");
// Do a synchronous check to ensure once-only creation
synchronized (exceptionTPCreateSync) {
if (exceptionThreadP... | java | private static void initExceptionThreadPool() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
SibTr.entry(tc, "initExceptionThreadPool");
// Do a synchronous check to ensure once-only creation
synchronized (exceptionTPCreateSync) {
if (exceptionThreadP... | [
"private",
"static",
"void",
"initExceptionThreadPool",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"initExceptionThreadPool\"",
")... | PK59962 Ensure the existence of a single thread pool within the process | [
"PK59962",
"Ensure",
"the",
"existence",
"of",
"a",
"single",
"thread",
"pool",
"within",
"the",
"process"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L1167-L1197 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.addClientId | private void addClientId(String clientId) {
//Sometimes the client Id will be null. For instance in the case QueueConnectionFactory, there is no default client Id specified in metatype.xml.
if (clientId == null)
return; //do nothing
ConcurrentHashMap<String, Integer> clientIdTable =... | java | private void addClientId(String clientId) {
//Sometimes the client Id will be null. For instance in the case QueueConnectionFactory, there is no default client Id specified in metatype.xml.
if (clientId == null)
return; //do nothing
ConcurrentHashMap<String, Integer> clientIdTable =... | [
"private",
"void",
"addClientId",
"(",
"String",
"clientId",
")",
"{",
"//Sometimes the client Id will be null. For instance in the case QueueConnectionFactory, there is no default client Id specified in metatype.xml.",
"if",
"(",
"clientId",
"==",
"null",
")",
"return",
";",
"//do... | If there is no entry for the given Client Id in the "clientIdTable", then add it with count as "1".
If its already exists then just increment the counter value by "1".
@param clientId | [
"If",
"there",
"is",
"no",
"entry",
"for",
"the",
"given",
"Client",
"Id",
"in",
"the",
"clientIdTable",
"then",
"add",
"it",
"with",
"count",
"as",
"1",
".",
"If",
"its",
"already",
"exists",
"then",
"just",
"increment",
"the",
"counter",
"value",
"by",... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L1479-L1492 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java | JmsConnectionImpl.removeClientId | private void removeClientId(String clientId) {
//Sometimes the client Id will be null. For instance in the case QueueConnectionFactory, there is no default client Id specified in metatype.xml.
if (clientId == null)
return; //do nothing
ConcurrentHashMap<String, Integer> clientIdTab... | java | private void removeClientId(String clientId) {
//Sometimes the client Id will be null. For instance in the case QueueConnectionFactory, there is no default client Id specified in metatype.xml.
if (clientId == null)
return; //do nothing
ConcurrentHashMap<String, Integer> clientIdTab... | [
"private",
"void",
"removeClientId",
"(",
"String",
"clientId",
")",
"{",
"//Sometimes the client Id will be null. For instance in the case QueueConnectionFactory, there is no default client Id specified in metatype.xml. ",
"if",
"(",
"clientId",
"==",
"null",
")",
"return",
";",
"... | To remove the client id from client table.
Whenever this method is called, the counter of respective HashMap entry is decremented by one. If the count reaches "0", then that entry wil be removed from the
clientIdTable.
@param clientId | [
"To",
"remove",
"the",
"client",
"id",
"from",
"client",
"table",
".",
"Whenever",
"this",
"method",
"is",
"called",
"the",
"counter",
"of",
"respective",
"HashMap",
"entry",
"is",
"decremented",
"by",
"one",
".",
"If",
"the",
"count",
"reaches",
"0",
"the... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.jms.2.0/src/com/ibm/ws/sib/api/jms/impl/JmsConnectionImpl.java#L1501-L1516 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java | InvocationContextImpl.initializeForAroundConstruct | public void initializeForAroundConstruct(ManagedObjectContext managedObjectContext,
Object[] interceptors, InterceptorProxy[] proxies) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "initializeForAroundConstruct : context ... | java | public void initializeForAroundConstruct(ManagedObjectContext managedObjectContext,
Object[] interceptors, InterceptorProxy[] proxies) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "initializeForAroundConstruct : context ... | [
"public",
"void",
"initializeForAroundConstruct",
"(",
"ManagedObjectContext",
"managedObjectContext",
",",
"Object",
"[",
"]",
"interceptors",
",",
"InterceptorProxy",
"[",
"]",
"proxies",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
... | Initialize a InvocationContext for AroundConstruct with
an array of interceptor instances created for this bean instance
and the interceptor proxies.
@param interceptors is the ordered array of interceptor instances
created for the bean.
@param proxies is an array of InterceptorProxy objects that
represent the list of... | [
"Initialize",
"a",
"InvocationContext",
"for",
"AroundConstruct",
"with",
"an",
"array",
"of",
"interceptor",
"instances",
"created",
"for",
"this",
"bean",
"instance",
"and",
"the",
"interceptor",
"proxies",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java#L195-L205 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java | InvocationContextImpl.doAroundInvoke | public Object doAroundInvoke(InterceptorProxy[] proxies, Method businessMethod, Object[] parameters, EJSDeployedSupport s) //LIDB3294-41
throws Exception {
ivMethod = businessMethod;
ivParameters = parameters;
ivEJSDeployedSupport = s; //LIDB3294-41
ivInterceptorProxi... | java | public Object doAroundInvoke(InterceptorProxy[] proxies, Method businessMethod, Object[] parameters, EJSDeployedSupport s) //LIDB3294-41
throws Exception {
ivMethod = businessMethod;
ivParameters = parameters;
ivEJSDeployedSupport = s; //LIDB3294-41
ivInterceptorProxi... | [
"public",
"Object",
"doAroundInvoke",
"(",
"InterceptorProxy",
"[",
"]",
"proxies",
",",
"Method",
"businessMethod",
",",
"Object",
"[",
"]",
"parameters",
",",
"EJSDeployedSupport",
"s",
")",
"//LIDB3294-41",
"throws",
"Exception",
"{",
"ivMethod",
"=",
"business... | Invoke each AroundInvoke interceptor methods for a specified
business method of an EJB being invoked.
@param proxies is an array of InterceptorProxy objects that
represent the list of AroundInvoke interceptor
methods to be invoked.
@param businessMethod is the Method object for invoking the business method.
@param par... | [
"Invoke",
"each",
"AroundInvoke",
"interceptor",
"methods",
"for",
"a",
"specified",
"business",
"method",
"of",
"an",
"EJB",
"being",
"invoked",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java#L254-L280 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java | InvocationContextImpl.doAroundInterceptor | private Object doAroundInterceptor() throws Exception {
// Note, we do not call setParameters since the assumption is the
// wrapper code passes an Object array that always contains the
// correct type. If we want type checking to ensure wrapper
// code is correct, we could call setPara... | java | private Object doAroundInterceptor() throws Exception {
// Note, we do not call setParameters since the assumption is the
// wrapper code passes an Object array that always contains the
// correct type. If we want type checking to ensure wrapper
// code is correct, we could call setPara... | [
"private",
"Object",
"doAroundInterceptor",
"(",
")",
"throws",
"Exception",
"{",
"// Note, we do not call setParameters since the assumption is the",
"// wrapper code passes an Object array that always contains the",
"// correct type. If we want type checking to ensure wrapper",
"// code is ... | Invoke each AroundInvoke or AroundConstruct interceptor methods
@return the Object that is returned by business method.
@throws Exception from around invoke or business method. | [
"Invoke",
"each",
"AroundInvoke",
"or",
"AroundConstruct",
"interceptor",
"methods"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java#L289-L299 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java | InvocationContextImpl.doLifeCycle | public void doLifeCycle(InterceptorProxy[] proxies, EJBModuleMetaDataImpl mmd) // F743-14982
{
ivMethod = null;
ivParameters = null; // d367572.8
ivInterceptorProxies = proxies;
ivNumberOfInterceptors = ivInterceptorProxies.length;
if (TraceComponent.isAnyTracingEnabled() && ... | java | public void doLifeCycle(InterceptorProxy[] proxies, EJBModuleMetaDataImpl mmd) // F743-14982
{
ivMethod = null;
ivParameters = null; // d367572.8
ivInterceptorProxies = proxies;
ivNumberOfInterceptors = ivInterceptorProxies.length;
if (TraceComponent.isAnyTracingEnabled() && ... | [
"public",
"void",
"doLifeCycle",
"(",
"InterceptorProxy",
"[",
"]",
"proxies",
",",
"EJBModuleMetaDataImpl",
"mmd",
")",
"// F743-14982",
"{",
"ivMethod",
"=",
"null",
";",
"ivParameters",
"=",
"null",
";",
"// d367572.8",
"ivInterceptorProxies",
"=",
"proxies",
"... | d450431 - add appExceptionMap parameter. | [
"d450431",
"-",
"add",
"appExceptionMap",
"parameter",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java#L312-L338 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java | InvocationContextImpl.lifeCycleExceptionHandler | private void lifeCycleExceptionHandler(Throwable t, EJBModuleMetaDataImpl mmd) // F743-14982
{
if (t instanceof RuntimeException) {
// Is the RuntimeException an application exception?
RuntimeException rtex = (RuntimeException) t;
if (mmd.getApplicationExceptionRollback(r... | java | private void lifeCycleExceptionHandler(Throwable t, EJBModuleMetaDataImpl mmd) // F743-14982
{
if (t instanceof RuntimeException) {
// Is the RuntimeException an application exception?
RuntimeException rtex = (RuntimeException) t;
if (mmd.getApplicationExceptionRollback(r... | [
"private",
"void",
"lifeCycleExceptionHandler",
"(",
"Throwable",
"t",
",",
"EJBModuleMetaDataImpl",
"mmd",
")",
"// F743-14982",
"{",
"if",
"(",
"t",
"instanceof",
"RuntimeException",
")",
"{",
"// Is the RuntimeException an application exception?",
"RuntimeException",
"rt... | d450431 - ensure runtime exception is not an application exception. | [
"d450431",
"-",
"ensure",
"runtime",
"exception",
"is",
"not",
"an",
"application",
"exception",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java#L351-L403 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java | InvocationContextImpl.throwUndeclaredExceptionCause | private void throwUndeclaredExceptionCause(Throwable undeclaredException) throws Exception {
Throwable cause = undeclaredException.getCause();
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "proceed unwrappering " + undeclaredException.getClass().getSimpleName(... | java | private void throwUndeclaredExceptionCause(Throwable undeclaredException) throws Exception {
Throwable cause = undeclaredException.getCause();
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "proceed unwrappering " + undeclaredException.getClass().getSimpleName(... | [
"private",
"void",
"throwUndeclaredExceptionCause",
"(",
"Throwable",
"undeclaredException",
")",
"throws",
"Exception",
"{",
"Throwable",
"cause",
"=",
"undeclaredException",
".",
"getCause",
"(",
")",
";",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"("... | Since some interceptor methods cannot throw 'Exception', but the target
method on the bean can throw application exceptions, this method may be
used to unwrap the application exception from either an
InvocationTargetException or UndeclaredThrowableException.
@param undeclaredException the InvocationTargetException or ... | [
"Since",
"some",
"interceptor",
"methods",
"cannot",
"throw",
"Exception",
"but",
"the",
"target",
"method",
"on",
"the",
"bean",
"can",
"throw",
"application",
"exceptions",
"this",
"method",
"may",
"be",
"used",
"to",
"unwrap",
"the",
"application",
"exception... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/interceptors/InvocationContextImpl.java#L624-L645 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.authentication.builtin/src/com/ibm/ws/security/authentication/internal/UnauthenticatedSubjectServiceImpl.java | UnauthenticatedSubjectServiceImpl.setCredentialProvider | protected void setCredentialProvider(ServiceReference<CredentialProvider> ref) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "Resetting unauthenticatedSubject as new CredentialProvider has been set");
}
synchronized (unauthenticatedSubjectLock) {
... | java | protected void setCredentialProvider(ServiceReference<CredentialProvider> ref) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, "Resetting unauthenticatedSubject as new CredentialProvider has been set");
}
synchronized (unauthenticatedSubjectLock) {
... | [
"protected",
"void",
"setCredentialProvider",
"(",
"ServiceReference",
"<",
"CredentialProvider",
">",
"ref",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"debug"... | When CredentialProviders come and go, reset the unauthenticated subject.
@param ref | [
"When",
"CredentialProviders",
"come",
"and",
"go",
"reset",
"the",
"unauthenticated",
"subject",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.authentication.builtin/src/com/ibm/ws/security/authentication/internal/UnauthenticatedSubjectServiceImpl.java#L73-L80 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.authentication.builtin/src/com/ibm/ws/security/authentication/internal/UnauthenticatedSubjectServiceImpl.java | UnauthenticatedSubjectServiceImpl.getUnauthenticatedSubject | @Override
@FFDCIgnore(Exception.class)
public Subject getUnauthenticatedSubject() {
if (unauthenticatedSubject == null) {
CredentialsService cs = credentialsServiceRef.getService();
String unauthenticatedUserid = cs.getUnauthenticatedUserid();
try {
Su... | java | @Override
@FFDCIgnore(Exception.class)
public Subject getUnauthenticatedSubject() {
if (unauthenticatedSubject == null) {
CredentialsService cs = credentialsServiceRef.getService();
String unauthenticatedUserid = cs.getUnauthenticatedUserid();
try {
Su... | [
"@",
"Override",
"@",
"FFDCIgnore",
"(",
"Exception",
".",
"class",
")",
"public",
"Subject",
"getUnauthenticatedSubject",
"(",
")",
"{",
"if",
"(",
"unauthenticatedSubject",
"==",
"null",
")",
"{",
"CredentialsService",
"cs",
"=",
"credentialsServiceRef",
".",
... | Return the unauthenticated subject. If we don't already have one create it.
@return unauthenticated subject | [
"Return",
"the",
"unauthenticated",
"subject",
".",
"If",
"we",
"don",
"t",
"already",
"have",
"one",
"create",
"it",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.authentication.builtin/src/com/ibm/ws/security/authentication/internal/UnauthenticatedSubjectServiceImpl.java#L147-L176 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/core/WSX509KeyManager.java | WSX509KeyManager.setClientAlias | public void setClientAlias(String alias) throws Exception {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(tc, "setClientAlias", new Object[] { alias });
if (!ks.containsAlias(alias)) {
String keyFileName = config.getProperty(Constants.SSLPROP_KEY_STORE... | java | public void setClientAlias(String alias) throws Exception {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(tc, "setClientAlias", new Object[] { alias });
if (!ks.containsAlias(alias)) {
String keyFileName = config.getProperty(Constants.SSLPROP_KEY_STORE... | [
"public",
"void",
"setClientAlias",
"(",
"String",
"alias",
")",
"throws",
"Exception",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"setClie... | Set the client alias value for the given slot number.
@param alias
@param slotnum
@throws Exception | [
"Set",
"the",
"client",
"alias",
"value",
"for",
"the",
"given",
"slot",
"number",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/core/WSX509KeyManager.java#L118-L138 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/core/WSX509KeyManager.java | WSX509KeyManager.chooseClientAlias | public String chooseClientAlias(String keyType, Principal[] issuers) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(tc, "chooseClientAlias", new Object[] { keyType, issuers });
Map<String, Object> connectionInfo = JSSEHelper.getInstance().getOutboundConnectionIn... | java | public String chooseClientAlias(String keyType, Principal[] issuers) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(tc, "chooseClientAlias", new Object[] { keyType, issuers });
Map<String, Object> connectionInfo = JSSEHelper.getInstance().getOutboundConnectionIn... | [
"public",
"String",
"chooseClientAlias",
"(",
"String",
"keyType",
",",
"Principal",
"[",
"]",
"issuers",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"("... | Choose a client alias.
@param keyType
@param issuers
@return String | [
"Choose",
"a",
"client",
"alias",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/core/WSX509KeyManager.java#L248-L305 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/core/WSX509KeyManager.java | WSX509KeyManager.chooseEngineServerAlias | @Override
public String chooseEngineServerAlias(String keyType, Principal[] issuers, SSLEngine engine) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(tc, "chooseEngineServerAlias", new Object[] { keyType, issuers, engine });
String rc = null;
if (nul... | java | @Override
public String chooseEngineServerAlias(String keyType, Principal[] issuers, SSLEngine engine) {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled())
Tr.entry(tc, "chooseEngineServerAlias", new Object[] { keyType, issuers, engine });
String rc = null;
if (nul... | [
"@",
"Override",
"public",
"String",
"chooseEngineServerAlias",
"(",
"String",
"keyType",
",",
"Principal",
"[",
"]",
"issuers",
",",
"SSLEngine",
"engine",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryE... | Handshakes that use the SSLEngine and not an SSLSocket require this method
from the extended X509KeyManager.
@see javax.net.ssl.X509ExtendedKeyManager#chooseEngineServerAlias(java.lang.String, java.security.Principal[], javax.net.ssl.SSLEngine) | [
"Handshakes",
"that",
"use",
"the",
"SSLEngine",
"and",
"not",
"an",
"SSLSocket",
"require",
"this",
"method",
"from",
"the",
"extended",
"X509KeyManager",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/core/WSX509KeyManager.java#L313-L329 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/core/WSX509KeyManager.java | WSX509KeyManager.getX509KeyManager | public X509KeyManager getX509KeyManager() {
if (customKM != null) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "getX509KeyManager -> " + customKM.getClass().getName());
return customKM;
}
if (TraceComponent.isAnyTracingEn... | java | public X509KeyManager getX509KeyManager() {
if (customKM != null) {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "getX509KeyManager -> " + customKM.getClass().getName());
return customKM;
}
if (TraceComponent.isAnyTracingEn... | [
"public",
"X509KeyManager",
"getX509KeyManager",
"(",
")",
"{",
"if",
"(",
"customKM",
"!=",
"null",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"Tr",
".",
"debug",
"(",
"... | Get the appropriate X509KeyManager for this instance.
@return X509KeyManager | [
"Get",
"the",
"appropriate",
"X509KeyManager",
"for",
"this",
"instance",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ssl/src/com/ibm/ws/ssl/core/WSX509KeyManager.java#L496-L505 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/AlpnSupportUtils.java | AlpnSupportUtils.getAlpnResult | protected static void getAlpnResult(SSLEngine engine, SSLConnectionLink link) {
alpnNegotiator.tryToRemoveAlpnNegotiator(link.getAlpnNegotiator(), engine, link);
} | java | protected static void getAlpnResult(SSLEngine engine, SSLConnectionLink link) {
alpnNegotiator.tryToRemoveAlpnNegotiator(link.getAlpnNegotiator(), engine, link);
} | [
"protected",
"static",
"void",
"getAlpnResult",
"(",
"SSLEngine",
"engine",
",",
"SSLConnectionLink",
"link",
")",
"{",
"alpnNegotiator",
".",
"tryToRemoveAlpnNegotiator",
"(",
"link",
".",
"getAlpnNegotiator",
"(",
")",
",",
"engine",
",",
"link",
")",
";",
"}"... | This must be called after the SSL handshake has completed. If an ALPN protocol was selected by the available provider,
that protocol will be set on the SSLConnectionLink. Also, additional cleanup will be done for some ALPN providers.
@param SSLEngine
@param SSLConnectionLink | [
"This",
"must",
"be",
"called",
"after",
"the",
"SSL",
"handshake",
"has",
"completed",
".",
"If",
"an",
"ALPN",
"protocol",
"was",
"selected",
"by",
"the",
"available",
"provider",
"that",
"protocol",
"will",
"be",
"set",
"on",
"the",
"SSLConnectionLink",
"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channel.ssl/src/com/ibm/ws/channel/ssl/internal/AlpnSupportUtils.java#L58-L60 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.metadataProcessingInitialize | void metadataProcessingInitialize(ComponentNameSpaceConfiguration nameSpaceConfig)
{
ivContext = (InjectionProcessorContext) nameSpaceConfig.getInjectionProcessorContext();
ivNameSpaceConfig = nameSpaceConfig;
// Following must be available after ivContext and ivNameSpaceConfig are cleared
... | java | void metadataProcessingInitialize(ComponentNameSpaceConfiguration nameSpaceConfig)
{
ivContext = (InjectionProcessorContext) nameSpaceConfig.getInjectionProcessorContext();
ivNameSpaceConfig = nameSpaceConfig;
// Following must be available after ivContext and ivNameSpaceConfig are cleared
... | [
"void",
"metadataProcessingInitialize",
"(",
"ComponentNameSpaceConfiguration",
"nameSpaceConfig",
")",
"{",
"ivContext",
"=",
"(",
"InjectionProcessorContext",
")",
"nameSpaceConfig",
".",
"getInjectionProcessorContext",
"(",
")",
";",
"ivNameSpaceConfig",
"=",
"nameSpaceCon... | d730349.1 | [
"d730349",
".",
"1"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L225-L232 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.mergeError | protected void mergeError(Object oldValue,
Object newValue,
boolean xml,
String elementName,
boolean property,
String key) throws InjectionConfigurationException {
... | java | protected void mergeError(Object oldValue,
Object newValue,
boolean xml,
String elementName,
boolean property,
String key) throws InjectionConfigurationException {
... | [
"protected",
"void",
"mergeError",
"(",
"Object",
"oldValue",
",",
"Object",
"newValue",
",",
"boolean",
"xml",
",",
"String",
"elementName",
",",
"boolean",
"property",
",",
"String",
"key",
")",
"throws",
"InjectionConfigurationException",
"{",
"JNDIEnvironmentRef... | Indication that an error has occurred while merging an attribute value.
<p>This method requires {@link #getJNDIEnvironmentRefType} to be defined.
@param oldValue the old value
@param newValue the new value
@param xml true if the error occurred for an XML element
@param elementName the XML element name if xml is true,... | [
"Indication",
"that",
"an",
"error",
"has",
"occurred",
"while",
"merging",
"an",
"attribute",
"value",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L807-L871 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.mergeAnnotationBoolean | protected Boolean mergeAnnotationBoolean(Boolean oldValue,
boolean oldValueXML,
boolean newValue,
String elementName,
boolean defaultValue) ... | java | protected Boolean mergeAnnotationBoolean(Boolean oldValue,
boolean oldValueXML,
boolean newValue,
String elementName,
boolean defaultValue) ... | [
"protected",
"Boolean",
"mergeAnnotationBoolean",
"(",
"Boolean",
"oldValue",
",",
"boolean",
"oldValueXML",
",",
"boolean",
"newValue",
",",
"String",
"elementName",
",",
"boolean",
"defaultValue",
")",
"throws",
"InjectionConfigurationException",
"{",
"if",
"(",
"ne... | Merges the value of a boolean annotation value.
<p>If an error occurs, {@link #mergeError} will be called, which
requires {@link #getJNDIEnvironmentRefType} to be defined.
@param oldValue the old value
@param oldValueXML true if the old value was set by XML
@param newValue the new value
@param elementName the annotat... | [
"Merges",
"the",
"value",
"of",
"a",
"boolean",
"annotation",
"value",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L887-L906 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.mergeAnnotationInteger | protected Integer mergeAnnotationInteger(Integer oldValue,
boolean oldValueXML,
int newValue,
String elementName,
int defaultValue,
... | java | protected Integer mergeAnnotationInteger(Integer oldValue,
boolean oldValueXML,
int newValue,
String elementName,
int defaultValue,
... | [
"protected",
"Integer",
"mergeAnnotationInteger",
"(",
"Integer",
"oldValue",
",",
"boolean",
"oldValueXML",
",",
"int",
"newValue",
",",
"String",
"elementName",
",",
"int",
"defaultValue",
",",
"Map",
"<",
"Integer",
",",
"String",
">",
"valueNames",
")",
"thr... | Merges the value of an integer annotation value.
<p>If an error occurs, {@link #mergeError} will be called, which
requires {@link #getJNDIEnvironmentRefType} to be defined.
@param oldValue the old value
@param oldValueXML true if the old value was set by XML
@param newValue the new value
@param elementName the annota... | [
"Merges",
"the",
"value",
"of",
"an",
"integer",
"annotation",
"value",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L922-L944 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.mergeAnnotationValue | protected <T> T mergeAnnotationValue(T oldValue,
boolean oldValueXML,
T newValue,
String elementName,
T defaultValue) throws InjectionConfigurationException... | java | protected <T> T mergeAnnotationValue(T oldValue,
boolean oldValueXML,
T newValue,
String elementName,
T defaultValue) throws InjectionConfigurationException... | [
"protected",
"<",
"T",
">",
"T",
"mergeAnnotationValue",
"(",
"T",
"oldValue",
",",
"boolean",
"oldValueXML",
",",
"T",
"newValue",
",",
"String",
"elementName",
",",
"T",
"defaultValue",
")",
"throws",
"InjectionConfigurationException",
"{",
"if",
"(",
"newValu... | Merges the value of a String or Enum annotation value.
<p>If an error occurs, {@link #mergeError} will be called, which
requires {@link #getJNDIEnvironmentRefType} to be defined.
@param oldValue the old value
@param oldValueXML true if the old value was set by XML
@param newValue the new value
@param elementName the ... | [
"Merges",
"the",
"value",
"of",
"a",
"String",
"or",
"Enum",
"annotation",
"value",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L960-L975 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.mergeXMLValue | protected <T> T mergeXMLValue(T oldValue,
T newValue,
String elementName,
String key,
Map<T, String> valueNames) throws InjectionConfigurationException {
if (newValue == null) ... | java | protected <T> T mergeXMLValue(T oldValue,
T newValue,
String elementName,
String key,
Map<T, String> valueNames) throws InjectionConfigurationException {
if (newValue == null) ... | [
"protected",
"<",
"T",
">",
"T",
"mergeXMLValue",
"(",
"T",
"oldValue",
",",
"T",
"newValue",
",",
"String",
"elementName",
",",
"String",
"key",
",",
"Map",
"<",
"T",
",",
"String",
">",
"valueNames",
")",
"throws",
"InjectionConfigurationException",
"{",
... | Merges a value specified in XML.
<p>If an error occurs, {@link #mergeError} will be called, which
requires {@link #getJNDIEnvironmentRefType} to be defined.
@param oldValue the old value
@param newValue the new value
@param elementName the name of the XML element containing the value
@param key the optional key to be... | [
"Merges",
"a",
"value",
"specified",
"in",
"XML",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1075-L1092 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.mergeXMLProperties | protected Map<String, String> mergeXMLProperties(Map<String, String> oldProperties,
Set<String> oldXMLProperties,
List<Property> properties) throws InjectionConfigurationException {
if (!properties.isEmpty(... | java | protected Map<String, String> mergeXMLProperties(Map<String, String> oldProperties,
Set<String> oldXMLProperties,
List<Property> properties) throws InjectionConfigurationException {
if (!properties.isEmpty(... | [
"protected",
"Map",
"<",
"String",
",",
"String",
">",
"mergeXMLProperties",
"(",
"Map",
"<",
"String",
",",
"String",
">",
"oldProperties",
",",
"Set",
"<",
"String",
">",
"oldXMLProperties",
",",
"List",
"<",
"Property",
">",
"properties",
")",
"throws",
... | Merges the properties specified in XML.
<p>If an error occurs, {@link #mergeError} will be called, which
requires {@link #getJNDIEnvironmentRefType} to be defined.
@param oldProperties the old properties, or null if uninitialized
@param oldXMLPropertyNames the old property names set by XML to be updated
@param newPro... | [
"Merges",
"the",
"properties",
"specified",
"in",
"XML",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1106-L1129 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.addOrRemoveProperty | protected static <K, V> void addOrRemoveProperty(Map<K, V> props, K key, V value)
{
if (value == null) {
// Generic properties have already been added to the map. Remove them
// so they aren't confused with the builtin properties.
props.remove(key);
} else {
... | java | protected static <K, V> void addOrRemoveProperty(Map<K, V> props, K key, V value)
{
if (value == null) {
// Generic properties have already been added to the map. Remove them
// so they aren't confused with the builtin properties.
props.remove(key);
} else {
... | [
"protected",
"static",
"<",
"K",
",",
"V",
">",
"void",
"addOrRemoveProperty",
"(",
"Map",
"<",
"K",
",",
"V",
">",
"props",
",",
"K",
"key",
",",
"V",
"value",
")",
"{",
"if",
"(",
"value",
"==",
"null",
")",
"{",
"// Generic properties have already b... | Add the specified property if the value is non-null, or remove it from
the map if it is null.
@param props the properties to update
@param key the key
@param value the value | [
"Add",
"the",
"specified",
"property",
"if",
"the",
"value",
"is",
"non",
"-",
"null",
"or",
"remove",
"it",
"from",
"the",
"map",
"if",
"it",
"is",
"null",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1203-L1212 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.createDefinitionReference | public Reference createDefinitionReference(String bindingName, String type, Map<String, Object> properties) throws InjectionException {
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled()) {
Map<String, Object> traceProps = properties;
... | java | public Reference createDefinitionReference(String bindingName, String type, Map<String, Object> properties) throws InjectionException {
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled()) {
Map<String, Object> traceProps = properties;
... | [
"public",
"Reference",
"createDefinitionReference",
"(",
"String",
"bindingName",
",",
"String",
"type",
",",
"Map",
"<",
"String",
",",
"Object",
">",
"properties",
")",
"throws",
"InjectionException",
"{",
"final",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
... | Create a Reference to a resource definition.
@param bindingName the binding name, or null if none
@param type the resource type
@param properties the resource-specific properties
@return the resource definition Reference | [
"Create",
"a",
"Reference",
"to",
"a",
"resource",
"definition",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1222-L1247 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.setObjects | public void setObjects(Object injectionObject, Reference bindingObject)
throws InjectionException
{
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isDebugEnabled())
Tr.debug(tc, "setObjects", injectionObject, bindingObjectToString(... | java | public void setObjects(Object injectionObject, Reference bindingObject)
throws InjectionException
{
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isDebugEnabled())
Tr.debug(tc, "setObjects", injectionObject, bindingObjectToString(... | [
"public",
"void",
"setObjects",
"(",
"Object",
"injectionObject",
",",
"Reference",
"bindingObject",
")",
"throws",
"InjectionException",
"{",
"final",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
";",
"if",
"(",
"isTraceOn",
... | Sets the object to use for injection and the Reference to use for
binding. Usually, the injection object is null.
@param injectionObject the object to inject, or null if the object should
be obtained from the binding object instead
@param bindingObject the object to bind, or null if injectionObject
should be bound dir... | [
"Sets",
"the",
"object",
"to",
"use",
"for",
"injection",
"and",
"the",
"Reference",
"to",
"use",
"for",
"binding",
".",
"Usually",
"the",
"injection",
"object",
"is",
"null",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1283-L1305 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.setReferenceObject | public void setReferenceObject(Reference bindingObject,
Class<? extends ObjectFactory> objectFactory)
throws InjectionException
{
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
T... | java | public void setReferenceObject(Reference bindingObject,
Class<? extends ObjectFactory> objectFactory)
throws InjectionException
{
final boolean isTraceOn = TraceComponent.isAnyTracingEnabled();
if (isTraceOn && tc.isEntryEnabled())
T... | [
"public",
"void",
"setReferenceObject",
"(",
"Reference",
"bindingObject",
",",
"Class",
"<",
"?",
"extends",
"ObjectFactory",
">",
"objectFactory",
")",
"throws",
"InjectionException",
"{",
"final",
"boolean",
"isTraceOn",
"=",
"TraceComponent",
".",
"isAnyTracingEna... | F623-841.1 | [
"F623",
"-",
"841",
".",
"1"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1328-L1340 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.getInjectionObjectInstance | protected Object getInjectionObjectInstance(Object targetObject,
InjectionTargetContext targetContext)
throws Exception
{
ObjectFactory objectFactory = ivObjectFactory; // volatile-read
InjectionObjectFactory injObjFactory = ivInjec... | java | protected Object getInjectionObjectInstance(Object targetObject,
InjectionTargetContext targetContext)
throws Exception
{
ObjectFactory objectFactory = ivObjectFactory; // volatile-read
InjectionObjectFactory injObjFactory = ivInjec... | [
"protected",
"Object",
"getInjectionObjectInstance",
"(",
"Object",
"targetObject",
",",
"InjectionTargetContext",
"targetContext",
")",
"throws",
"Exception",
"{",
"ObjectFactory",
"objectFactory",
"=",
"ivObjectFactory",
";",
"// volatile-read",
"InjectionObjectFactory",
"i... | F48603.4 | [
"F48603",
".",
"4"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1519-L1553 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.setJndiName | public final void setJndiName(String jndiName)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled() && jndiName.length() != 0)
Tr.debug(tc, "setJndiName: " + jndiName);
// Starting with Java EE 6, reference names may now start with java: and
// then global, app, mod... | java | public final void setJndiName(String jndiName)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled() && jndiName.length() != 0)
Tr.debug(tc, "setJndiName: " + jndiName);
// Starting with Java EE 6, reference names may now start with java: and
// then global, app, mod... | [
"public",
"final",
"void",
"setJndiName",
"(",
"String",
"jndiName",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
"&&",
"jndiName",
".",
"length",
"(",
")",
"!=",
"0",
")",
"Tr"... | d367834.14 Ends | [
"d367834",
".",
"14",
"Ends"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1614-L1625 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.setInjectionClassType | public void setInjectionClassType(Class<?> injectionClassType) throws InjectionException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "setInjectionClassType: " + injectionClassType);
// if the injection class type hasn't been set yet ( null from XML or... | java | public void setInjectionClassType(Class<?> injectionClassType) throws InjectionException
{
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "setInjectionClassType: " + injectionClassType);
// if the injection class type hasn't been set yet ( null from XML or... | [
"public",
"void",
"setInjectionClassType",
"(",
"Class",
"<",
"?",
">",
"injectionClassType",
")",
"throws",
"InjectionException",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"Tr",
"... | Set the InjectionClassType to be most fine grained injection target Class type.
For instance, if there are three injection classes
named Object,Cart,myCart where each extends the prior, the setInjectionClassType
will set the class to be myCart.
@param injectionClassType type of the object association with reference
@... | [
"Set",
"the",
"InjectionClassType",
"to",
"be",
"most",
"fine",
"grained",
"injection",
"target",
"Class",
"type",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1658-L1692 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.setInjectionClassTypeName | public void setInjectionClassTypeName(String name) // F743-32443
{
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "setInjectionClassType: " + name);
if (ivInjectionClassTypeName != null)
{
throw new IllegalStateException("duplicate refe... | java | public void setInjectionClassTypeName(String name) // F743-32443
{
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "setInjectionClassType: " + name);
if (ivInjectionClassTypeName != null)
{
throw new IllegalStateException("duplicate refe... | [
"public",
"void",
"setInjectionClassTypeName",
"(",
"String",
"name",
")",
"// F743-32443",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebugEnabled",
"(",
")",
")",
"Tr",
".",
"debug",
"(",
"tc",
",",
"\"setIn... | Sets the injection class type name. When class names are specified in
XML rather than annotation, sub-classes must call this method or override
getInjectionClassTypeName in order to support callers of the injection
engine that do not have a class loader.
@param name the type name of the referenced object | [
"Sets",
"the",
"injection",
"class",
"type",
"name",
".",
"When",
"class",
"names",
"are",
"specified",
"in",
"XML",
"rather",
"than",
"annotation",
"sub",
"-",
"classes",
"must",
"call",
"this",
"method",
"or",
"override",
"getInjectionClassTypeName",
"in",
"... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1702-L1713 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.isClassesCompatible | public static boolean isClassesCompatible(Class<?> memberClass,
Class<?> injectClass)
{
// If the class of the field or method is the injection
// type or a parent of it, then the injection may occur. d433391
if (memberClass.isAssignabl... | java | public static boolean isClassesCompatible(Class<?> memberClass,
Class<?> injectClass)
{
// If the class of the field or method is the injection
// type or a parent of it, then the injection may occur. d433391
if (memberClass.isAssignabl... | [
"public",
"static",
"boolean",
"isClassesCompatible",
"(",
"Class",
"<",
"?",
">",
"memberClass",
",",
"Class",
"<",
"?",
">",
"injectClass",
")",
"{",
"// If the class of the field or method is the injection",
"// type or a parent of it, then the injection may occur. ... | Test if the input two classes are auto-boxing compatible.
@param memberClass Class type of the method or field
@param injectClass Class type of object being injected | [
"Test",
"if",
"the",
"input",
"two",
"classes",
"are",
"auto",
"-",
"boxing",
"compatible",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1869-L1889 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.mostSpecificClass | public static Class<?> mostSpecificClass(Class<?> classOne,
Class<?> classTwo)
{
if (classOne.isAssignableFrom(classTwo)) {
return classTwo; // d479669
}
else if (classTwo.isAssignableFrom(classOne)) {
return classOne; // d... | java | public static Class<?> mostSpecificClass(Class<?> classOne,
Class<?> classTwo)
{
if (classOne.isAssignableFrom(classTwo)) {
return classTwo; // d479669
}
else if (classTwo.isAssignableFrom(classOne)) {
return classOne; // d... | [
"public",
"static",
"Class",
"<",
"?",
">",
"mostSpecificClass",
"(",
"Class",
"<",
"?",
">",
"classOne",
",",
"Class",
"<",
"?",
">",
"classTwo",
")",
"{",
"if",
"(",
"classOne",
".",
"isAssignableFrom",
"(",
"classTwo",
")",
")",
"{",
"return",
"clas... | Returns the most most specific class to the caller. If the two
classes are not compatible a null is returned.
@param classOne Class type of the method or field
@param classTwo Class type of object being injected | [
"Returns",
"the",
"most",
"most",
"specific",
"class",
"to",
"the",
"caller",
".",
"If",
"the",
"two",
"classes",
"are",
"not",
"compatible",
"a",
"null",
"is",
"returned",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L1898-L1909 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java | InjectionBinding.toStringSecure | public static String toStringSecure(Annotation ann) {
Class<?> annType = ann.annotationType();
StringBuilder sb = new StringBuilder();
sb.append('@').append(annType.getName()).append('(');
boolean any = false;
for (Method m : annType.getMethods()) {
Object defaultVa... | java | public static String toStringSecure(Annotation ann) {
Class<?> annType = ann.annotationType();
StringBuilder sb = new StringBuilder();
sb.append('@').append(annType.getName()).append('(');
boolean any = false;
for (Method m : annType.getMethods()) {
Object defaultVa... | [
"public",
"static",
"String",
"toStringSecure",
"(",
"Annotation",
"ann",
")",
"{",
"Class",
"<",
"?",
">",
"annType",
"=",
"ann",
".",
"annotationType",
"(",
")",
";",
"StringBuilder",
"sb",
"=",
"new",
"StringBuilder",
"(",
")",
";",
"sb",
".",
"append... | Convert an annotation to a string, but mask members named password.
@param ann the annotation
@return the string representation of the annotation | [
"Convert",
"an",
"annotation",
"to",
"a",
"string",
"but",
"mask",
"members",
"named",
"password",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.injection.core/src/com/ibm/wsspi/injectionengine/InjectionBinding.java#L2139-L2176 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.session.cache/src/com/ibm/ws/session/store/cache/CacheHashMap.java | CacheHashMap.overQualLastAccessTimeUpdate | @Override
@FFDCIgnore(Exception.class) //manually logged
protected int overQualLastAccessTimeUpdate(BackedSession sess, long nowTime) {
final boolean trace = TraceComponent.isAnyTracingEnabled();
String id = sess.getId();
int updateCount;
try {
if (trace && tc.isDe... | java | @Override
@FFDCIgnore(Exception.class) //manually logged
protected int overQualLastAccessTimeUpdate(BackedSession sess, long nowTime) {
final boolean trace = TraceComponent.isAnyTracingEnabled();
String id = sess.getId();
int updateCount;
try {
if (trace && tc.isDe... | [
"@",
"Override",
"@",
"FFDCIgnore",
"(",
"Exception",
".",
"class",
")",
"//manually logged",
"protected",
"int",
"overQualLastAccessTimeUpdate",
"(",
"BackedSession",
"sess",
",",
"long",
"nowTime",
")",
"{",
"final",
"boolean",
"trace",
"=",
"TraceComponent",
".... | Attempts to update the last access time ensuring the old value matches.
This verifies that the copy we have in cache is still valid.
@see com.ibm.ws.session.store.common.BackedHashMap#overQualLastAccessTimeUpdate(com.ibm.ws.session.store.common.BackedSession, long) | [
"Attempts",
"to",
"update",
"the",
"last",
"access",
"time",
"ensuring",
"the",
"old",
"value",
"matches",
".",
"This",
"verifies",
"that",
"the",
"copy",
"we",
"have",
"in",
"cache",
"is",
"still",
"valid",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.session.cache/src/com/ibm/ws/session/store/cache/CacheHashMap.java#L829-L884 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.org.apache.cxf.cxf.rt.frontend.jaxrs.3.2/src/org/apache/cxf/jaxrs/impl/MediaTypeHeaderProvider.java | MediaTypeHeaderProvider.typeToString | @Trivial
public static String typeToString(MediaType type, List<String> ignoreParams) {
if (type == null) {
throw new IllegalArgumentException("MediaType parameter is null");
}
StringBuilder sb = new StringBuilder();
sb.append(type.getType()).append('/').append(type.getSu... | java | @Trivial
public static String typeToString(MediaType type, List<String> ignoreParams) {
if (type == null) {
throw new IllegalArgumentException("MediaType parameter is null");
}
StringBuilder sb = new StringBuilder();
sb.append(type.getType()).append('/').append(type.getSu... | [
"@",
"Trivial",
"public",
"static",
"String",
"typeToString",
"(",
"MediaType",
"type",
",",
"List",
"<",
"String",
">",
"ignoreParams",
")",
"{",
"if",
"(",
"type",
"==",
"null",
")",
"{",
"throw",
"new",
"IllegalArgumentException",
"(",
"\"MediaType paramete... | to the implementation | [
"to",
"the",
"implementation"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.org.apache.cxf.cxf.rt.frontend.jaxrs.3.2/src/org/apache/cxf/jaxrs/impl/MediaTypeHeaderProvider.java#L147-L168 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/CompHandshakeFactory.java | CompHandshakeFactory.createHandshakeInstance | private static void createHandshakeInstance() throws Exception {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "createHandshakeInstance");
try {
instance = Class.forName(MfpConstants.COMP_HANDSHAKE_CLASS).newInstance();
} catch (Exception e) {
FFDCFilter.proces... | java | private static void createHandshakeInstance() throws Exception {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) SibTr.entry(tc, "createHandshakeInstance");
try {
instance = Class.forName(MfpConstants.COMP_HANDSHAKE_CLASS).newInstance();
} catch (Exception e) {
FFDCFilter.proces... | [
"private",
"static",
"void",
"createHandshakeInstance",
"(",
")",
"throws",
"Exception",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"SibTr",
".",
"entry",
"(",
"tc",
",",
"\"creat... | Create the singleton ComponentHandshake instance.
@exception Exception The method rethrows any Exception caught during
creaton of the singleton object. | [
"Create",
"the",
"singleton",
"ComponentHandshake",
"instance",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.messaging.common/src/com/ibm/ws/sib/mfp/impl/CompHandshakeFactory.java#L67-L77 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/ChannelFactoryDataImpl.java | ChannelFactoryDataImpl.setProperties | synchronized void setProperties(Map<Object, Object> m) throws ChannelFactoryPropertyIgnoredException {
this.myProperties = m;
if (cf != null) {
cf.updateProperties(m);
}
} | java | synchronized void setProperties(Map<Object, Object> m) throws ChannelFactoryPropertyIgnoredException {
this.myProperties = m;
if (cf != null) {
cf.updateProperties(m);
}
} | [
"synchronized",
"void",
"setProperties",
"(",
"Map",
"<",
"Object",
",",
"Object",
">",
"m",
")",
"throws",
"ChannelFactoryPropertyIgnoredException",
"{",
"this",
".",
"myProperties",
"=",
"m",
";",
"if",
"(",
"cf",
"!=",
"null",
")",
"{",
"cf",
".",
"upda... | internally set the properties associated with this object
@param m
@throws ChannelFactoryPropertyIgnoredException | [
"internally",
"set",
"the",
"properties",
"associated",
"with",
"this",
"object"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/ChannelFactoryDataImpl.java#L104-L110 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/ChannelFactoryDataImpl.java | ChannelFactoryDataImpl.setProperty | synchronized void setProperty(Object key, Object value) throws ChannelFactoryPropertyIgnoredException {
if (null == key) {
throw new ChannelFactoryPropertyIgnoredException("Ignored channel factory property key of null");
}
if (myProperties == null) {
this.myProperties = n... | java | synchronized void setProperty(Object key, Object value) throws ChannelFactoryPropertyIgnoredException {
if (null == key) {
throw new ChannelFactoryPropertyIgnoredException("Ignored channel factory property key of null");
}
if (myProperties == null) {
this.myProperties = n... | [
"synchronized",
"void",
"setProperty",
"(",
"Object",
"key",
",",
"Object",
"value",
")",
"throws",
"ChannelFactoryPropertyIgnoredException",
"{",
"if",
"(",
"null",
"==",
"key",
")",
"{",
"throw",
"new",
"ChannelFactoryPropertyIgnoredException",
"(",
"\"Ignored chann... | Iternally set a property associated with this object
@param key
@param value
@throws ChannelFactoryPropertyIgnoredException | [
"Iternally",
"set",
"a",
"property",
"associated",
"with",
"this",
"object"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/ChannelFactoryDataImpl.java#L119-L130 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/ChannelFactoryDataImpl.java | ChannelFactoryDataImpl.setChannelFactory | synchronized void setChannelFactory(ChannelFactory factory) throws ChannelFactoryException {
if (factory != null && cf != null) {
throw new ChannelFactoryException("ChannelFactory already exists");
}
this.cf = factory;
} | java | synchronized void setChannelFactory(ChannelFactory factory) throws ChannelFactoryException {
if (factory != null && cf != null) {
throw new ChannelFactoryException("ChannelFactory already exists");
}
this.cf = factory;
} | [
"synchronized",
"void",
"setChannelFactory",
"(",
"ChannelFactory",
"factory",
")",
"throws",
"ChannelFactoryException",
"{",
"if",
"(",
"factory",
"!=",
"null",
"&&",
"cf",
"!=",
"null",
")",
"{",
"throw",
"new",
"ChannelFactoryException",
"(",
"\"ChannelFactory al... | Internally set the channel factory in this data object.
@param factory
@throws ChannelFactoryException | [
"Internally",
"set",
"the",
"channel",
"factory",
"in",
"this",
"data",
"object",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.channelfw/src/com/ibm/ws/channelfw/internal/ChannelFactoryDataImpl.java#L147-L152 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.jca.inbound.security/src/com/ibm/ws/jca/security/internal/SecWorkContextHandler.java | SecWorkContextHandler.dissociate | public void dissociate() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "dissociate");
}
if (WSSecurityHelper.isServerSecurityEnabled()) {
J2CSecurityHelper.removeRunAsSubject();
}
if (TraceComponent.isAnyTracingEnabled()... | java | public void dissociate() {
if (TraceComponent.isAnyTracingEnabled() && tc.isEntryEnabled()) {
Tr.entry(tc, "dissociate");
}
if (WSSecurityHelper.isServerSecurityEnabled()) {
J2CSecurityHelper.removeRunAsSubject();
}
if (TraceComponent.isAnyTracingEnabled()... | [
"public",
"void",
"dissociate",
"(",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"{",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"dissociate\"",
")",
";",
"}",
"if",
"(",
"... | This method is called by the WorkProxy class to dissociate the inflown
SecurityContext from the workmanager thread after it has run the work
By the time this method is called, the WSSubject.doAs method call would
have exited and the runAs subject would be dissociated. So all that is
left to do here is to clear the Thre... | [
"This",
"method",
"is",
"called",
"by",
"the",
"WorkProxy",
"class",
"to",
"dissociate",
"the",
"inflown",
"SecurityContext",
"from",
"the",
"workmanager",
"thread",
"after",
"it",
"has",
"run",
"the",
"work",
"By",
"the",
"time",
"this",
"method",
"is",
"ca... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.jca.inbound.security/src/com/ibm/ws/jca/security/internal/SecWorkContextHandler.java#L252-L262 | train |
OpenLiberty/open-liberty | dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/ws/BatchStatusValidator.java | BatchStatusValidator.validateStatusAtInstanceRestart | public static void validateStatusAtInstanceRestart(long jobInstanceId, Properties restartJobParameters) throws JobRestartException, JobExecutionAlreadyCompleteException {
IPersistenceManagerService iPers = ServicesManagerStaticAnchor.getServicesManager().getPersistenceManagerService();
WSJobInstance jo... | java | public static void validateStatusAtInstanceRestart(long jobInstanceId, Properties restartJobParameters) throws JobRestartException, JobExecutionAlreadyCompleteException {
IPersistenceManagerService iPers = ServicesManagerStaticAnchor.getServicesManager().getPersistenceManagerService();
WSJobInstance jo... | [
"public",
"static",
"void",
"validateStatusAtInstanceRestart",
"(",
"long",
"jobInstanceId",
",",
"Properties",
"restartJobParameters",
")",
"throws",
"JobRestartException",
",",
"JobExecutionAlreadyCompleteException",
"{",
"IPersistenceManagerService",
"iPers",
"=",
"ServicesM... | validates job is restart-able,
validates the jobInstance is in failed or stopped | [
"validates",
"job",
"is",
"restart",
"-",
"able",
"validates",
"the",
"jobInstance",
"is",
"in",
"failed",
"or",
"stopped"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.jbatch.container/src/com/ibm/jbatch/container/ws/BatchStatusValidator.java#L48-L58 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/DataItem.java | DataItem.write | protected void write(WriteableLogRecord logRecord)
{
if (tc.isEntryEnabled()) Tr.entry(tc, "write", new Object[]{logRecord, this});
// Retrieve the data stored within this data item. This will either come from
// the cached in memory copy or retrieved from disk.
byte[] data = this.g... | java | protected void write(WriteableLogRecord logRecord)
{
if (tc.isEntryEnabled()) Tr.entry(tc, "write", new Object[]{logRecord, this});
// Retrieve the data stored within this data item. This will either come from
// the cached in memory copy or retrieved from disk.
byte[] data = this.g... | [
"protected",
"void",
"write",
"(",
"WriteableLogRecord",
"logRecord",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"write\"",
",",
"new",
"Object",
"[",
"]",
"{",
"logRecord",
",",
"this",
"}",
... | Instructs this DataItem to write its data to the given WriteableLogRecord.
The write involves writing the length of the data as an int followed by
the data itself. The data is written at the log record's current position.
@param logRecord The WriteableLogRecord to write the enapsulated data to. | [
"Instructs",
"this",
"DataItem",
"to",
"write",
"its",
"data",
"to",
"the",
"given",
"WriteableLogRecord",
".",
"The",
"write",
"involves",
"writing",
"the",
"length",
"of",
"the",
"data",
"as",
"an",
"int",
"followed",
"by",
"the",
"data",
"itself",
".",
... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/DataItem.java#L187-L233 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/DataItem.java | DataItem.getData | protected byte[] getData()
{
if (tc.isEntryEnabled()) Tr.entry(tc, "getData", this);
byte[] data = _data;
if (data != null)
{
// There is data cached in memory. Simply use this directly.
if (tc.isDebugEnabled()) Tr.debug(tc, "Cached data located");
}
... | java | protected byte[] getData()
{
if (tc.isEntryEnabled()) Tr.entry(tc, "getData", this);
byte[] data = _data;
if (data != null)
{
// There is data cached in memory. Simply use this directly.
if (tc.isDebugEnabled()) Tr.debug(tc, "Cached data located");
}
... | [
"protected",
"byte",
"[",
"]",
"getData",
"(",
")",
"{",
"if",
"(",
"tc",
".",
"isEntryEnabled",
"(",
")",
")",
"Tr",
".",
"entry",
"(",
"tc",
",",
"\"getData\"",
",",
"this",
")",
";",
"byte",
"[",
"]",
"data",
"=",
"_data",
";",
"if",
"(",
"d... | Returns the data encapsulated by this DataItem instance. If this DataItem
is memory back the in memory copy of the data is always returned. If the
DataItem is file backed and it has been written to disk the data is
retrieved from disk and then returned.
@return This DataItem instance's data | [
"Returns",
"the",
"data",
"encapsulated",
"by",
"this",
"DataItem",
"instance",
".",
"If",
"this",
"DataItem",
"is",
"memory",
"back",
"the",
"in",
"memory",
"copy",
"of",
"the",
"data",
"is",
"always",
"returned",
".",
"If",
"the",
"DataItem",
"is",
"file... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.recoverylog/src/com/ibm/ws/recoverylog/spi/DataItem.java#L244-L288 | train |
OpenLiberty/open-liberty | dev/com.ibm.websphere.security.impl/src/com/ibm/ws/security/intfc/internal/WSSecurityServiceImpl.java | WSSecurityServiceImpl.getActiveUserRegistry | private UserRegistry getActiveUserRegistry() throws WSSecurityException {
final String METHOD = "getUserRegistry";
UserRegistry activeUserRegistry = null;
try {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, METHOD + " securityServiceR... | java | private UserRegistry getActiveUserRegistry() throws WSSecurityException {
final String METHOD = "getUserRegistry";
UserRegistry activeUserRegistry = null;
try {
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled()) {
Tr.debug(tc, METHOD + " securityServiceR... | [
"private",
"UserRegistry",
"getActiveUserRegistry",
"(",
")",
"throws",
"WSSecurityException",
"{",
"final",
"String",
"METHOD",
"=",
"\"getUserRegistry\"",
";",
"UserRegistry",
"activeUserRegistry",
"=",
"null",
";",
"try",
"{",
"if",
"(",
"TraceComponent",
".",
"i... | Returns the active UserRegistry. If the active user registry is an instance of
com.ibm.ws.security.registry.UserRegistry, then it will be wrapped. Otherwise,
if the active user registry is an instance of CustomUserRegistryWrapper, then the
underlying com.ibm.websphere.security.UserRegistry will be returned.
@return Us... | [
"Returns",
"the",
"active",
"UserRegistry",
".",
"If",
"the",
"active",
"user",
"registry",
"is",
"an",
"instance",
"of",
"com",
".",
"ibm",
".",
"ws",
".",
"security",
".",
"registry",
".",
"UserRegistry",
"then",
"it",
"will",
"be",
"wrapped",
".",
"Ot... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.websphere.security.impl/src/com/ibm/ws/security/intfc/internal/WSSecurityServiceImpl.java#L156-L193 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/SessionBeanO.java | SessionBeanO.getUserTransaction | @Override
public synchronized UserTransaction getUserTransaction()
{
// d367572.1 start
if (state == PRE_CREATE)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "Incorrect state: " + getStateName(state));
throw new I... | java | @Override
public synchronized UserTransaction getUserTransaction()
{
// d367572.1 start
if (state == PRE_CREATE)
{
if (TraceComponent.isAnyTracingEnabled() && tc.isDebugEnabled())
Tr.debug(tc, "Incorrect state: " + getStateName(state));
throw new I... | [
"@",
"Override",
"public",
"synchronized",
"UserTransaction",
"getUserTransaction",
"(",
")",
"{",
"// d367572.1 start",
"if",
"(",
"state",
"==",
"PRE_CREATE",
")",
"{",
"if",
"(",
"TraceComponent",
".",
"isAnyTracingEnabled",
"(",
")",
"&&",
"tc",
".",
"isDebu... | Get user transaction object that bean can use to demarcate
transactions. | [
"Get",
"user",
"transaction",
"object",
"that",
"bean",
"can",
"use",
"to",
"demarcate",
"transactions",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/SessionBeanO.java#L221-L235 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/SessionBeanO.java | SessionBeanO.getContextData | @Override
public Map<String, Object> getContextData()
{
// Calling getContextData is not allowed from setSessionContext.
if (state == PRE_CREATE || state == DESTROYED)
{
IllegalStateException ise;
ise = new IllegalStateException("SessionBean: getContextData " +
... | java | @Override
public Map<String, Object> getContextData()
{
// Calling getContextData is not allowed from setSessionContext.
if (state == PRE_CREATE || state == DESTROYED)
{
IllegalStateException ise;
ise = new IllegalStateException("SessionBean: getContextData " +
... | [
"@",
"Override",
"public",
"Map",
"<",
"String",
",",
"Object",
">",
"getContextData",
"(",
")",
"{",
"// Calling getContextData is not allowed from setSessionContext.",
"if",
"(",
"state",
"==",
"PRE_CREATE",
"||",
"state",
"==",
"DESTROYED",
")",
"{",
"IllegalStat... | F743-21028 | [
"F743",
"-",
"21028"
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/SessionBeanO.java#L243-L261 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/SessionBeanO.java | SessionBeanO.canBeRemoved | protected void canBeRemoved()
throws RemoveException
{
ContainerTx tx = container.getCurrentContainerTx();//d171654
//-------------------------------------------------------------
// If there is no current transaction then we are removing a
// TX_BEAN_MANAGED ses... | java | protected void canBeRemoved()
throws RemoveException
{
ContainerTx tx = container.getCurrentContainerTx();//d171654
//-------------------------------------------------------------
// If there is no current transaction then we are removing a
// TX_BEAN_MANAGED ses... | [
"protected",
"void",
"canBeRemoved",
"(",
")",
"throws",
"RemoveException",
"{",
"ContainerTx",
"tx",
"=",
"container",
".",
"getCurrentContainerTx",
"(",
")",
";",
"//d171654",
"//-------------------------------------------------------------",
"// If there is no current transa... | Checks if beanO can be removed. Throws RemoveException if
cannot be removed. | [
"Checks",
"if",
"beanO",
"can",
"be",
"removed",
".",
"Throws",
"RemoveException",
"if",
"cannot",
"be",
"removed",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.ejbcontainer.core/src/com/ibm/ejs/container/SessionBeanO.java#L267-L293 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.toKey | @Trivial
private static String toKey(String name, String filter, SearchControls cons) {
int length = name.length() + filter.length() + 100;
StringBuffer key = new StringBuffer(length);
key.append(name);
key.append("|");
key.append(filter);
key.append("|");
key... | java | @Trivial
private static String toKey(String name, String filter, SearchControls cons) {
int length = name.length() + filter.length() + 100;
StringBuffer key = new StringBuffer(length);
key.append(name);
key.append("|");
key.append(filter);
key.append("|");
key... | [
"@",
"Trivial",
"private",
"static",
"String",
"toKey",
"(",
"String",
"name",
",",
"String",
"filter",
",",
"SearchControls",
"cons",
")",
"{",
"int",
"length",
"=",
"name",
".",
"length",
"(",
")",
"+",
"filter",
".",
"length",
"(",
")",
"+",
"100",
... | Returns a hash key for the name|filter|cons tuple used in the search
query-results cache.
@param name The name of the object from which to retrieve attributes.
@param filter the filter used in the search.
@param cons The search controls used in the search.
@throws NamingException If a naming exception is encountered. | [
"Returns",
"a",
"hash",
"key",
"for",
"the",
"name|filter|cons",
"tuple",
"used",
"in",
"the",
"search",
"query",
"-",
"results",
"cache",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L209-L231 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.toKey | @Trivial
private static String toKey(String name, String filterExpr, Object[] filterArgs, SearchControls cons) {
int length = name.length() + filterExpr.length() + filterArgs.length + 200;
StringBuffer key = new StringBuffer(length);
key.append(name);
key.append("|");
key.app... | java | @Trivial
private static String toKey(String name, String filterExpr, Object[] filterArgs, SearchControls cons) {
int length = name.length() + filterExpr.length() + filterArgs.length + 200;
StringBuffer key = new StringBuffer(length);
key.append(name);
key.append("|");
key.app... | [
"@",
"Trivial",
"private",
"static",
"String",
"toKey",
"(",
"String",
"name",
",",
"String",
"filterExpr",
",",
"Object",
"[",
"]",
"filterArgs",
",",
"SearchControls",
"cons",
")",
"{",
"int",
"length",
"=",
"name",
".",
"length",
"(",
")",
"+",
"filte... | Returns a hash key for the name|filterExpr|filterArgs|cons tuple used in the search
query-results cache.
@param name The name of the context or object to search
@param filterExpr the filter expression used in the search.
@param filterArgs the filter arguments used in the search.
@param cons The search controls used in... | [
"Returns",
"a",
"hash",
"key",
"for",
"the",
"name|filterExpr|filterArgs|cons",
"tuple",
"used",
"in",
"the",
"search",
"query",
"-",
"results",
"cache",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L243-L262 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.getNameParser | public NameParser getNameParser() throws WIMException {
if (iNameParser == null) {
TimedDirContext ctx = iContextManager.getDirContext();
try {
try {
iNameParser = ctx.getNameParser("");
} catch (NamingException e) {
... | java | public NameParser getNameParser() throws WIMException {
if (iNameParser == null) {
TimedDirContext ctx = iContextManager.getDirContext();
try {
try {
iNameParser = ctx.getNameParser("");
} catch (NamingException e) {
... | [
"public",
"NameParser",
"getNameParser",
"(",
")",
"throws",
"WIMException",
"{",
"if",
"(",
"iNameParser",
"==",
"null",
")",
"{",
"TimedDirContext",
"ctx",
"=",
"iContextManager",
".",
"getDirContext",
"(",
")",
";",
"try",
"{",
"try",
"{",
"iNameParser",
... | Retrieves the parser associated with the root context.
@return The {@link NameParser}.
@throws WIMException If the {@link NameParser} could not be queried from the LDAP server. | [
"Retrieves",
"the",
"parser",
"associated",
"with",
"the",
"root",
"context",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L270-L291 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.initializeCaches | private void initializeCaches(Map<String, Object> configProps) {
final String METHODNAME = "initializeCaches(DataObject)";
/*
* initialize the cache pool names
*/
iAttrsCacheName = iReposId + "/" + iAttrsCacheName;
iSearchResultsCacheName = iReposId + "/" + iSearchResu... | java | private void initializeCaches(Map<String, Object> configProps) {
final String METHODNAME = "initializeCaches(DataObject)";
/*
* initialize the cache pool names
*/
iAttrsCacheName = iReposId + "/" + iAttrsCacheName;
iSearchResultsCacheName = iReposId + "/" + iSearchResu... | [
"private",
"void",
"initializeCaches",
"(",
"Map",
"<",
"String",
",",
"Object",
">",
"configProps",
")",
"{",
"final",
"String",
"METHODNAME",
"=",
"\"initializeCaches(DataObject)\"",
";",
"/*\n * initialize the cache pool names\n */",
"iAttrsCacheName",
"=... | Initialize search and attribute caches.
@param configProps Configuration properties for the component. | [
"Initialize",
"search",
"and",
"attribute",
"caches",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L517-L602 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.createSearchResultsCache | private void createSearchResultsCache() {
final String METHODNAME = "createSearchResultsCache";
if (iSearchResultsCacheEnabled) {
if (FactoryManager.getCacheUtil().isCacheAvailable()) {
iSearchResultsCache = FactoryManager.getCacheUtil().initialize("SearchResultsCache", iSea... | java | private void createSearchResultsCache() {
final String METHODNAME = "createSearchResultsCache";
if (iSearchResultsCacheEnabled) {
if (FactoryManager.getCacheUtil().isCacheAvailable()) {
iSearchResultsCache = FactoryManager.getCacheUtil().initialize("SearchResultsCache", iSea... | [
"private",
"void",
"createSearchResultsCache",
"(",
")",
"{",
"final",
"String",
"METHODNAME",
"=",
"\"createSearchResultsCache\"",
";",
"if",
"(",
"iSearchResultsCacheEnabled",
")",
"{",
"if",
"(",
"FactoryManager",
".",
"getCacheUtil",
"(",
")",
".",
"isCacheAvail... | Method to create the search results cache, if configured. | [
"Method",
"to",
"create",
"the",
"search",
"results",
"cache",
"if",
"configured",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L607-L625 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.createAttributesCache | private void createAttributesCache() {
final String METHODNAME = "createAttributesCache";
if (iAttrsCacheEnabled) {
if (FactoryManager.getCacheUtil().isCacheAvailable()) {
iAttrsCache = FactoryManager.getCacheUtil().initialize("AttributesCache", iAttrsCacheSize, iAttrsCacheS... | java | private void createAttributesCache() {
final String METHODNAME = "createAttributesCache";
if (iAttrsCacheEnabled) {
if (FactoryManager.getCacheUtil().isCacheAvailable()) {
iAttrsCache = FactoryManager.getCacheUtil().initialize("AttributesCache", iAttrsCacheSize, iAttrsCacheS... | [
"private",
"void",
"createAttributesCache",
"(",
")",
"{",
"final",
"String",
"METHODNAME",
"=",
"\"createAttributesCache\"",
";",
"if",
"(",
"iAttrsCacheEnabled",
")",
"{",
"if",
"(",
"FactoryManager",
".",
"getCacheUtil",
"(",
")",
".",
"isCacheAvailable",
"(",
... | Method to create the attributes cache, if configured. | [
"Method",
"to",
"create",
"the",
"attributes",
"cache",
"if",
"configured",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L630-L648 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.invalidateAttributes | public void invalidateAttributes(String DN, String extId, String uniqueName) {
final String METHODNAME = "invalidateAttributes(String, String, String)";
if (getAttributesCache() != null) {
if (DN != null) {
getAttributesCache().invalidate(toKey(DN));
}
... | java | public void invalidateAttributes(String DN, String extId, String uniqueName) {
final String METHODNAME = "invalidateAttributes(String, String, String)";
if (getAttributesCache() != null) {
if (DN != null) {
getAttributesCache().invalidate(toKey(DN));
}
... | [
"public",
"void",
"invalidateAttributes",
"(",
"String",
"DN",
",",
"String",
"extId",
",",
"String",
"uniqueName",
")",
"{",
"final",
"String",
"METHODNAME",
"=",
"\"invalidateAttributes(String, String, String)\"",
";",
"if",
"(",
"getAttributesCache",
"(",
")",
"!... | Method to invalidate the specified entry from the attributes cache. One or all
parameters can be set in a single call. If all parameters are null, then this
operation no-ops.
@param DN The distinguished name of the entity to invalidate attributes on.
@param extId The external ID of the entity to invalidate attributes ... | [
"Method",
"to",
"invalidate",
"the",
"specified",
"entry",
"from",
"the",
"attributes",
"cache",
".",
"One",
"or",
"all",
"parameters",
"can",
"be",
"set",
"in",
"a",
"single",
"call",
".",
"If",
"all",
"parameters",
"are",
"null",
"then",
"this",
"operati... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L683-L703 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.getEntityByIdentifier | public LdapEntry getEntityByIdentifier(IdentifierType id, List<String> inEntityTypes, List<String> propNames, boolean getMbrshipAttr,
boolean getMbrAttr) throws WIMException {
return getEntityByIdentifier(id.getExternalName(), id.getExternalId(), id.getUniqueName(),
... | java | public LdapEntry getEntityByIdentifier(IdentifierType id, List<String> inEntityTypes, List<String> propNames, boolean getMbrshipAttr,
boolean getMbrAttr) throws WIMException {
return getEntityByIdentifier(id.getExternalName(), id.getExternalId(), id.getUniqueName(),
... | [
"public",
"LdapEntry",
"getEntityByIdentifier",
"(",
"IdentifierType",
"id",
",",
"List",
"<",
"String",
">",
"inEntityTypes",
",",
"List",
"<",
"String",
">",
"propNames",
",",
"boolean",
"getMbrshipAttr",
",",
"boolean",
"getMbrAttr",
")",
"throws",
"WIMExceptio... | Get an LDAP entity by an identifier.
@param id An {@link IdentifierType} entity.
@param inEntityTypes The acceptable entity types to look up.
@param propNames The property names to return in the LdapEntry.
@param getMbrshipAttr Whether to return the membership attribute.
@param getMbrAttr Whether to return the member ... | [
"Get",
"an",
"LDAP",
"entity",
"by",
"an",
"identifier",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L759-L763 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.getEntityByIdentifier | public LdapEntry getEntityByIdentifier(String dn, String extId, String uniqueName, List<String> inEntityTypes,
List<String> propNames, boolean getMbrshipAttr, boolean getMbrAttr) throws WIMException {
String[] attrIds = iLdapConfigMgr.getAttributeNames(inEntityTypes, p... | java | public LdapEntry getEntityByIdentifier(String dn, String extId, String uniqueName, List<String> inEntityTypes,
List<String> propNames, boolean getMbrshipAttr, boolean getMbrAttr) throws WIMException {
String[] attrIds = iLdapConfigMgr.getAttributeNames(inEntityTypes, p... | [
"public",
"LdapEntry",
"getEntityByIdentifier",
"(",
"String",
"dn",
",",
"String",
"extId",
",",
"String",
"uniqueName",
",",
"List",
"<",
"String",
">",
"inEntityTypes",
",",
"List",
"<",
"String",
">",
"propNames",
",",
"boolean",
"getMbrshipAttr",
",",
"bo... | Get an LDAP entity by an identifier. One of 'dn', 'extId' or 'uniqueName' must be non-null.
@param dn The distinguished name for the entity.
@param extId The external name for the entity.
@param uniqueName The unique name for the entity.
@param inEntityTypes The acceptable entity types to look up.
@param propNames The... | [
"Get",
"an",
"LDAP",
"entity",
"by",
"an",
"identifier",
".",
"One",
"of",
"dn",
"extId",
"or",
"uniqueName",
"must",
"be",
"non",
"-",
"null",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L778-L820 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.getUniqueName | private String getUniqueName(String dn, String entityType, Attributes attrs) throws WIMException {
final String METHODNAME = "getUniqueName";
String uniqueName = null;
dn = iLdapConfigMgr.switchToNode(dn);
if (iLdapConfigMgr.needTranslateRDN() && iLdapConfigMgr.needTranslateRDN(entityTyp... | java | private String getUniqueName(String dn, String entityType, Attributes attrs) throws WIMException {
final String METHODNAME = "getUniqueName";
String uniqueName = null;
dn = iLdapConfigMgr.switchToNode(dn);
if (iLdapConfigMgr.needTranslateRDN() && iLdapConfigMgr.needTranslateRDN(entityTyp... | [
"private",
"String",
"getUniqueName",
"(",
"String",
"dn",
",",
"String",
"entityType",
",",
"Attributes",
"attrs",
")",
"throws",
"WIMException",
"{",
"final",
"String",
"METHODNAME",
"=",
"\"getUniqueName\"",
";",
"String",
"uniqueName",
"=",
"null",
";",
"dn"... | Get the unique name for the specified distinguished name.
@param dn The distinguished name.
@param entityType The entity type for the distinguished name.
@param attrs The attributes for the entity.
@return The unique name.
@throws WIMException If there was an error retrieving portions of the unique name. | [
"Get",
"the",
"unique",
"name",
"for",
"the",
"specified",
"distinguished",
"name",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L831-L895 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.getAttributes | @FFDCIgnore({ NamingException.class, NameNotFoundException.class })
private Attributes getAttributes(String name, String[] attrIds) throws WIMException {
Attributes attributes = null;
if (iLdapConfigMgr.getUseEncodingInSearchExpression() != null)
name = LdapHelper.encodeAttribute(name, ... | java | @FFDCIgnore({ NamingException.class, NameNotFoundException.class })
private Attributes getAttributes(String name, String[] attrIds) throws WIMException {
Attributes attributes = null;
if (iLdapConfigMgr.getUseEncodingInSearchExpression() != null)
name = LdapHelper.encodeAttribute(name, ... | [
"@",
"FFDCIgnore",
"(",
"{",
"NamingException",
".",
"class",
",",
"NameNotFoundException",
".",
"class",
"}",
")",
"private",
"Attributes",
"getAttributes",
"(",
"String",
"name",
",",
"String",
"[",
"]",
"attrIds",
")",
"throws",
"WIMException",
"{",
"Attrib... | Get the specified attributes for the distinguished name.
@param name The distinguished name.
@param attrIds The attribute IDs to retrieve.
@return The {@link Attributes} instance.
@throws WIMException If there was an error retrieving the attributes from the LDAP server. | [
"Get",
"the",
"specified",
"attributes",
"for",
"the",
"distinguished",
"name",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L905-L945 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.checkAttributesCache | public Attributes checkAttributesCache(String name, String[] attrIds) throws WIMException {
final String METHODNAME = "checkAttributesCache";
Attributes attributes = null;
// If attribute cache is available, look up cache first
if (getAttributesCache() != null) {
String key ... | java | public Attributes checkAttributesCache(String name, String[] attrIds) throws WIMException {
final String METHODNAME = "checkAttributesCache";
Attributes attributes = null;
// If attribute cache is available, look up cache first
if (getAttributesCache() != null) {
String key ... | [
"public",
"Attributes",
"checkAttributesCache",
"(",
"String",
"name",
",",
"String",
"[",
"]",
"attrIds",
")",
"throws",
"WIMException",
"{",
"final",
"String",
"METHODNAME",
"=",
"\"checkAttributesCache\"",
";",
"Attributes",
"attributes",
"=",
"null",
";",
"// ... | Check the attributes cache for the attributes on the distinguished name.
If any of the attributes are missing, a call to the LDAP server will be made to retrieve them.
@param name The distinguished name to look up the attributes in the cache for.
@param attrIds The attributes to retrieve.
@return The {@link Attributes... | [
"Check",
"the",
"attributes",
"cache",
"for",
"the",
"attributes",
"on",
"the",
"distinguished",
"name",
".",
"If",
"any",
"of",
"the",
"attributes",
"are",
"missing",
"a",
"call",
"to",
"the",
"LDAP",
"server",
"will",
"be",
"made",
"to",
"retrieve",
"the... | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L993-L1048 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.updateAttributesCache | private void updateAttributesCache(String uniqueNameKey, String dn, Attributes newAttrs, String[] attrIds) {
final String METHODNAME = "updateAttributesCache(key,dn,newAttrs)";
/*
* Add uniqueName to DN mapping to cache
*/
getAttributesCache().put(uniqueNameKey, dn, 1, iAttrsC... | java | private void updateAttributesCache(String uniqueNameKey, String dn, Attributes newAttrs, String[] attrIds) {
final String METHODNAME = "updateAttributesCache(key,dn,newAttrs)";
/*
* Add uniqueName to DN mapping to cache
*/
getAttributesCache().put(uniqueNameKey, dn, 1, iAttrsC... | [
"private",
"void",
"updateAttributesCache",
"(",
"String",
"uniqueNameKey",
",",
"String",
"dn",
",",
"Attributes",
"newAttrs",
",",
"String",
"[",
"]",
"attrIds",
")",
"{",
"final",
"String",
"METHODNAME",
"=",
"\"updateAttributesCache(key,dn,newAttrs)\"",
";",
"/*... | Update the attributes cache by adding a mapping of the unique name to distinguished name
and mapping the distinguished name to the updated attributes.
@param uniqueNameKey The unique name to map the distinguished name to.
@param dn The distinguished name to map to the unique name. This will also be used to map
the att... | [
"Update",
"the",
"attributes",
"cache",
"by",
"adding",
"a",
"mapping",
"of",
"the",
"unique",
"name",
"to",
"distinguished",
"name",
"and",
"mapping",
"the",
"distinguished",
"name",
"to",
"the",
"updated",
"attributes",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L1073-L1095 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.updateAttributesCache | private void updateAttributesCache(String key, Attributes missAttrs, Attributes cachedAttrs, String[] missAttrIds) {
final String METHODNAME = "updateAttributesCache(key,missAttrs,cachedAttrs,missAttrIds)";
if (missAttrIds != null) {
boolean newattr = false; // differentiate between a new en... | java | private void updateAttributesCache(String key, Attributes missAttrs, Attributes cachedAttrs, String[] missAttrIds) {
final String METHODNAME = "updateAttributesCache(key,missAttrs,cachedAttrs,missAttrIds)";
if (missAttrIds != null) {
boolean newattr = false; // differentiate between a new en... | [
"private",
"void",
"updateAttributesCache",
"(",
"String",
"key",
",",
"Attributes",
"missAttrs",
",",
"Attributes",
"cachedAttrs",
",",
"String",
"[",
"]",
"missAttrIds",
")",
"{",
"final",
"String",
"METHODNAME",
"=",
"\"updateAttributesCache(key,missAttrs,cachedAttrs... | Update the cached attributes for the specified key. Only attribute IDs that are in the
"missAttrIds" array will be added into the cached attributes.
@param key The key for the cached attributes. This is usually the distinguished name.
@param missAttrs The missing/new attributes.
@param cachedAttrs The cached attribute... | [
"Update",
"the",
"cached",
"attributes",
"for",
"the",
"specified",
"key",
".",
"Only",
"attribute",
"IDs",
"that",
"are",
"in",
"the",
"missAttrIds",
"array",
"will",
"be",
"added",
"into",
"the",
"cached",
"attributes",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L1106-L1162 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.updateAttributesCache | private void updateAttributesCache(String key, Attributes missAttrs, Attributes cachedAttrs) {
final String METHODNAME = "updateAttributeCache(key,missAttrs,cachedAttrs)";
if (missAttrs.size() > 0) {
boolean newAttr = false; // differentiate between a new entry and an entry we'll update so w... | java | private void updateAttributesCache(String key, Attributes missAttrs, Attributes cachedAttrs) {
final String METHODNAME = "updateAttributeCache(key,missAttrs,cachedAttrs)";
if (missAttrs.size() > 0) {
boolean newAttr = false; // differentiate between a new entry and an entry we'll update so w... | [
"private",
"void",
"updateAttributesCache",
"(",
"String",
"key",
",",
"Attributes",
"missAttrs",
",",
"Attributes",
"cachedAttrs",
")",
"{",
"final",
"String",
"METHODNAME",
"=",
"\"updateAttributeCache(key,missAttrs,cachedAttrs)\"",
";",
"if",
"(",
"missAttrs",
".",
... | Update the attributes cache for the specified key.
@param key The key for the cached attributes. This is usually the distinguished name.
@param missAttrs The missing/new attributes.
@param cachedAttrs The cached attributes. | [
"Update",
"the",
"attributes",
"cache",
"for",
"the",
"specified",
"key",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L1171-L1199 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.checkSearchCache | private NamingEnumeration<SearchResult> checkSearchCache(String name, String filterExpr, Object[] filterArgs, SearchControls cons) throws WIMException {
final String METHODNAME = "checkSearchCache";
NamingEnumeration<SearchResult> neu = null;
if (getSearchResultsCache() != null) {
St... | java | private NamingEnumeration<SearchResult> checkSearchCache(String name, String filterExpr, Object[] filterArgs, SearchControls cons) throws WIMException {
final String METHODNAME = "checkSearchCache";
NamingEnumeration<SearchResult> neu = null;
if (getSearchResultsCache() != null) {
St... | [
"private",
"NamingEnumeration",
"<",
"SearchResult",
">",
"checkSearchCache",
"(",
"String",
"name",
",",
"String",
"filterExpr",
",",
"Object",
"[",
"]",
"filterArgs",
",",
"SearchControls",
"cons",
")",
"throws",
"WIMException",
"{",
"final",
"String",
"METHODNA... | Check the search cache for previously performed searches. If the result is not cached,
query the LDAP server.
@param name The name of the context or object to search
@param filterExpr the filter expression used in the search.
@param filterArgs the filter arguments used in the search.
@param cons The search controls us... | [
"Check",
"the",
"search",
"cache",
"for",
"previously",
"performed",
"searches",
".",
"If",
"the",
"result",
"is",
"not",
"cached",
"query",
"the",
"LDAP",
"server",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L1233-L1262 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.updateSearchCache | @FFDCIgnore(NamingException.class)
private NamingEnumeration<SearchResult> updateSearchCache(String searchBase, String key, NamingEnumeration<SearchResult> neu,
String[] reqAttrIds) throws WIMSystemException {
final String METHODNAME = "updateSea... | java | @FFDCIgnore(NamingException.class)
private NamingEnumeration<SearchResult> updateSearchCache(String searchBase, String key, NamingEnumeration<SearchResult> neu,
String[] reqAttrIds) throws WIMSystemException {
final String METHODNAME = "updateSea... | [
"@",
"FFDCIgnore",
"(",
"NamingException",
".",
"class",
")",
"private",
"NamingEnumeration",
"<",
"SearchResult",
">",
"updateSearchCache",
"(",
"String",
"searchBase",
",",
"String",
"key",
",",
"NamingEnumeration",
"<",
"SearchResult",
">",
"neu",
",",
"String"... | Update the search cache with search results.
@param searchBase The base entry the search was made from.
@param key The key for the entry in the search cache.
@param neu The search results.
@param reqAttrIds The attribute IDs that were requested.
@return The {@link CachedNamingEnumeration} with the original search resu... | [
"Update",
"the",
"search",
"cache",
"with",
"search",
"results",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L1274-L1316 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.getDynamicGroups | public Map<String, LdapEntry> getDynamicGroups(String bases[], List<String> propNames, boolean getMbrshipAttr) throws WIMException {
Map<String, LdapEntry> dynaGrps = new HashMap<String, LdapEntry>();
String[] attrIds = iLdapConfigMgr.getAttributeNames(iLdapConfigMgr.getGroupTypes(), propNames, getMbrsh... | java | public Map<String, LdapEntry> getDynamicGroups(String bases[], List<String> propNames, boolean getMbrshipAttr) throws WIMException {
Map<String, LdapEntry> dynaGrps = new HashMap<String, LdapEntry>();
String[] attrIds = iLdapConfigMgr.getAttributeNames(iLdapConfigMgr.getGroupTypes(), propNames, getMbrsh... | [
"public",
"Map",
"<",
"String",
",",
"LdapEntry",
">",
"getDynamicGroups",
"(",
"String",
"bases",
"[",
"]",
",",
"List",
"<",
"String",
">",
"propNames",
",",
"boolean",
"getMbrshipAttr",
")",
"throws",
"WIMException",
"{",
"Map",
"<",
"String",
",",
"Lda... | Get dynamic groups.
@param bases Search bases.
@param propNames Properties to return.
@param getMbrshipAttr Whether to request the membership attribute.
@return Map of group distinguished names to {@link LdapEntry}.
@throws WIMException If there was an error resolving the dynamic groups from the LDAP server. | [
"Get",
"dynamic",
"groups",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L1647-L1676 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.isMemberInURLQuery | public boolean isMemberInURLQuery(LdapURL[] urls, String dn) throws WIMException {
boolean result = false;
String[] attrIds = {};
String rdn = LdapHelper.getRDN(dn);
if (urls != null) {
for (int i = 0; i < urls.length; i++) {
LdapURL ldapURL = urls[i];
... | java | public boolean isMemberInURLQuery(LdapURL[] urls, String dn) throws WIMException {
boolean result = false;
String[] attrIds = {};
String rdn = LdapHelper.getRDN(dn);
if (urls != null) {
for (int i = 0; i < urls.length; i++) {
LdapURL ldapURL = urls[i];
... | [
"public",
"boolean",
"isMemberInURLQuery",
"(",
"LdapURL",
"[",
"]",
"urls",
",",
"String",
"dn",
")",
"throws",
"WIMException",
"{",
"boolean",
"result",
"=",
"false",
";",
"String",
"[",
"]",
"attrIds",
"=",
"{",
"}",
";",
"String",
"rdn",
"=",
"LdapHe... | Determine whether the distinguished name is in the LDAP URL query.
@param urls The {@link LdapURL}s to query.
@param dn The distinguished name to check.
@return True if the distinguished name is resolved by one of the {@link LdapURL}s.
@throws WIMException If there were issues resolving any of the LDAP URLs. | [
"Determine",
"whether",
"the",
"distinguished",
"name",
"is",
"in",
"the",
"LDAP",
"URL",
"query",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L1686-L1736 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.searchByOperationalAttribute | public SearchResult searchByOperationalAttribute(String dn, String filter, List<String> inEntityTypes, List<String> propNames, String oprAttribute) throws WIMException {
String inEntityType = null;
List<String> supportedProps = propNames;
if (inEntityTypes != null && inEntityTypes.size() > 0) {
... | java | public SearchResult searchByOperationalAttribute(String dn, String filter, List<String> inEntityTypes, List<String> propNames, String oprAttribute) throws WIMException {
String inEntityType = null;
List<String> supportedProps = propNames;
if (inEntityTypes != null && inEntityTypes.size() > 0) {
... | [
"public",
"SearchResult",
"searchByOperationalAttribute",
"(",
"String",
"dn",
",",
"String",
"filter",
",",
"List",
"<",
"String",
">",
"inEntityTypes",
",",
"List",
"<",
"String",
">",
"propNames",
",",
"String",
"oprAttribute",
")",
"throws",
"WIMException",
... | Search using operational attribute specified in the parameter.
@param dn The DN to search on
@param filter The LDAP filter for the search.
@param inEntityTypes The entity types to search for.
@param propNames The property names to return.
@param oprAttribute The operational attribute.
@return The search results or nul... | [
"Search",
"using",
"operational",
"attribute",
"specified",
"in",
"the",
"parameter",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L2066-L2094 | train |
OpenLiberty/open-liberty | dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java | LdapConnection.getBinaryAttributes | private String getBinaryAttributes() {
// Add binary settings for all octet string attributes.
StringBuffer binaryAttrNamesBuffer = new StringBuffer();
// Check the ldap data type of the extId attribute.
Map<String, LdapAttribute> attrMap = iLdapConfigMgr.getAttributes();
for ... | java | private String getBinaryAttributes() {
// Add binary settings for all octet string attributes.
StringBuffer binaryAttrNamesBuffer = new StringBuffer();
// Check the ldap data type of the extId attribute.
Map<String, LdapAttribute> attrMap = iLdapConfigMgr.getAttributes();
for ... | [
"private",
"String",
"getBinaryAttributes",
"(",
")",
"{",
"// Add binary settings for all octet string attributes.",
"StringBuffer",
"binaryAttrNamesBuffer",
"=",
"new",
"StringBuffer",
"(",
")",
";",
"// Check the ldap data type of the extId attribute.",
"Map",
"<",
"String",
... | Get the list of configure binary attributes.
@return A white-space delimited string of binary attribute names, suitable for use
configuring JNDI. | [
"Get",
"the",
"list",
"of",
"configure",
"binary",
"attributes",
"."
] | ca725d9903e63645018f9fa8cbda25f60af83a5d | https://github.com/OpenLiberty/open-liberty/blob/ca725d9903e63645018f9fa8cbda25f60af83a5d/dev/com.ibm.ws.security.wim.adapter.ldap/src/com/ibm/ws/security/wim/adapter/ldap/LdapConnection.java#L2102-L2118 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.