id int32 0 165k | 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
53,900 | google/closure-templates | java/src/com/google/template/soy/data/SanitizedContents.java | SanitizedContents.constantTrustedResourceUri | public static SanitizedContent constantTrustedResourceUri(
@CompileTimeConstant final String constant) {
return fromConstant(constant, ContentKind.TRUSTED_RESOURCE_URI, Dir.LTR);
} | java | public static SanitizedContent constantTrustedResourceUri(
@CompileTimeConstant final String constant) {
return fromConstant(constant, ContentKind.TRUSTED_RESOURCE_URI, Dir.LTR);
} | [
"public",
"static",
"SanitizedContent",
"constantTrustedResourceUri",
"(",
"@",
"CompileTimeConstant",
"final",
"String",
"constant",
")",
"{",
"return",
"fromConstant",
"(",
"constant",
",",
"ContentKind",
".",
"TRUSTED_RESOURCE_URI",
",",
"Dir",
".",
"LTR",
")",
"... | Wraps an assumed-safe trusted_resource_uri constant.
<p>This only accepts compile-time constants, based on the assumption that trusted resource URIs
that are controlled by the application (and not user input) are considered safe. | [
"Wraps",
"an",
"assumed",
"-",
"safe",
"trusted_resource_uri",
"constant",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/data/SanitizedContents.java#L238-L241 |
53,901 | google/closure-templates | java/src/com/google/template/soy/data/SanitizedContents.java | SanitizedContents.numberJs | public static SanitizedContent numberJs(final long number) {
return SanitizedContent.create(String.valueOf(number), ContentKind.JS);
} | java | public static SanitizedContent numberJs(final long number) {
return SanitizedContent.create(String.valueOf(number), ContentKind.JS);
} | [
"public",
"static",
"SanitizedContent",
"numberJs",
"(",
"final",
"long",
"number",
")",
"{",
"return",
"SanitizedContent",
".",
"create",
"(",
"String",
".",
"valueOf",
"(",
"number",
")",
",",
"ContentKind",
".",
"JS",
")",
";",
"}"
] | Creates JS from a number.
<p>Soy prints numbers as floats and it wraps them in spaces. This is undesirable if the source
code is presented to the user, e.g. in {@code <textarea>}. This function allows converting the
number to JS which is then printed as is. | [
"Creates",
"JS",
"from",
"a",
"number",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/data/SanitizedContents.java#L250-L252 |
53,902 | google/closure-templates | java/src/com/google/template/soy/data/SanitizedContents.java | SanitizedContents.pretendValidateResource | @VisibleForTesting
static void pretendValidateResource(String resourceName, ContentKind kind) {
int index = resourceName.lastIndexOf('.');
Preconditions.checkArgument(
index >= 0, "Currently, we only validate resources with explicit extensions.");
String fileExtension = resourceName.substring(inde... | java | @VisibleForTesting
static void pretendValidateResource(String resourceName, ContentKind kind) {
int index = resourceName.lastIndexOf('.');
Preconditions.checkArgument(
index >= 0, "Currently, we only validate resources with explicit extensions.");
String fileExtension = resourceName.substring(inde... | [
"@",
"VisibleForTesting",
"static",
"void",
"pretendValidateResource",
"(",
"String",
"resourceName",
",",
"ContentKind",
"kind",
")",
"{",
"int",
"index",
"=",
"resourceName",
".",
"lastIndexOf",
"(",
"'",
"'",
")",
";",
"Preconditions",
".",
"checkArgument",
"... | Very basic but strict validation that the resource's extension matches the content kind.
<p>In practice, this may be unnecessary, but it's always good to start out strict. This list
can either be expanded as needed, or removed if too onerous. | [
"Very",
"basic",
"but",
"strict",
"validation",
"that",
"the",
"resource",
"s",
"extension",
"matches",
"the",
"content",
"kind",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/data/SanitizedContents.java#L352-L372 |
53,903 | google/closure-templates | java/src/com/google/template/soy/sharedpasses/render/RenderableThunk.java | RenderableThunk.doResolveOnto | void doResolveOnto(Appendable appendable) throws IOException {
doRender(appendable);
content = appendable.toString();
if (kind == null) {
resolved = StringData.forValue(content);
} else {
resolved = UnsafeSanitizedContentOrdainer.ordainAsSafe(content, kind);
}
} | java | void doResolveOnto(Appendable appendable) throws IOException {
doRender(appendable);
content = appendable.toString();
if (kind == null) {
resolved = StringData.forValue(content);
} else {
resolved = UnsafeSanitizedContentOrdainer.ordainAsSafe(content, kind);
}
} | [
"void",
"doResolveOnto",
"(",
"Appendable",
"appendable",
")",
"throws",
"IOException",
"{",
"doRender",
"(",
"appendable",
")",
";",
"content",
"=",
"appendable",
".",
"toString",
"(",
")",
";",
"if",
"(",
"kind",
"==",
"null",
")",
"{",
"resolved",
"=",
... | Resolves the value by writing it to appendable
@param appendable An Appendable that you can call toString on to get the appended value | [
"Resolves",
"the",
"value",
"by",
"writing",
"it",
"to",
"appendable"
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/sharedpasses/render/RenderableThunk.java#L84-L92 |
53,904 | google/closure-templates | java/src/com/google/template/soy/data/AbstractLoggingAdvisingAppendable.java | AbstractLoggingAdvisingAppendable.appendLoggingFunctionInvocation | @Override
public final AbstractLoggingAdvisingAppendable appendLoggingFunctionInvocation(
LoggingFunctionInvocation funCall, ImmutableList<Function<String, String>> escapers)
throws IOException {
if (!isLogOnly()) {
doAppendLoggingFunctionInvocation(funCall, escapers);
}
return this;
} | java | @Override
public final AbstractLoggingAdvisingAppendable appendLoggingFunctionInvocation(
LoggingFunctionInvocation funCall, ImmutableList<Function<String, String>> escapers)
throws IOException {
if (!isLogOnly()) {
doAppendLoggingFunctionInvocation(funCall, escapers);
}
return this;
} | [
"@",
"Override",
"public",
"final",
"AbstractLoggingAdvisingAppendable",
"appendLoggingFunctionInvocation",
"(",
"LoggingFunctionInvocation",
"funCall",
",",
"ImmutableList",
"<",
"Function",
"<",
"String",
",",
"String",
">",
">",
"escapers",
")",
"throws",
"IOException"... | Called whenever a logging function is being rendered. | [
"Called",
"whenever",
"a",
"logging",
"function",
"is",
"being",
"rendered",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/data/AbstractLoggingAdvisingAppendable.java#L72-L80 |
53,905 | google/closure-templates | java/src/com/google/template/soy/jssrc/internal/GenJsCodeVisitorAssistantForMsgs.java | GenJsCodeVisitorAssistantForMsgs.generateMsgGroupVariable | public Expression generateMsgGroupVariable(MsgFallbackGroupNode node) {
String tmpVarName = translationContext.nameGenerator().generateName("msg_s");
Expression msg;
if (node.numChildren() == 1) {
translationContext
.soyToJsVariableMappings()
.setIsPrimaryMsgInUse(node, Expression.... | java | public Expression generateMsgGroupVariable(MsgFallbackGroupNode node) {
String tmpVarName = translationContext.nameGenerator().generateName("msg_s");
Expression msg;
if (node.numChildren() == 1) {
translationContext
.soyToJsVariableMappings()
.setIsPrimaryMsgInUse(node, Expression.... | [
"public",
"Expression",
"generateMsgGroupVariable",
"(",
"MsgFallbackGroupNode",
"node",
")",
"{",
"String",
"tmpVarName",
"=",
"translationContext",
".",
"nameGenerator",
"(",
")",
".",
"generateName",
"(",
"\"msg_s\"",
")",
";",
"Expression",
"msg",
";",
"if",
"... | Returns a code chunk representing a translated variable.
<p>Example:
<pre>
{msg desc="Link to help content."}Learn more{/msg}
{msg desc="Tells user how to access a product." hidden="true"}
Click <a href="}{$url}">here</a> to access {$productName}.
{/msg}
</pre>
might return the following code chunk:
<pr... | [
"Returns",
"a",
"code",
"chunk",
"representing",
"a",
"translated",
"variable",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/jssrc/internal/GenJsCodeVisitorAssistantForMsgs.java#L157-L179 |
53,906 | google/closure-templates | java/src/com/google/template/soy/jssrc/internal/GenJsCodeVisitorAssistantForMsgs.java | GenJsCodeVisitorAssistantForMsgs.buildGoogMsgVarNameHelper | private String buildGoogMsgVarNameHelper(MsgNode msgNode) {
// NOTE: MSG_UNNAMED/MSG_EXTERNAL are a special tokens recognized by the jscompiler. MSG_UNNAMED
// disables the default logic that requires all messages to be uniquely named.
// and MSG_EXTERNAL causes the jscompiler to not extract these messages.... | java | private String buildGoogMsgVarNameHelper(MsgNode msgNode) {
// NOTE: MSG_UNNAMED/MSG_EXTERNAL are a special tokens recognized by the jscompiler. MSG_UNNAMED
// disables the default logic that requires all messages to be uniquely named.
// and MSG_EXTERNAL causes the jscompiler to not extract these messages.... | [
"private",
"String",
"buildGoogMsgVarNameHelper",
"(",
"MsgNode",
"msgNode",
")",
"{",
"// NOTE: MSG_UNNAMED/MSG_EXTERNAL are a special tokens recognized by the jscompiler. MSG_UNNAMED",
"// disables the default logic that requires all messages to be uniquely named.",
"// and MSG_EXTERNAL causes... | Builds the googMsgVarName for an MsgNode. | [
"Builds",
"the",
"googMsgVarName",
"for",
"an",
"MsgNode",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/jssrc/internal/GenJsCodeVisitorAssistantForMsgs.java#L265-L274 |
53,907 | google/closure-templates | java/src/com/google/template/soy/jssrc/internal/GenJsCodeVisitorAssistantForMsgs.java | GenJsCodeVisitorAssistantForMsgs.genGoogMsgPlaceholder | protected Expression genGoogMsgPlaceholder(MsgPlaceholderNode msgPhNode) {
List<Expression> contentChunks = new ArrayList<>();
for (StandaloneNode contentNode : msgPhNode.getChildren()) {
if (contentNode instanceof MsgHtmlTagNode
&& !isComputableAsJsExprsVisitor.exec(contentNode)) {
/... | java | protected Expression genGoogMsgPlaceholder(MsgPlaceholderNode msgPhNode) {
List<Expression> contentChunks = new ArrayList<>();
for (StandaloneNode contentNode : msgPhNode.getChildren()) {
if (contentNode instanceof MsgHtmlTagNode
&& !isComputableAsJsExprsVisitor.exec(contentNode)) {
/... | [
"protected",
"Expression",
"genGoogMsgPlaceholder",
"(",
"MsgPlaceholderNode",
"msgPhNode",
")",
"{",
"List",
"<",
"Expression",
">",
"contentChunks",
"=",
"new",
"ArrayList",
"<>",
"(",
")",
";",
"for",
"(",
"StandaloneNode",
"contentNode",
":",
"msgPhNode",
".",... | Returns a code chunk for the given placeholder node. | [
"Returns",
"a",
"code",
"chunk",
"for",
"the",
"given",
"placeholder",
"node",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/jssrc/internal/GenJsCodeVisitorAssistantForMsgs.java#L544-L584 |
53,908 | google/closure-templates | java/src/com/google/template/soy/passes/htmlmatcher/HtmlTagMatchingPass.java | HtmlTagMatchingPass.run | public void run(HtmlMatcherGraph htmlMatcherGraph) {
if (!htmlMatcherGraph.getRootNode().isPresent()) {
// Empty graph.
return;
}
visit(htmlMatcherGraph.getRootNode().get());
for (HtmlTagNode tag : annotationMap.keySet()) {
if (tag instanceof HtmlOpenTagNode) {
HtmlOpenTagNode ... | java | public void run(HtmlMatcherGraph htmlMatcherGraph) {
if (!htmlMatcherGraph.getRootNode().isPresent()) {
// Empty graph.
return;
}
visit(htmlMatcherGraph.getRootNode().get());
for (HtmlTagNode tag : annotationMap.keySet()) {
if (tag instanceof HtmlOpenTagNode) {
HtmlOpenTagNode ... | [
"public",
"void",
"run",
"(",
"HtmlMatcherGraph",
"htmlMatcherGraph",
")",
"{",
"if",
"(",
"!",
"htmlMatcherGraph",
".",
"getRootNode",
"(",
")",
".",
"isPresent",
"(",
")",
")",
"{",
"// Empty graph.",
"return",
";",
"}",
"visit",
"(",
"htmlMatcherGraph",
"... | Runs the HtmlTagMatchingPass.
<p>The pass does the following:
<ol>
<li>Traverse the HTML matcher graph and create a set of open -> close tag matches
<li>Rebalance the code paths, injecting synthetic close tags to balance optional open tags.
Optional open tags are defined here: <a
href="https://www.w3.org/TR/html5/syn... | [
"Runs",
"the",
"HtmlTagMatchingPass",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/passes/htmlmatcher/HtmlTagMatchingPass.java#L177-L211 |
53,909 | google/closure-templates | java/src/com/google/template/soy/passes/htmlmatcher/HtmlTagMatchingPass.java | HtmlTagMatchingPass.injectCloseTag | private void injectCloseTag(
HtmlOpenTagNode optionalOpenTag, HtmlTagNode destinationTag, IdGenerator idGenerator) {
StandaloneNode openTagCopy = optionalOpenTag.getTagName().getNode().copy(new CopyState());
HtmlCloseTagNode syntheticClose =
new HtmlCloseTagNode(
idGenerator.genId(),
... | java | private void injectCloseTag(
HtmlOpenTagNode optionalOpenTag, HtmlTagNode destinationTag, IdGenerator idGenerator) {
StandaloneNode openTagCopy = optionalOpenTag.getTagName().getNode().copy(new CopyState());
HtmlCloseTagNode syntheticClose =
new HtmlCloseTagNode(
idGenerator.genId(),
... | [
"private",
"void",
"injectCloseTag",
"(",
"HtmlOpenTagNode",
"optionalOpenTag",
",",
"HtmlTagNode",
"destinationTag",
",",
"IdGenerator",
"idGenerator",
")",
"{",
"StandaloneNode",
"openTagCopy",
"=",
"optionalOpenTag",
".",
"getTagName",
"(",
")",
".",
"getNode",
"("... | Rebalances HTML tags when necessary.
<p>If an optional tag is encountered, inject a synthetic close tag right before the tag that
performs the implicit close. For example, this HTML:
<pre>{@code
<ul>
<li>List 1
<li>List 2
</ul>
}</pre>
<p>Will be rewritten to look like this logical HTML (note the addition of the {@c... | [
"Rebalances",
"HTML",
"tags",
"when",
"necessary",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/passes/htmlmatcher/HtmlTagMatchingPass.java#L236-L258 |
53,910 | google/closure-templates | java/src/com/google/template/soy/passes/htmlmatcher/HtmlTagMatchingPass.java | HtmlTagMatchingPass.visit | private void visit(
HtmlMatcherBlockNode blockNode,
Map<Equivalence.Wrapper<ExprNode>, Boolean> exprValueMap,
HtmlStack stack) {
if (blockNode.getGraph().getRootNode().isPresent()) {
new HtmlTagMatchingPass(
errorReporter,
idGenerator,
false,
... | java | private void visit(
HtmlMatcherBlockNode blockNode,
Map<Equivalence.Wrapper<ExprNode>, Boolean> exprValueMap,
HtmlStack stack) {
if (blockNode.getGraph().getRootNode().isPresent()) {
new HtmlTagMatchingPass(
errorReporter,
idGenerator,
false,
... | [
"private",
"void",
"visit",
"(",
"HtmlMatcherBlockNode",
"blockNode",
",",
"Map",
"<",
"Equivalence",
".",
"Wrapper",
"<",
"ExprNode",
">",
",",
"Boolean",
">",
"exprValueMap",
",",
"HtmlStack",
"stack",
")",
"{",
"if",
"(",
"blockNode",
".",
"getGraph",
"("... | Blocks must be internally balanced, but require knowing if they are in foreign content or not.
Recursively run the tag matcher and throw away the result. | [
"Blocks",
"must",
"be",
"internally",
"balanced",
"but",
"require",
"knowing",
"if",
"they",
"are",
"in",
"foreign",
"content",
"or",
"not",
".",
"Recursively",
"run",
"the",
"tag",
"matcher",
"and",
"throw",
"away",
"the",
"result",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/passes/htmlmatcher/HtmlTagMatchingPass.java#L360-L379 |
53,911 | google/closure-templates | java/src/com/google/template/soy/passes/htmlmatcher/HtmlTagMatchingPass.java | HtmlTagMatchingPass.visit | private void visit(
HtmlMatcherAccumulatorNode accNode,
Map<Equivalence.Wrapper<ExprNode>, Boolean> exprValueMap,
HtmlStack stack) {
Optional<HtmlMatcherGraphNode> nextNode = accNode.getNodeForEdgeKind(EdgeKind.TRUE_EDGE);
if (nextNode.isPresent()) {
visit(nextNode.get(), exprValueMap, s... | java | private void visit(
HtmlMatcherAccumulatorNode accNode,
Map<Equivalence.Wrapper<ExprNode>, Boolean> exprValueMap,
HtmlStack stack) {
Optional<HtmlMatcherGraphNode> nextNode = accNode.getNodeForEdgeKind(EdgeKind.TRUE_EDGE);
if (nextNode.isPresent()) {
visit(nextNode.get(), exprValueMap, s... | [
"private",
"void",
"visit",
"(",
"HtmlMatcherAccumulatorNode",
"accNode",
",",
"Map",
"<",
"Equivalence",
".",
"Wrapper",
"<",
"ExprNode",
">",
",",
"Boolean",
">",
"exprValueMap",
",",
"HtmlStack",
"stack",
")",
"{",
"Optional",
"<",
"HtmlMatcherGraphNode",
">"... | Accumulator nodes mostly work like HTMLMatcherTagNodes, but don't add any elements. | [
"Accumulator",
"nodes",
"mostly",
"work",
"like",
"HTMLMatcherTagNodes",
"but",
"don",
"t",
"add",
"any",
"elements",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/passes/htmlmatcher/HtmlTagMatchingPass.java#L420-L430 |
53,912 | google/closure-templates | java/src/com/google/template/soy/jbcsrc/restricted/SoyExpression.java | SoyExpression.asBoxedList | public static Expression asBoxedList(List<SoyExpression> items) {
List<Expression> childExprs = new ArrayList<>(items.size());
for (SoyExpression child : items) {
childExprs.add(child.box());
}
return BytecodeUtils.asList(childExprs);
} | java | public static Expression asBoxedList(List<SoyExpression> items) {
List<Expression> childExprs = new ArrayList<>(items.size());
for (SoyExpression child : items) {
childExprs.add(child.box());
}
return BytecodeUtils.asList(childExprs);
} | [
"public",
"static",
"Expression",
"asBoxedList",
"(",
"List",
"<",
"SoyExpression",
">",
"items",
")",
"{",
"List",
"<",
"Expression",
">",
"childExprs",
"=",
"new",
"ArrayList",
"<>",
"(",
"items",
".",
"size",
"(",
")",
")",
";",
"for",
"(",
"SoyExpres... | Returns an Expression that evaluates to a list containing all the items as boxed soy values. | [
"Returns",
"an",
"Expression",
"that",
"evaluates",
"to",
"a",
"list",
"containing",
"all",
"the",
"items",
"as",
"boxed",
"soy",
"values",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/jbcsrc/restricted/SoyExpression.java#L99-L105 |
53,913 | google/closure-templates | java/src/com/google/template/soy/jbcsrc/restricted/SoyExpression.java | SoyExpression.doBox | private static void doBox(CodeBuilder adapter, SoyRuntimeType type) {
if (type.isKnownSanitizedContent()) {
FieldRef.enumReference(
ContentKind.valueOf(((SanitizedType) type.soyType()).getContentKind().name()))
.accessStaticUnchecked(adapter);
MethodRef.ORDAIN_AS_SAFE.invokeUnche... | java | private static void doBox(CodeBuilder adapter, SoyRuntimeType type) {
if (type.isKnownSanitizedContent()) {
FieldRef.enumReference(
ContentKind.valueOf(((SanitizedType) type.soyType()).getContentKind().name()))
.accessStaticUnchecked(adapter);
MethodRef.ORDAIN_AS_SAFE.invokeUnche... | [
"private",
"static",
"void",
"doBox",
"(",
"CodeBuilder",
"adapter",
",",
"SoyRuntimeType",
"type",
")",
"{",
"if",
"(",
"type",
".",
"isKnownSanitizedContent",
"(",
")",
")",
"{",
"FieldRef",
".",
"enumReference",
"(",
"ContentKind",
".",
"valueOf",
"(",
"(... | Generates code to box the expression assuming that it is non-nullable and on the top of the
stack. | [
"Generates",
"code",
"to",
"box",
"the",
"expression",
"assuming",
"that",
"it",
"is",
"non",
"-",
"nullable",
"and",
"on",
"the",
"top",
"of",
"the",
"stack",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/jbcsrc/restricted/SoyExpression.java#L285-L306 |
53,914 | google/closure-templates | java/src/com/google/template/soy/jbcsrc/restricted/SoyExpression.java | SoyExpression.coerceToBoolean | public SoyExpression coerceToBoolean() {
// First deal with primitives which don't have to care about null.
if (BytecodeUtils.isPrimitive(resultType())) {
return coercePrimitiveToBoolean();
}
if (soyType().equals(NullType.getInstance())) {
return FALSE;
}
if (delegate.isNonNullable()... | java | public SoyExpression coerceToBoolean() {
// First deal with primitives which don't have to care about null.
if (BytecodeUtils.isPrimitive(resultType())) {
return coercePrimitiveToBoolean();
}
if (soyType().equals(NullType.getInstance())) {
return FALSE;
}
if (delegate.isNonNullable()... | [
"public",
"SoyExpression",
"coerceToBoolean",
"(",
")",
"{",
"// First deal with primitives which don't have to care about null.",
"if",
"(",
"BytecodeUtils",
".",
"isPrimitive",
"(",
"resultType",
"(",
")",
")",
")",
"{",
"return",
"coercePrimitiveToBoolean",
"(",
")",
... | Coerce this expression to a boolean value. | [
"Coerce",
"this",
"expression",
"to",
"a",
"boolean",
"value",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/jbcsrc/restricted/SoyExpression.java#L313-L345 |
53,915 | google/closure-templates | java/src/com/google/template/soy/jbcsrc/restricted/SoyExpression.java | SoyExpression.coerceToString | public SoyExpression coerceToString() {
if (soyRuntimeType.isKnownString() && !isBoxed()) {
return this;
}
if (BytecodeUtils.isPrimitive(resultType())) {
if (resultType().equals(Type.BOOLEAN_TYPE)) {
return forString(MethodRef.BOOLEAN_TO_STRING.invoke(delegate));
} else if (resultT... | java | public SoyExpression coerceToString() {
if (soyRuntimeType.isKnownString() && !isBoxed()) {
return this;
}
if (BytecodeUtils.isPrimitive(resultType())) {
if (resultType().equals(Type.BOOLEAN_TYPE)) {
return forString(MethodRef.BOOLEAN_TO_STRING.invoke(delegate));
} else if (resultT... | [
"public",
"SoyExpression",
"coerceToString",
"(",
")",
"{",
"if",
"(",
"soyRuntimeType",
".",
"isKnownString",
"(",
")",
"&&",
"!",
"isBoxed",
"(",
")",
")",
"{",
"return",
"this",
";",
"}",
"if",
"(",
"BytecodeUtils",
".",
"isPrimitive",
"(",
"resultType"... | Coerce this expression to a string value. | [
"Coerce",
"this",
"expression",
"to",
"a",
"string",
"value",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/jbcsrc/restricted/SoyExpression.java#L383-L405 |
53,916 | google/closure-templates | java/src/com/google/template/soy/jbcsrc/restricted/SoyExpression.java | SoyExpression.coerceToDouble | public SoyExpression coerceToDouble() {
if (!isBoxed()) {
if (soyRuntimeType.isKnownFloat()) {
return this;
}
if (soyRuntimeType.isKnownInt()) {
return forFloat(BytecodeUtils.numericConversion(delegate, Type.DOUBLE_TYPE));
}
throw new UnsupportedOperationException("Can'... | java | public SoyExpression coerceToDouble() {
if (!isBoxed()) {
if (soyRuntimeType.isKnownFloat()) {
return this;
}
if (soyRuntimeType.isKnownInt()) {
return forFloat(BytecodeUtils.numericConversion(delegate, Type.DOUBLE_TYPE));
}
throw new UnsupportedOperationException("Can'... | [
"public",
"SoyExpression",
"coerceToDouble",
"(",
")",
"{",
"if",
"(",
"!",
"isBoxed",
"(",
")",
")",
"{",
"if",
"(",
"soyRuntimeType",
".",
"isKnownFloat",
"(",
")",
")",
"{",
"return",
"this",
";",
"}",
"if",
"(",
"soyRuntimeType",
".",
"isKnownInt",
... | Coerce this expression to a double value. Useful for float-int comparisons. | [
"Coerce",
"this",
"expression",
"to",
"a",
"double",
"value",
".",
"Useful",
"for",
"float",
"-",
"int",
"comparisons",
"."
] | cc61e1dff70ae97f24f417a57410081bc498bd56 | https://github.com/google/closure-templates/blob/cc61e1dff70ae97f24f417a57410081bc498bd56/java/src/com/google/template/soy/jbcsrc/restricted/SoyExpression.java#L408-L422 |
53,917 | liferay/com-liferay-commerce | commerce-price-list-api/src/main/java/com/liferay/commerce/price/list/service/CommercePriceListAccountRelLocalServiceUtil.java | CommercePriceListAccountRelLocalServiceUtil.getCommercePriceListAccountRel | public static com.liferay.commerce.price.list.model.CommercePriceListAccountRel getCommercePriceListAccountRel(
long commercePriceListAccountRelId)
throws com.liferay.portal.kernel.exception.PortalException {
return getService()
.getCommercePriceListAccountRel(commercePriceListAccountRelId);
} | java | public static com.liferay.commerce.price.list.model.CommercePriceListAccountRel getCommercePriceListAccountRel(
long commercePriceListAccountRelId)
throws com.liferay.portal.kernel.exception.PortalException {
return getService()
.getCommercePriceListAccountRel(commercePriceListAccountRelId);
} | [
"public",
"static",
"com",
".",
"liferay",
".",
"commerce",
".",
"price",
".",
"list",
".",
"model",
".",
"CommercePriceListAccountRel",
"getCommercePriceListAccountRel",
"(",
"long",
"commercePriceListAccountRelId",
")",
"throws",
"com",
".",
"liferay",
".",
"porta... | Returns the commerce price list account rel with the primary key.
@param commercePriceListAccountRelId the primary key of the commerce price list account rel
@return the commerce price list account rel
@throws PortalException if a commerce price list account rel with the primary key could not be found | [
"Returns",
"the",
"commerce",
"price",
"list",
"account",
"rel",
"with",
"the",
"primary",
"key",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-price-list-api/src/main/java/com/liferay/commerce/price/list/service/CommercePriceListAccountRelLocalServiceUtil.java#L237-L242 |
53,918 | liferay/com-liferay-commerce | commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java | CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.deleteCommerceNotificationTemplateUserSegmentRel | @Indexable(type = IndexableType.DELETE)
@Override
public CommerceNotificationTemplateUserSegmentRel deleteCommerceNotificationTemplateUserSegmentRel(
long commerceNotificationTemplateUserSegmentRelId)
throws PortalException {
return commerceNotificationTemplateUserSegmentRelPersistence.remove(commerceNotificati... | java | @Indexable(type = IndexableType.DELETE)
@Override
public CommerceNotificationTemplateUserSegmentRel deleteCommerceNotificationTemplateUserSegmentRel(
long commerceNotificationTemplateUserSegmentRelId)
throws PortalException {
return commerceNotificationTemplateUserSegmentRelPersistence.remove(commerceNotificati... | [
"@",
"Indexable",
"(",
"type",
"=",
"IndexableType",
".",
"DELETE",
")",
"@",
"Override",
"public",
"CommerceNotificationTemplateUserSegmentRel",
"deleteCommerceNotificationTemplateUserSegmentRel",
"(",
"long",
"commerceNotificationTemplateUserSegmentRelId",
")",
"throws",
"Por... | Deletes the commerce notification template user segment rel with the primary key from the database. Also notifies the appropriate model listeners.
@param commerceNotificationTemplateUserSegmentRelId the primary key of the commerce notification template user segment rel
@return the commerce notification template user s... | [
"Deletes",
"the",
"commerce",
"notification",
"template",
"user",
"segment",
"rel",
"with",
"the",
"primary",
"key",
"from",
"the",
"database",
".",
"Also",
"notifies",
"the",
"appropriate",
"model",
"listeners",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java#L116-L122 |
53,919 | liferay/com-liferay-commerce | commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java | CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.deleteCommerceNotificationTemplateUserSegmentRel | @Indexable(type = IndexableType.DELETE)
@Override
public CommerceNotificationTemplateUserSegmentRel deleteCommerceNotificationTemplateUserSegmentRel(
CommerceNotificationTemplateUserSegmentRel commerceNotificationTemplateUserSegmentRel) {
return commerceNotificationTemplateUserSegmentRelPersistence.remove(commerc... | java | @Indexable(type = IndexableType.DELETE)
@Override
public CommerceNotificationTemplateUserSegmentRel deleteCommerceNotificationTemplateUserSegmentRel(
CommerceNotificationTemplateUserSegmentRel commerceNotificationTemplateUserSegmentRel) {
return commerceNotificationTemplateUserSegmentRelPersistence.remove(commerc... | [
"@",
"Indexable",
"(",
"type",
"=",
"IndexableType",
".",
"DELETE",
")",
"@",
"Override",
"public",
"CommerceNotificationTemplateUserSegmentRel",
"deleteCommerceNotificationTemplateUserSegmentRel",
"(",
"CommerceNotificationTemplateUserSegmentRel",
"commerceNotificationTemplateUserSe... | Deletes the commerce notification template user segment rel from the database. Also notifies the appropriate model listeners.
@param commerceNotificationTemplateUserSegmentRel the commerce notification template user segment rel
@return the commerce notification template user segment rel that was removed | [
"Deletes",
"the",
"commerce",
"notification",
"template",
"user",
"segment",
"rel",
"from",
"the",
"database",
".",
"Also",
"notifies",
"the",
"appropriate",
"model",
"listeners",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java#L130-L135 |
53,920 | liferay/com-liferay-commerce | commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java | CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.setCommerceNotificationAttachmentLocalService | public void setCommerceNotificationAttachmentLocalService(
com.liferay.commerce.notification.service.CommerceNotificationAttachmentLocalService commerceNotificationAttachmentLocalService) {
this.commerceNotificationAttachmentLocalService = commerceNotificationAttachmentLocalService;
} | java | public void setCommerceNotificationAttachmentLocalService(
com.liferay.commerce.notification.service.CommerceNotificationAttachmentLocalService commerceNotificationAttachmentLocalService) {
this.commerceNotificationAttachmentLocalService = commerceNotificationAttachmentLocalService;
} | [
"public",
"void",
"setCommerceNotificationAttachmentLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"notification",
".",
"service",
".",
"CommerceNotificationAttachmentLocalService",
"commerceNotificationAttachmentLocalService",
")",
"{",
"this",
".",
"commer... | Sets the commerce notification attachment local service.
@param commerceNotificationAttachmentLocalService the commerce notification attachment local service | [
"Sets",
"the",
"commerce",
"notification",
"attachment",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java#L348-L351 |
53,921 | liferay/com-liferay-commerce | commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java | CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.setCommerceNotificationQueueEntryLocalService | public void setCommerceNotificationQueueEntryLocalService(
com.liferay.commerce.notification.service.CommerceNotificationQueueEntryLocalService commerceNotificationQueueEntryLocalService) {
this.commerceNotificationQueueEntryLocalService = commerceNotificationQueueEntryLocalService;
} | java | public void setCommerceNotificationQueueEntryLocalService(
com.liferay.commerce.notification.service.CommerceNotificationQueueEntryLocalService commerceNotificationQueueEntryLocalService) {
this.commerceNotificationQueueEntryLocalService = commerceNotificationQueueEntryLocalService;
} | [
"public",
"void",
"setCommerceNotificationQueueEntryLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"notification",
".",
"service",
".",
"CommerceNotificationQueueEntryLocalService",
"commerceNotificationQueueEntryLocalService",
")",
"{",
"this",
".",
"commer... | Sets the commerce notification queue entry local service.
@param commerceNotificationQueueEntryLocalService the commerce notification queue entry local service | [
"Sets",
"the",
"commerce",
"notification",
"queue",
"entry",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java#L386-L389 |
53,922 | liferay/com-liferay-commerce | commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java | CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.setCommerceNotificationTemplateLocalService | public void setCommerceNotificationTemplateLocalService(
com.liferay.commerce.notification.service.CommerceNotificationTemplateLocalService commerceNotificationTemplateLocalService) {
this.commerceNotificationTemplateLocalService = commerceNotificationTemplateLocalService;
} | java | public void setCommerceNotificationTemplateLocalService(
com.liferay.commerce.notification.service.CommerceNotificationTemplateLocalService commerceNotificationTemplateLocalService) {
this.commerceNotificationTemplateLocalService = commerceNotificationTemplateLocalService;
} | [
"public",
"void",
"setCommerceNotificationTemplateLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"notification",
".",
"service",
".",
"CommerceNotificationTemplateLocalService",
"commerceNotificationTemplateLocalService",
")",
"{",
"this",
".",
"commerceNoti... | Sets the commerce notification template local service.
@param commerceNotificationTemplateLocalService the commerce notification template local service | [
"Sets",
"the",
"commerce",
"notification",
"template",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java#L424-L427 |
53,923 | liferay/com-liferay-commerce | commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java | CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.setCounterLocalService | public void setCounterLocalService(
com.liferay.counter.kernel.service.CounterLocalService counterLocalService) {
this.counterLocalService = counterLocalService;
} | java | public void setCounterLocalService(
com.liferay.counter.kernel.service.CounterLocalService counterLocalService) {
this.counterLocalService = counterLocalService;
} | [
"public",
"void",
"setCounterLocalService",
"(",
"com",
".",
"liferay",
".",
"counter",
".",
"kernel",
".",
"service",
".",
"CounterLocalService",
"counterLocalService",
")",
"{",
"this",
".",
"counterLocalService",
"=",
"counterLocalService",
";",
"}"
] | Sets the counter local service.
@param counterLocalService the counter local service | [
"Sets",
"the",
"counter",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java#L500-L503 |
53,924 | liferay/com-liferay-commerce | commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java | CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.setClassNameLocalService | public void setClassNameLocalService(
com.liferay.portal.kernel.service.ClassNameLocalService classNameLocalService) {
this.classNameLocalService = classNameLocalService;
} | java | public void setClassNameLocalService(
com.liferay.portal.kernel.service.ClassNameLocalService classNameLocalService) {
this.classNameLocalService = classNameLocalService;
} | [
"public",
"void",
"setClassNameLocalService",
"(",
"com",
".",
"liferay",
".",
"portal",
".",
"kernel",
".",
"service",
".",
"ClassNameLocalService",
"classNameLocalService",
")",
"{",
"this",
".",
"classNameLocalService",
"=",
"classNameLocalService",
";",
"}"
] | Sets the class name local service.
@param classNameLocalService the class name local service | [
"Sets",
"the",
"class",
"name",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java#L519-L522 |
53,925 | liferay/com-liferay-commerce | commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java | CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.setResourceLocalService | public void setResourceLocalService(
com.liferay.portal.kernel.service.ResourceLocalService resourceLocalService) {
this.resourceLocalService = resourceLocalService;
} | java | public void setResourceLocalService(
com.liferay.portal.kernel.service.ResourceLocalService resourceLocalService) {
this.resourceLocalService = resourceLocalService;
} | [
"public",
"void",
"setResourceLocalService",
"(",
"com",
".",
"liferay",
".",
"portal",
".",
"kernel",
".",
"service",
".",
"ResourceLocalService",
"resourceLocalService",
")",
"{",
"this",
".",
"resourceLocalService",
"=",
"resourceLocalService",
";",
"}"
] | Sets the resource local service.
@param resourceLocalService the resource local service | [
"Sets",
"the",
"resource",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java#L557-L560 |
53,926 | liferay/com-liferay-commerce | commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java | CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.setUserLocalService | public void setUserLocalService(
com.liferay.portal.kernel.service.UserLocalService userLocalService) {
this.userLocalService = userLocalService;
} | java | public void setUserLocalService(
com.liferay.portal.kernel.service.UserLocalService userLocalService) {
this.userLocalService = userLocalService;
} | [
"public",
"void",
"setUserLocalService",
"(",
"com",
".",
"liferay",
".",
"portal",
".",
"kernel",
".",
"service",
".",
"UserLocalService",
"userLocalService",
")",
"{",
"this",
".",
"userLocalService",
"=",
"userLocalService",
";",
"}"
] | Sets the user local service.
@param userLocalService the user local service | [
"Sets",
"the",
"user",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-notification-service/src/main/java/com/liferay/commerce/notification/service/base/CommerceNotificationTemplateUserSegmentRelLocalServiceBaseImpl.java#L576-L579 |
53,927 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPAttachmentFileEntryLocalService | public void setCPAttachmentFileEntryLocalService(
com.liferay.commerce.product.service.CPAttachmentFileEntryLocalService cpAttachmentFileEntryLocalService) {
this.cpAttachmentFileEntryLocalService = cpAttachmentFileEntryLocalService;
} | java | public void setCPAttachmentFileEntryLocalService(
com.liferay.commerce.product.service.CPAttachmentFileEntryLocalService cpAttachmentFileEntryLocalService) {
this.cpAttachmentFileEntryLocalService = cpAttachmentFileEntryLocalService;
} | [
"public",
"void",
"setCPAttachmentFileEntryLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPAttachmentFileEntryLocalService",
"cpAttachmentFileEntryLocalService",
")",
"{",
"this",
".",
"cpAttachmentFileEntryLocalService",
... | Sets the cp attachment file entry local service.
@param cpAttachmentFileEntryLocalService the cp attachment file entry local service | [
"Sets",
"the",
"cp",
"attachment",
"file",
"entry",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L92-L95 |
53,928 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPAttachmentFileEntryService | public void setCPAttachmentFileEntryService(
com.liferay.commerce.product.service.CPAttachmentFileEntryService cpAttachmentFileEntryService) {
this.cpAttachmentFileEntryService = cpAttachmentFileEntryService;
} | java | public void setCPAttachmentFileEntryService(
com.liferay.commerce.product.service.CPAttachmentFileEntryService cpAttachmentFileEntryService) {
this.cpAttachmentFileEntryService = cpAttachmentFileEntryService;
} | [
"public",
"void",
"setCPAttachmentFileEntryService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPAttachmentFileEntryService",
"cpAttachmentFileEntryService",
")",
"{",
"this",
".",
"cpAttachmentFileEntryService",
"=",
"cpAttachment... | Sets the cp attachment file entry remote service.
@param cpAttachmentFileEntryService the cp attachment file entry remote service | [
"Sets",
"the",
"cp",
"attachment",
"file",
"entry",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L111-L114 |
53,929 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDefinitionLocalService | public void setCPDefinitionLocalService(
com.liferay.commerce.product.service.CPDefinitionLocalService cpDefinitionLocalService) {
this.cpDefinitionLocalService = cpDefinitionLocalService;
} | java | public void setCPDefinitionLocalService(
com.liferay.commerce.product.service.CPDefinitionLocalService cpDefinitionLocalService) {
this.cpDefinitionLocalService = cpDefinitionLocalService;
} | [
"public",
"void",
"setCPDefinitionLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDefinitionLocalService",
"cpDefinitionLocalService",
")",
"{",
"this",
".",
"cpDefinitionLocalService",
"=",
"cpDefinitionLocalService",
... | Sets the cp definition local service.
@param cpDefinitionLocalService the cp definition local service | [
"Sets",
"the",
"cp",
"definition",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L168-L171 |
53,930 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDefinitionService | public void setCPDefinitionService(
com.liferay.commerce.product.service.CPDefinitionService cpDefinitionService) {
this.cpDefinitionService = cpDefinitionService;
} | java | public void setCPDefinitionService(
com.liferay.commerce.product.service.CPDefinitionService cpDefinitionService) {
this.cpDefinitionService = cpDefinitionService;
} | [
"public",
"void",
"setCPDefinitionService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDefinitionService",
"cpDefinitionService",
")",
"{",
"this",
".",
"cpDefinitionService",
"=",
"cpDefinitionService",
";",
"}"
] | Sets the cp definition remote service.
@param cpDefinitionService the cp definition remote service | [
"Sets",
"the",
"cp",
"definition",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L187-L190 |
53,931 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDefinitionLinkLocalService | public void setCPDefinitionLinkLocalService(
com.liferay.commerce.product.service.CPDefinitionLinkLocalService cpDefinitionLinkLocalService) {
this.cpDefinitionLinkLocalService = cpDefinitionLinkLocalService;
} | java | public void setCPDefinitionLinkLocalService(
com.liferay.commerce.product.service.CPDefinitionLinkLocalService cpDefinitionLinkLocalService) {
this.cpDefinitionLinkLocalService = cpDefinitionLinkLocalService;
} | [
"public",
"void",
"setCPDefinitionLinkLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDefinitionLinkLocalService",
"cpDefinitionLinkLocalService",
")",
"{",
"this",
".",
"cpDefinitionLinkLocalService",
"=",
"cpDefinition... | Sets the cp definition link local service.
@param cpDefinitionLinkLocalService the cp definition link local service | [
"Sets",
"the",
"cp",
"definition",
"link",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L243-L246 |
53,932 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDefinitionLinkService | public void setCPDefinitionLinkService(
com.liferay.commerce.product.service.CPDefinitionLinkService cpDefinitionLinkService) {
this.cpDefinitionLinkService = cpDefinitionLinkService;
} | java | public void setCPDefinitionLinkService(
com.liferay.commerce.product.service.CPDefinitionLinkService cpDefinitionLinkService) {
this.cpDefinitionLinkService = cpDefinitionLinkService;
} | [
"public",
"void",
"setCPDefinitionLinkService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDefinitionLinkService",
"cpDefinitionLinkService",
")",
"{",
"this",
".",
"cpDefinitionLinkService",
"=",
"cpDefinitionLinkService",
";",... | Sets the cp definition link remote service.
@param cpDefinitionLinkService the cp definition link remote service | [
"Sets",
"the",
"cp",
"definition",
"link",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L262-L265 |
53,933 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDefinitionOptionRelLocalService | public void setCPDefinitionOptionRelLocalService(
com.liferay.commerce.product.service.CPDefinitionOptionRelLocalService cpDefinitionOptionRelLocalService) {
this.cpDefinitionOptionRelLocalService = cpDefinitionOptionRelLocalService;
} | java | public void setCPDefinitionOptionRelLocalService(
com.liferay.commerce.product.service.CPDefinitionOptionRelLocalService cpDefinitionOptionRelLocalService) {
this.cpDefinitionOptionRelLocalService = cpDefinitionOptionRelLocalService;
} | [
"public",
"void",
"setCPDefinitionOptionRelLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDefinitionOptionRelLocalService",
"cpDefinitionOptionRelLocalService",
")",
"{",
"this",
".",
"cpDefinitionOptionRelLocalService",
... | Sets the cp definition option rel local service.
@param cpDefinitionOptionRelLocalService the cp definition option rel local service | [
"Sets",
"the",
"cp",
"definition",
"option",
"rel",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L319-L322 |
53,934 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDefinitionOptionRelService | public void setCPDefinitionOptionRelService(
com.liferay.commerce.product.service.CPDefinitionOptionRelService cpDefinitionOptionRelService) {
this.cpDefinitionOptionRelService = cpDefinitionOptionRelService;
} | java | public void setCPDefinitionOptionRelService(
com.liferay.commerce.product.service.CPDefinitionOptionRelService cpDefinitionOptionRelService) {
this.cpDefinitionOptionRelService = cpDefinitionOptionRelService;
} | [
"public",
"void",
"setCPDefinitionOptionRelService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDefinitionOptionRelService",
"cpDefinitionOptionRelService",
")",
"{",
"this",
".",
"cpDefinitionOptionRelService",
"=",
"cpDefinition... | Sets the cp definition option rel remote service.
@param cpDefinitionOptionRelService the cp definition option rel remote service | [
"Sets",
"the",
"cp",
"definition",
"option",
"rel",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L338-L341 |
53,935 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDefinitionOptionValueRelLocalService | public void setCPDefinitionOptionValueRelLocalService(
com.liferay.commerce.product.service.CPDefinitionOptionValueRelLocalService cpDefinitionOptionValueRelLocalService) {
this.cpDefinitionOptionValueRelLocalService = cpDefinitionOptionValueRelLocalService;
} | java | public void setCPDefinitionOptionValueRelLocalService(
com.liferay.commerce.product.service.CPDefinitionOptionValueRelLocalService cpDefinitionOptionValueRelLocalService) {
this.cpDefinitionOptionValueRelLocalService = cpDefinitionOptionValueRelLocalService;
} | [
"public",
"void",
"setCPDefinitionOptionValueRelLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDefinitionOptionValueRelLocalService",
"cpDefinitionOptionValueRelLocalService",
")",
"{",
"this",
".",
"cpDefinitionOptionValue... | Sets the cp definition option value rel local service.
@param cpDefinitionOptionValueRelLocalService the cp definition option value rel local service | [
"Sets",
"the",
"cp",
"definition",
"option",
"value",
"rel",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L376-L379 |
53,936 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDefinitionOptionValueRelService | public void setCPDefinitionOptionValueRelService(
com.liferay.commerce.product.service.CPDefinitionOptionValueRelService cpDefinitionOptionValueRelService) {
this.cpDefinitionOptionValueRelService = cpDefinitionOptionValueRelService;
} | java | public void setCPDefinitionOptionValueRelService(
com.liferay.commerce.product.service.CPDefinitionOptionValueRelService cpDefinitionOptionValueRelService) {
this.cpDefinitionOptionValueRelService = cpDefinitionOptionValueRelService;
} | [
"public",
"void",
"setCPDefinitionOptionValueRelService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDefinitionOptionValueRelService",
"cpDefinitionOptionValueRelService",
")",
"{",
"this",
".",
"cpDefinitionOptionValueRelService",
... | Sets the cp definition option value rel remote service.
@param cpDefinitionOptionValueRelService the cp definition option value rel remote service | [
"Sets",
"the",
"cp",
"definition",
"option",
"value",
"rel",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L395-L398 |
53,937 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDefinitionSpecificationOptionValueLocalService | public void setCPDefinitionSpecificationOptionValueLocalService(
com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueLocalService cpDefinitionSpecificationOptionValueLocalService) {
this.cpDefinitionSpecificationOptionValueLocalService = cpDefinitionSpecificationOptionValueLocalService;
} | java | public void setCPDefinitionSpecificationOptionValueLocalService(
com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueLocalService cpDefinitionSpecificationOptionValueLocalService) {
this.cpDefinitionSpecificationOptionValueLocalService = cpDefinitionSpecificationOptionValueLocalService;
} | [
"public",
"void",
"setCPDefinitionSpecificationOptionValueLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDefinitionSpecificationOptionValueLocalService",
"cpDefinitionSpecificationOptionValueLocalService",
")",
"{",
"this",
"... | Sets the cp definition specification option value local service.
@param cpDefinitionSpecificationOptionValueLocalService the cp definition specification option value local service | [
"Sets",
"the",
"cp",
"definition",
"specification",
"option",
"value",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L433-L436 |
53,938 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDefinitionSpecificationOptionValueService | public void setCPDefinitionSpecificationOptionValueService(
com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueService cpDefinitionSpecificationOptionValueService) {
this.cpDefinitionSpecificationOptionValueService = cpDefinitionSpecificationOptionValueService;
} | java | public void setCPDefinitionSpecificationOptionValueService(
com.liferay.commerce.product.service.CPDefinitionSpecificationOptionValueService cpDefinitionSpecificationOptionValueService) {
this.cpDefinitionSpecificationOptionValueService = cpDefinitionSpecificationOptionValueService;
} | [
"public",
"void",
"setCPDefinitionSpecificationOptionValueService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDefinitionSpecificationOptionValueService",
"cpDefinitionSpecificationOptionValueService",
")",
"{",
"this",
".",
"cpDefini... | Sets the cp definition specification option value remote service.
@param cpDefinitionSpecificationOptionValueService the cp definition specification option value remote service | [
"Sets",
"the",
"cp",
"definition",
"specification",
"option",
"value",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L452-L455 |
53,939 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPDisplayLayoutLocalService | public void setCPDisplayLayoutLocalService(
com.liferay.commerce.product.service.CPDisplayLayoutLocalService cpDisplayLayoutLocalService) {
this.cpDisplayLayoutLocalService = cpDisplayLayoutLocalService;
} | java | public void setCPDisplayLayoutLocalService(
com.liferay.commerce.product.service.CPDisplayLayoutLocalService cpDisplayLayoutLocalService) {
this.cpDisplayLayoutLocalService = cpDisplayLayoutLocalService;
} | [
"public",
"void",
"setCPDisplayLayoutLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPDisplayLayoutLocalService",
"cpDisplayLayoutLocalService",
")",
"{",
"this",
".",
"cpDisplayLayoutLocalService",
"=",
"cpDisplayLayoutL... | Sets the cp display layout local service.
@param cpDisplayLayoutLocalService the cp display layout local service | [
"Sets",
"the",
"cp",
"display",
"layout",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L490-L493 |
53,940 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPFriendlyURLEntryLocalService | public void setCPFriendlyURLEntryLocalService(
com.liferay.commerce.product.service.CPFriendlyURLEntryLocalService cpFriendlyURLEntryLocalService) {
this.cpFriendlyURLEntryLocalService = cpFriendlyURLEntryLocalService;
} | java | public void setCPFriendlyURLEntryLocalService(
com.liferay.commerce.product.service.CPFriendlyURLEntryLocalService cpFriendlyURLEntryLocalService) {
this.cpFriendlyURLEntryLocalService = cpFriendlyURLEntryLocalService;
} | [
"public",
"void",
"setCPFriendlyURLEntryLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPFriendlyURLEntryLocalService",
"cpFriendlyURLEntryLocalService",
")",
"{",
"this",
".",
"cpFriendlyURLEntryLocalService",
"=",
"cpFr... | Sets the cp friendly url entry local service.
@param cpFriendlyURLEntryLocalService the cp friendly url entry local service | [
"Sets",
"the",
"cp",
"friendly",
"url",
"entry",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L528-L531 |
53,941 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPInstanceLocalService | public void setCPInstanceLocalService(
com.liferay.commerce.product.service.CPInstanceLocalService cpInstanceLocalService) {
this.cpInstanceLocalService = cpInstanceLocalService;
} | java | public void setCPInstanceLocalService(
com.liferay.commerce.product.service.CPInstanceLocalService cpInstanceLocalService) {
this.cpInstanceLocalService = cpInstanceLocalService;
} | [
"public",
"void",
"setCPInstanceLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPInstanceLocalService",
"cpInstanceLocalService",
")",
"{",
"this",
".",
"cpInstanceLocalService",
"=",
"cpInstanceLocalService",
";",
"}... | Sets the cp instance local service.
@param cpInstanceLocalService the cp instance local service | [
"Sets",
"the",
"cp",
"instance",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L566-L569 |
53,942 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPInstanceService | public void setCPInstanceService(
com.liferay.commerce.product.service.CPInstanceService cpInstanceService) {
this.cpInstanceService = cpInstanceService;
} | java | public void setCPInstanceService(
com.liferay.commerce.product.service.CPInstanceService cpInstanceService) {
this.cpInstanceService = cpInstanceService;
} | [
"public",
"void",
"setCPInstanceService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPInstanceService",
"cpInstanceService",
")",
"{",
"this",
".",
"cpInstanceService",
"=",
"cpInstanceService",
";",
"}"
] | Sets the cp instance remote service.
@param cpInstanceService the cp instance remote service | [
"Sets",
"the",
"cp",
"instance",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L585-L588 |
53,943 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPMeasurementUnitLocalService | public void setCPMeasurementUnitLocalService(
com.liferay.commerce.product.service.CPMeasurementUnitLocalService cpMeasurementUnitLocalService) {
this.cpMeasurementUnitLocalService = cpMeasurementUnitLocalService;
} | java | public void setCPMeasurementUnitLocalService(
com.liferay.commerce.product.service.CPMeasurementUnitLocalService cpMeasurementUnitLocalService) {
this.cpMeasurementUnitLocalService = cpMeasurementUnitLocalService;
} | [
"public",
"void",
"setCPMeasurementUnitLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPMeasurementUnitLocalService",
"cpMeasurementUnitLocalService",
")",
"{",
"this",
".",
"cpMeasurementUnitLocalService",
"=",
"cpMeasur... | Sets the cp measurement unit local service.
@param cpMeasurementUnitLocalService the cp measurement unit local service | [
"Sets",
"the",
"cp",
"measurement",
"unit",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L641-L644 |
53,944 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPMeasurementUnitService | public void setCPMeasurementUnitService(
com.liferay.commerce.product.service.CPMeasurementUnitService cpMeasurementUnitService) {
this.cpMeasurementUnitService = cpMeasurementUnitService;
} | java | public void setCPMeasurementUnitService(
com.liferay.commerce.product.service.CPMeasurementUnitService cpMeasurementUnitService) {
this.cpMeasurementUnitService = cpMeasurementUnitService;
} | [
"public",
"void",
"setCPMeasurementUnitService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPMeasurementUnitService",
"cpMeasurementUnitService",
")",
"{",
"this",
".",
"cpMeasurementUnitService",
"=",
"cpMeasurementUnitService",
... | Sets the cp measurement unit remote service.
@param cpMeasurementUnitService the cp measurement unit remote service | [
"Sets",
"the",
"cp",
"measurement",
"unit",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L660-L663 |
53,945 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPOptionLocalService | public void setCPOptionLocalService(
com.liferay.commerce.product.service.CPOptionLocalService cpOptionLocalService) {
this.cpOptionLocalService = cpOptionLocalService;
} | java | public void setCPOptionLocalService(
com.liferay.commerce.product.service.CPOptionLocalService cpOptionLocalService) {
this.cpOptionLocalService = cpOptionLocalService;
} | [
"public",
"void",
"setCPOptionLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPOptionLocalService",
"cpOptionLocalService",
")",
"{",
"this",
".",
"cpOptionLocalService",
"=",
"cpOptionLocalService",
";",
"}"
] | Sets the cp option local service.
@param cpOptionLocalService the cp option local service | [
"Sets",
"the",
"cp",
"option",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L698-L701 |
53,946 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPOptionService | public void setCPOptionService(
com.liferay.commerce.product.service.CPOptionService cpOptionService) {
this.cpOptionService = cpOptionService;
} | java | public void setCPOptionService(
com.liferay.commerce.product.service.CPOptionService cpOptionService) {
this.cpOptionService = cpOptionService;
} | [
"public",
"void",
"setCPOptionService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPOptionService",
"cpOptionService",
")",
"{",
"this",
".",
"cpOptionService",
"=",
"cpOptionService",
";",
"}"
] | Sets the cp option remote service.
@param cpOptionService the cp option remote service | [
"Sets",
"the",
"cp",
"option",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L717-L720 |
53,947 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPOptionCategoryLocalService | public void setCPOptionCategoryLocalService(
com.liferay.commerce.product.service.CPOptionCategoryLocalService cpOptionCategoryLocalService) {
this.cpOptionCategoryLocalService = cpOptionCategoryLocalService;
} | java | public void setCPOptionCategoryLocalService(
com.liferay.commerce.product.service.CPOptionCategoryLocalService cpOptionCategoryLocalService) {
this.cpOptionCategoryLocalService = cpOptionCategoryLocalService;
} | [
"public",
"void",
"setCPOptionCategoryLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPOptionCategoryLocalService",
"cpOptionCategoryLocalService",
")",
"{",
"this",
".",
"cpOptionCategoryLocalService",
"=",
"cpOptionCate... | Sets the cp option category local service.
@param cpOptionCategoryLocalService the cp option category local service | [
"Sets",
"the",
"cp",
"option",
"category",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L754-L757 |
53,948 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPOptionCategoryService | public void setCPOptionCategoryService(
com.liferay.commerce.product.service.CPOptionCategoryService cpOptionCategoryService) {
this.cpOptionCategoryService = cpOptionCategoryService;
} | java | public void setCPOptionCategoryService(
com.liferay.commerce.product.service.CPOptionCategoryService cpOptionCategoryService) {
this.cpOptionCategoryService = cpOptionCategoryService;
} | [
"public",
"void",
"setCPOptionCategoryService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPOptionCategoryService",
"cpOptionCategoryService",
")",
"{",
"this",
".",
"cpOptionCategoryService",
"=",
"cpOptionCategoryService",
";",... | Sets the cp option category remote service.
@param cpOptionCategoryService the cp option category remote service | [
"Sets",
"the",
"cp",
"option",
"category",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L773-L776 |
53,949 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPOptionValueLocalService | public void setCPOptionValueLocalService(
com.liferay.commerce.product.service.CPOptionValueLocalService cpOptionValueLocalService) {
this.cpOptionValueLocalService = cpOptionValueLocalService;
} | java | public void setCPOptionValueLocalService(
com.liferay.commerce.product.service.CPOptionValueLocalService cpOptionValueLocalService) {
this.cpOptionValueLocalService = cpOptionValueLocalService;
} | [
"public",
"void",
"setCPOptionValueLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPOptionValueLocalService",
"cpOptionValueLocalService",
")",
"{",
"this",
".",
"cpOptionValueLocalService",
"=",
"cpOptionValueLocalServic... | Sets the cp option value local service.
@param cpOptionValueLocalService the cp option value local service | [
"Sets",
"the",
"cp",
"option",
"value",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L811-L814 |
53,950 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPOptionValueService | public void setCPOptionValueService(
com.liferay.commerce.product.service.CPOptionValueService cpOptionValueService) {
this.cpOptionValueService = cpOptionValueService;
} | java | public void setCPOptionValueService(
com.liferay.commerce.product.service.CPOptionValueService cpOptionValueService) {
this.cpOptionValueService = cpOptionValueService;
} | [
"public",
"void",
"setCPOptionValueService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPOptionValueService",
"cpOptionValueService",
")",
"{",
"this",
".",
"cpOptionValueService",
"=",
"cpOptionValueService",
";",
"}"
] | Sets the cp option value remote service.
@param cpOptionValueService the cp option value remote service | [
"Sets",
"the",
"cp",
"option",
"value",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L830-L833 |
53,951 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCProductLocalService | public void setCProductLocalService(
com.liferay.commerce.product.service.CProductLocalService cProductLocalService) {
this.cProductLocalService = cProductLocalService;
} | java | public void setCProductLocalService(
com.liferay.commerce.product.service.CProductLocalService cProductLocalService) {
this.cProductLocalService = cProductLocalService;
} | [
"public",
"void",
"setCProductLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CProductLocalService",
"cProductLocalService",
")",
"{",
"this",
".",
"cProductLocalService",
"=",
"cProductLocalService",
";",
"}"
] | Sets the c product local service.
@param cProductLocalService the c product local service | [
"Sets",
"the",
"c",
"product",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L868-L871 |
53,952 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPRuleLocalService | public void setCPRuleLocalService(
com.liferay.commerce.product.service.CPRuleLocalService cpRuleLocalService) {
this.cpRuleLocalService = cpRuleLocalService;
} | java | public void setCPRuleLocalService(
com.liferay.commerce.product.service.CPRuleLocalService cpRuleLocalService) {
this.cpRuleLocalService = cpRuleLocalService;
} | [
"public",
"void",
"setCPRuleLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPRuleLocalService",
"cpRuleLocalService",
")",
"{",
"this",
".",
"cpRuleLocalService",
"=",
"cpRuleLocalService",
";",
"}"
] | Sets the cp rule local service.
@param cpRuleLocalService the cp rule local service | [
"Sets",
"the",
"cp",
"rule",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L905-L908 |
53,953 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPRuleService | public void setCPRuleService(
com.liferay.commerce.product.service.CPRuleService cpRuleService) {
this.cpRuleService = cpRuleService;
} | java | public void setCPRuleService(
com.liferay.commerce.product.service.CPRuleService cpRuleService) {
this.cpRuleService = cpRuleService;
} | [
"public",
"void",
"setCPRuleService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPRuleService",
"cpRuleService",
")",
"{",
"this",
".",
"cpRuleService",
"=",
"cpRuleService",
";",
"}"
] | Sets the cp rule remote service.
@param cpRuleService the cp rule remote service | [
"Sets",
"the",
"cp",
"rule",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L924-L927 |
53,954 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPRuleAssetCategoryRelLocalService | public void setCPRuleAssetCategoryRelLocalService(
com.liferay.commerce.product.service.CPRuleAssetCategoryRelLocalService cpRuleAssetCategoryRelLocalService) {
this.cpRuleAssetCategoryRelLocalService = cpRuleAssetCategoryRelLocalService;
} | java | public void setCPRuleAssetCategoryRelLocalService(
com.liferay.commerce.product.service.CPRuleAssetCategoryRelLocalService cpRuleAssetCategoryRelLocalService) {
this.cpRuleAssetCategoryRelLocalService = cpRuleAssetCategoryRelLocalService;
} | [
"public",
"void",
"setCPRuleAssetCategoryRelLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPRuleAssetCategoryRelLocalService",
"cpRuleAssetCategoryRelLocalService",
")",
"{",
"this",
".",
"cpRuleAssetCategoryRelLocalService"... | Sets the cp rule asset category rel local service.
@param cpRuleAssetCategoryRelLocalService the cp rule asset category rel local service | [
"Sets",
"the",
"cp",
"rule",
"asset",
"category",
"rel",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L961-L964 |
53,955 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPRuleAssetCategoryRelService | public void setCPRuleAssetCategoryRelService(
com.liferay.commerce.product.service.CPRuleAssetCategoryRelService cpRuleAssetCategoryRelService) {
this.cpRuleAssetCategoryRelService = cpRuleAssetCategoryRelService;
} | java | public void setCPRuleAssetCategoryRelService(
com.liferay.commerce.product.service.CPRuleAssetCategoryRelService cpRuleAssetCategoryRelService) {
this.cpRuleAssetCategoryRelService = cpRuleAssetCategoryRelService;
} | [
"public",
"void",
"setCPRuleAssetCategoryRelService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPRuleAssetCategoryRelService",
"cpRuleAssetCategoryRelService",
")",
"{",
"this",
".",
"cpRuleAssetCategoryRelService",
"=",
"cpRuleAs... | Sets the cp rule asset category rel remote service.
@param cpRuleAssetCategoryRelService the cp rule asset category rel remote service | [
"Sets",
"the",
"cp",
"rule",
"asset",
"category",
"rel",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L980-L983 |
53,956 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPRuleUserSegmentRelLocalService | public void setCPRuleUserSegmentRelLocalService(
com.liferay.commerce.product.service.CPRuleUserSegmentRelLocalService cpRuleUserSegmentRelLocalService) {
this.cpRuleUserSegmentRelLocalService = cpRuleUserSegmentRelLocalService;
} | java | public void setCPRuleUserSegmentRelLocalService(
com.liferay.commerce.product.service.CPRuleUserSegmentRelLocalService cpRuleUserSegmentRelLocalService) {
this.cpRuleUserSegmentRelLocalService = cpRuleUserSegmentRelLocalService;
} | [
"public",
"void",
"setCPRuleUserSegmentRelLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPRuleUserSegmentRelLocalService",
"cpRuleUserSegmentRelLocalService",
")",
"{",
"this",
".",
"cpRuleUserSegmentRelLocalService",
"=",... | Sets the cp rule user segment rel local service.
@param cpRuleUserSegmentRelLocalService the cp rule user segment rel local service | [
"Sets",
"the",
"cp",
"rule",
"user",
"segment",
"rel",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L1018-L1021 |
53,957 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPRuleUserSegmentRelService | public void setCPRuleUserSegmentRelService(
com.liferay.commerce.product.service.CPRuleUserSegmentRelService cpRuleUserSegmentRelService) {
this.cpRuleUserSegmentRelService = cpRuleUserSegmentRelService;
} | java | public void setCPRuleUserSegmentRelService(
com.liferay.commerce.product.service.CPRuleUserSegmentRelService cpRuleUserSegmentRelService) {
this.cpRuleUserSegmentRelService = cpRuleUserSegmentRelService;
} | [
"public",
"void",
"setCPRuleUserSegmentRelService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPRuleUserSegmentRelService",
"cpRuleUserSegmentRelService",
")",
"{",
"this",
".",
"cpRuleUserSegmentRelService",
"=",
"cpRuleUserSegmen... | Sets the cp rule user segment rel remote service.
@param cpRuleUserSegmentRelService the cp rule user segment rel remote service | [
"Sets",
"the",
"cp",
"rule",
"user",
"segment",
"rel",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L1037-L1040 |
53,958 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPSpecificationOptionLocalService | public void setCPSpecificationOptionLocalService(
com.liferay.commerce.product.service.CPSpecificationOptionLocalService cpSpecificationOptionLocalService) {
this.cpSpecificationOptionLocalService = cpSpecificationOptionLocalService;
} | java | public void setCPSpecificationOptionLocalService(
com.liferay.commerce.product.service.CPSpecificationOptionLocalService cpSpecificationOptionLocalService) {
this.cpSpecificationOptionLocalService = cpSpecificationOptionLocalService;
} | [
"public",
"void",
"setCPSpecificationOptionLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPSpecificationOptionLocalService",
"cpSpecificationOptionLocalService",
")",
"{",
"this",
".",
"cpSpecificationOptionLocalService",
... | Sets the cp specification option local service.
@param cpSpecificationOptionLocalService the cp specification option local service | [
"Sets",
"the",
"cp",
"specification",
"option",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L1075-L1078 |
53,959 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPSpecificationOptionService | public void setCPSpecificationOptionService(
com.liferay.commerce.product.service.CPSpecificationOptionService cpSpecificationOptionService) {
this.cpSpecificationOptionService = cpSpecificationOptionService;
} | java | public void setCPSpecificationOptionService(
com.liferay.commerce.product.service.CPSpecificationOptionService cpSpecificationOptionService) {
this.cpSpecificationOptionService = cpSpecificationOptionService;
} | [
"public",
"void",
"setCPSpecificationOptionService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPSpecificationOptionService",
"cpSpecificationOptionService",
")",
"{",
"this",
".",
"cpSpecificationOptionService",
"=",
"cpSpecificat... | Sets the cp specification option remote service.
@param cpSpecificationOptionService the cp specification option remote service | [
"Sets",
"the",
"cp",
"specification",
"option",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L1094-L1097 |
53,960 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setCPTaxCategoryLocalService | public void setCPTaxCategoryLocalService(
com.liferay.commerce.product.service.CPTaxCategoryLocalService cpTaxCategoryLocalService) {
this.cpTaxCategoryLocalService = cpTaxCategoryLocalService;
} | java | public void setCPTaxCategoryLocalService(
com.liferay.commerce.product.service.CPTaxCategoryLocalService cpTaxCategoryLocalService) {
this.cpTaxCategoryLocalService = cpTaxCategoryLocalService;
} | [
"public",
"void",
"setCPTaxCategoryLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"product",
".",
"service",
".",
"CPTaxCategoryLocalService",
"cpTaxCategoryLocalService",
")",
"{",
"this",
".",
"cpTaxCategoryLocalService",
"=",
"cpTaxCategoryLocalServic... | Sets the cp tax category local service.
@param cpTaxCategoryLocalService the cp tax category local service | [
"Sets",
"the",
"cp",
"tax",
"category",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L1132-L1135 |
53,961 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setClassNameService | public void setClassNameService(
com.liferay.portal.kernel.service.ClassNameService classNameService) {
this.classNameService = classNameService;
} | java | public void setClassNameService(
com.liferay.portal.kernel.service.ClassNameService classNameService) {
this.classNameService = classNameService;
} | [
"public",
"void",
"setClassNameService",
"(",
"com",
".",
"liferay",
".",
"portal",
".",
"kernel",
".",
"service",
".",
"ClassNameService",
"classNameService",
")",
"{",
"this",
".",
"classNameService",
"=",
"classNameService",
";",
"}"
] | Sets the class name remote service.
@param classNameService the class name remote service | [
"Sets",
"the",
"class",
"name",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L1227-L1230 |
53,962 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java | CPTaxCategoryServiceBaseImpl.setUserService | public void setUserService(
com.liferay.portal.kernel.service.UserService userService) {
this.userService = userService;
} | java | public void setUserService(
com.liferay.portal.kernel.service.UserService userService) {
this.userService = userService;
} | [
"public",
"void",
"setUserService",
"(",
"com",
".",
"liferay",
".",
"portal",
".",
"kernel",
".",
"service",
".",
"UserService",
"userService",
")",
"{",
"this",
".",
"userService",
"=",
"userService",
";",
"}"
] | Sets the user remote service.
@param userService the user remote service | [
"Sets",
"the",
"user",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPTaxCategoryServiceBaseImpl.java#L1303-L1306 |
53,963 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPRuleUserSegmentRelPersistenceImpl.java | CPRuleUserSegmentRelPersistenceImpl.cacheResult | @Override
public void cacheResult(CPRuleUserSegmentRel cpRuleUserSegmentRel) {
entityCache.putResult(CPRuleUserSegmentRelModelImpl.ENTITY_CACHE_ENABLED,
CPRuleUserSegmentRelImpl.class,
cpRuleUserSegmentRel.getPrimaryKey(), cpRuleUserSegmentRel);
cpRuleUserSegmentRel.resetOriginalValues();
} | java | @Override
public void cacheResult(CPRuleUserSegmentRel cpRuleUserSegmentRel) {
entityCache.putResult(CPRuleUserSegmentRelModelImpl.ENTITY_CACHE_ENABLED,
CPRuleUserSegmentRelImpl.class,
cpRuleUserSegmentRel.getPrimaryKey(), cpRuleUserSegmentRel);
cpRuleUserSegmentRel.resetOriginalValues();
} | [
"@",
"Override",
"public",
"void",
"cacheResult",
"(",
"CPRuleUserSegmentRel",
"cpRuleUserSegmentRel",
")",
"{",
"entityCache",
".",
"putResult",
"(",
"CPRuleUserSegmentRelModelImpl",
".",
"ENTITY_CACHE_ENABLED",
",",
"CPRuleUserSegmentRelImpl",
".",
"class",
",",
"cpRule... | Caches the cp rule user segment rel in the entity cache if it is enabled.
@param cpRuleUserSegmentRel the cp rule user segment rel | [
"Caches",
"the",
"cp",
"rule",
"user",
"segment",
"rel",
"in",
"the",
"entity",
"cache",
"if",
"it",
"is",
"enabled",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPRuleUserSegmentRelPersistenceImpl.java#L1148-L1155 |
53,964 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPRuleUserSegmentRelPersistenceImpl.java | CPRuleUserSegmentRelPersistenceImpl.cacheResult | @Override
public void cacheResult(List<CPRuleUserSegmentRel> cpRuleUserSegmentRels) {
for (CPRuleUserSegmentRel cpRuleUserSegmentRel : cpRuleUserSegmentRels) {
if (entityCache.getResult(
CPRuleUserSegmentRelModelImpl.ENTITY_CACHE_ENABLED,
CPRuleUserSegmentRelImpl.class,
cpRuleUserSegmentRel.getP... | java | @Override
public void cacheResult(List<CPRuleUserSegmentRel> cpRuleUserSegmentRels) {
for (CPRuleUserSegmentRel cpRuleUserSegmentRel : cpRuleUserSegmentRels) {
if (entityCache.getResult(
CPRuleUserSegmentRelModelImpl.ENTITY_CACHE_ENABLED,
CPRuleUserSegmentRelImpl.class,
cpRuleUserSegmentRel.getP... | [
"@",
"Override",
"public",
"void",
"cacheResult",
"(",
"List",
"<",
"CPRuleUserSegmentRel",
">",
"cpRuleUserSegmentRels",
")",
"{",
"for",
"(",
"CPRuleUserSegmentRel",
"cpRuleUserSegmentRel",
":",
"cpRuleUserSegmentRels",
")",
"{",
"if",
"(",
"entityCache",
".",
"ge... | Caches the cp rule user segment rels in the entity cache if it is enabled.
@param cpRuleUserSegmentRels the cp rule user segment rels | [
"Caches",
"the",
"cp",
"rule",
"user",
"segment",
"rels",
"in",
"the",
"entity",
"cache",
"if",
"it",
"is",
"enabled",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPRuleUserSegmentRelPersistenceImpl.java#L1162-L1175 |
53,965 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPRuleUserSegmentRelPersistenceImpl.java | CPRuleUserSegmentRelPersistenceImpl.clearCache | @Override
public void clearCache() {
entityCache.clearCache(CPRuleUserSegmentRelImpl.class);
finderCache.clearCache(FINDER_CLASS_NAME_ENTITY);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
} | java | @Override
public void clearCache() {
entityCache.clearCache(CPRuleUserSegmentRelImpl.class);
finderCache.clearCache(FINDER_CLASS_NAME_ENTITY);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
} | [
"@",
"Override",
"public",
"void",
"clearCache",
"(",
")",
"{",
"entityCache",
".",
"clearCache",
"(",
"CPRuleUserSegmentRelImpl",
".",
"class",
")",
";",
"finderCache",
".",
"clearCache",
"(",
"FINDER_CLASS_NAME_ENTITY",
")",
";",
"finderCache",
".",
"clearCache"... | Clears the cache for all cp rule user segment rels.
<p>
The {@link EntityCache} and {@link FinderCache} are both cleared by this method.
</p> | [
"Clears",
"the",
"cache",
"for",
"all",
"cp",
"rule",
"user",
"segment",
"rels",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPRuleUserSegmentRelPersistenceImpl.java#L1184-L1191 |
53,966 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPRuleUserSegmentRelPersistenceImpl.java | CPRuleUserSegmentRelPersistenceImpl.clearCache | @Override
public void clearCache(CPRuleUserSegmentRel cpRuleUserSegmentRel) {
entityCache.removeResult(CPRuleUserSegmentRelModelImpl.ENTITY_CACHE_ENABLED,
CPRuleUserSegmentRelImpl.class, cpRuleUserSegmentRel.getPrimaryKey());
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCa... | java | @Override
public void clearCache(CPRuleUserSegmentRel cpRuleUserSegmentRel) {
entityCache.removeResult(CPRuleUserSegmentRelModelImpl.ENTITY_CACHE_ENABLED,
CPRuleUserSegmentRelImpl.class, cpRuleUserSegmentRel.getPrimaryKey());
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCa... | [
"@",
"Override",
"public",
"void",
"clearCache",
"(",
"CPRuleUserSegmentRel",
"cpRuleUserSegmentRel",
")",
"{",
"entityCache",
".",
"removeResult",
"(",
"CPRuleUserSegmentRelModelImpl",
".",
"ENTITY_CACHE_ENABLED",
",",
"CPRuleUserSegmentRelImpl",
".",
"class",
",",
"cpRu... | Clears the cache for the cp rule user segment rel.
<p>
The {@link EntityCache} and {@link FinderCache} are both cleared by this method.
</p> | [
"Clears",
"the",
"cache",
"for",
"the",
"cp",
"rule",
"user",
"segment",
"rel",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPRuleUserSegmentRelPersistenceImpl.java#L1200-L1207 |
53,967 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPRuleUserSegmentRelPersistenceImpl.java | CPRuleUserSegmentRelPersistenceImpl.findAll | @Override
public List<CPRuleUserSegmentRel> findAll() {
return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
} | java | @Override
public List<CPRuleUserSegmentRel> findAll() {
return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
} | [
"@",
"Override",
"public",
"List",
"<",
"CPRuleUserSegmentRel",
">",
"findAll",
"(",
")",
"{",
"return",
"findAll",
"(",
"QueryUtil",
".",
"ALL_POS",
",",
"QueryUtil",
".",
"ALL_POS",
",",
"null",
")",
";",
"}"
] | Returns all the cp rule user segment rels.
@return the cp rule user segment rels | [
"Returns",
"all",
"the",
"cp",
"rule",
"user",
"segment",
"rels",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPRuleUserSegmentRelPersistenceImpl.java#L1665-L1668 |
53,968 | liferay/com-liferay-commerce | commerce-service/src/main/java/com/liferay/commerce/service/base/CommerceAddressRestrictionLocalServiceBaseImpl.java | CommerceAddressRestrictionLocalServiceBaseImpl.deleteCommerceAddressRestriction | @Indexable(type = IndexableType.DELETE)
@Override
public CommerceAddressRestriction deleteCommerceAddressRestriction(
long commerceAddressRestrictionId) throws PortalException {
return commerceAddressRestrictionPersistence.remove(commerceAddressRestrictionId);
} | java | @Indexable(type = IndexableType.DELETE)
@Override
public CommerceAddressRestriction deleteCommerceAddressRestriction(
long commerceAddressRestrictionId) throws PortalException {
return commerceAddressRestrictionPersistence.remove(commerceAddressRestrictionId);
} | [
"@",
"Indexable",
"(",
"type",
"=",
"IndexableType",
".",
"DELETE",
")",
"@",
"Override",
"public",
"CommerceAddressRestriction",
"deleteCommerceAddressRestriction",
"(",
"long",
"commerceAddressRestrictionId",
")",
"throws",
"PortalException",
"{",
"return",
"commerceAdd... | Deletes the commerce address restriction with the primary key from the database. Also notifies the appropriate model listeners.
@param commerceAddressRestrictionId the primary key of the commerce address restriction
@return the commerce address restriction that was removed
@throws PortalException if a commerce address... | [
"Deletes",
"the",
"commerce",
"address",
"restriction",
"with",
"the",
"primary",
"key",
"from",
"the",
"database",
".",
"Also",
"notifies",
"the",
"appropriate",
"model",
"listeners",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/base/CommerceAddressRestrictionLocalServiceBaseImpl.java#L134-L139 |
53,969 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionOptionValueRelLocalServiceBaseImpl.java | CPDefinitionOptionValueRelLocalServiceBaseImpl.addCPDefinitionOptionValueRel | @Indexable(type = IndexableType.REINDEX)
@Override
public CPDefinitionOptionValueRel addCPDefinitionOptionValueRel(
CPDefinitionOptionValueRel cpDefinitionOptionValueRel) {
cpDefinitionOptionValueRel.setNew(true);
return cpDefinitionOptionValueRelPersistence.update(cpDefinitionOptionValueRel);
} | java | @Indexable(type = IndexableType.REINDEX)
@Override
public CPDefinitionOptionValueRel addCPDefinitionOptionValueRel(
CPDefinitionOptionValueRel cpDefinitionOptionValueRel) {
cpDefinitionOptionValueRel.setNew(true);
return cpDefinitionOptionValueRelPersistence.update(cpDefinitionOptionValueRel);
} | [
"@",
"Indexable",
"(",
"type",
"=",
"IndexableType",
".",
"REINDEX",
")",
"@",
"Override",
"public",
"CPDefinitionOptionValueRel",
"addCPDefinitionOptionValueRel",
"(",
"CPDefinitionOptionValueRel",
"cpDefinitionOptionValueRel",
")",
"{",
"cpDefinitionOptionValueRel",
".",
... | Adds the cp definition option value rel to the database. Also notifies the appropriate model listeners.
@param cpDefinitionOptionValueRel the cp definition option value rel
@return the cp definition option value rel that was added | [
"Adds",
"the",
"cp",
"definition",
"option",
"value",
"rel",
"to",
"the",
"database",
".",
"Also",
"notifies",
"the",
"appropriate",
"model",
"listeners",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionOptionValueRelLocalServiceBaseImpl.java#L114-L121 |
53,970 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionOptionValueRelLocalServiceBaseImpl.java | CPDefinitionOptionValueRelLocalServiceBaseImpl.setExpandoRowLocalService | public void setExpandoRowLocalService(
com.liferay.expando.kernel.service.ExpandoRowLocalService expandoRowLocalService) {
this.expandoRowLocalService = expandoRowLocalService;
} | java | public void setExpandoRowLocalService(
com.liferay.expando.kernel.service.ExpandoRowLocalService expandoRowLocalService) {
this.expandoRowLocalService = expandoRowLocalService;
} | [
"public",
"void",
"setExpandoRowLocalService",
"(",
"com",
".",
"liferay",
".",
"expando",
".",
"kernel",
".",
"service",
".",
"ExpandoRowLocalService",
"expandoRowLocalService",
")",
"{",
"this",
".",
"expandoRowLocalService",
"=",
"expandoRowLocalService",
";",
"}"
... | Sets the expando row local service.
@param expandoRowLocalService the expando row local service | [
"Sets",
"the",
"expando",
"row",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPDefinitionOptionValueRelLocalServiceBaseImpl.java#L1392-L1395 |
53,971 | liferay/com-liferay-commerce | commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPOptionCategoryWrapper.java | CPOptionCategoryWrapper.getDescription | @Override
public String getDescription(String languageId, boolean useDefault) {
return _cpOptionCategory.getDescription(languageId, useDefault);
} | java | @Override
public String getDescription(String languageId, boolean useDefault) {
return _cpOptionCategory.getDescription(languageId, useDefault);
} | [
"@",
"Override",
"public",
"String",
"getDescription",
"(",
"String",
"languageId",
",",
"boolean",
"useDefault",
")",
"{",
"return",
"_cpOptionCategory",
".",
"getDescription",
"(",
"languageId",
",",
"useDefault",
")",
";",
"}"
] | Returns the localized description of this cp option category in the language, optionally using the default language if no localization exists for the requested language.
@param languageId the ID of the language
@param useDefault whether to use the default language if no localization exists for the requested language
@... | [
"Returns",
"the",
"localized",
"description",
"of",
"this",
"cp",
"option",
"category",
"in",
"the",
"language",
"optionally",
"using",
"the",
"default",
"language",
"if",
"no",
"localization",
"exists",
"for",
"the",
"requested",
"language",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPOptionCategoryWrapper.java#L262-L265 |
53,972 | liferay/com-liferay-commerce | commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPOptionCategoryWrapper.java | CPOptionCategoryWrapper.getTitle | @Override
public String getTitle(String languageId, boolean useDefault) {
return _cpOptionCategory.getTitle(languageId, useDefault);
} | java | @Override
public String getTitle(String languageId, boolean useDefault) {
return _cpOptionCategory.getTitle(languageId, useDefault);
} | [
"@",
"Override",
"public",
"String",
"getTitle",
"(",
"String",
"languageId",
",",
"boolean",
"useDefault",
")",
"{",
"return",
"_cpOptionCategory",
".",
"getTitle",
"(",
"languageId",
",",
"useDefault",
")",
";",
"}"
] | Returns the localized title of this cp option category in the language, optionally using the default language if no localization exists for the requested language.
@param languageId the ID of the language
@param useDefault whether to use the default language if no localization exists for the requested language
@return... | [
"Returns",
"the",
"localized",
"title",
"of",
"this",
"cp",
"option",
"category",
"in",
"the",
"language",
"optionally",
"using",
"the",
"default",
"language",
"if",
"no",
"localization",
"exists",
"for",
"the",
"requested",
"language",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPOptionCategoryWrapper.java#L408-L411 |
53,973 | liferay/com-liferay-commerce | commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPOptionCategoryWrapper.java | CPOptionCategoryWrapper.setTitle | @Override
public void setTitle(String title, java.util.Locale locale,
java.util.Locale defaultLocale) {
_cpOptionCategory.setTitle(title, locale, defaultLocale);
} | java | @Override
public void setTitle(String title, java.util.Locale locale,
java.util.Locale defaultLocale) {
_cpOptionCategory.setTitle(title, locale, defaultLocale);
} | [
"@",
"Override",
"public",
"void",
"setTitle",
"(",
"String",
"title",
",",
"java",
".",
"util",
".",
"Locale",
"locale",
",",
"java",
".",
"util",
".",
"Locale",
"defaultLocale",
")",
"{",
"_cpOptionCategory",
".",
"setTitle",
"(",
"title",
",",
"locale",... | Sets the localized title of this cp option category in the language, and sets the default locale.
@param title the localized title of this cp option category
@param locale the locale of the language
@param defaultLocale the default locale | [
"Sets",
"the",
"localized",
"title",
"of",
"this",
"cp",
"option",
"category",
"in",
"the",
"language",
"and",
"sets",
"the",
"default",
"locale",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-api/src/main/java/com/liferay/commerce/product/model/CPOptionCategoryWrapper.java#L722-L726 |
53,974 | liferay/com-liferay-commerce | commerce-service/src/main/java/com/liferay/commerce/service/base/CommerceOrderNoteLocalServiceBaseImpl.java | CommerceOrderNoteLocalServiceBaseImpl.deleteCommerceOrderNote | @Indexable(type = IndexableType.DELETE)
@Override
public CommerceOrderNote deleteCommerceOrderNote(long commerceOrderNoteId)
throws PortalException {
return commerceOrderNotePersistence.remove(commerceOrderNoteId);
} | java | @Indexable(type = IndexableType.DELETE)
@Override
public CommerceOrderNote deleteCommerceOrderNote(long commerceOrderNoteId)
throws PortalException {
return commerceOrderNotePersistence.remove(commerceOrderNoteId);
} | [
"@",
"Indexable",
"(",
"type",
"=",
"IndexableType",
".",
"DELETE",
")",
"@",
"Override",
"public",
"CommerceOrderNote",
"deleteCommerceOrderNote",
"(",
"long",
"commerceOrderNoteId",
")",
"throws",
"PortalException",
"{",
"return",
"commerceOrderNotePersistence",
".",
... | Deletes the commerce order note with the primary key from the database. Also notifies the appropriate model listeners.
@param commerceOrderNoteId the primary key of the commerce order note
@return the commerce order note that was removed
@throws PortalException if a commerce order note with the primary key could not b... | [
"Deletes",
"the",
"commerce",
"order",
"note",
"with",
"the",
"primary",
"key",
"from",
"the",
"database",
".",
"Also",
"notifies",
"the",
"appropriate",
"model",
"listeners",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/base/CommerceOrderNoteLocalServiceBaseImpl.java#L133-L138 |
53,975 | liferay/com-liferay-commerce | commerce-service/src/main/java/com/liferay/commerce/service/base/CommerceOrderNoteLocalServiceBaseImpl.java | CommerceOrderNoteLocalServiceBaseImpl.fetchCommerceOrderNoteByReferenceCode | @Override
public CommerceOrderNote fetchCommerceOrderNoteByReferenceCode(
long companyId, String externalReferenceCode) {
return commerceOrderNotePersistence.fetchByC_ERC(companyId, null);
} | java | @Override
public CommerceOrderNote fetchCommerceOrderNoteByReferenceCode(
long companyId, String externalReferenceCode) {
return commerceOrderNotePersistence.fetchByC_ERC(companyId, null);
} | [
"@",
"Override",
"public",
"CommerceOrderNote",
"fetchCommerceOrderNoteByReferenceCode",
"(",
"long",
"companyId",
",",
"String",
"externalReferenceCode",
")",
"{",
"return",
"commerceOrderNotePersistence",
".",
"fetchByC_ERC",
"(",
"companyId",
",",
"null",
")",
";",
"... | Returns the commerce order note with the matching external reference code and company.
@param companyId the primary key of the company
@param externalReferenceCode the commerce order note's external reference code
@return the matching commerce order note, or <code>null</code> if a matching commerce order note could no... | [
"Returns",
"the",
"commerce",
"order",
"note",
"with",
"the",
"matching",
"external",
"reference",
"code",
"and",
"company",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/base/CommerceOrderNoteLocalServiceBaseImpl.java#L248-L252 |
53,976 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CProductPersistenceImpl.java | CProductPersistenceImpl.cacheResult | @Override
public void cacheResult(CProduct cProduct) {
entityCache.putResult(CProductModelImpl.ENTITY_CACHE_ENABLED,
CProductImpl.class, cProduct.getPrimaryKey(), cProduct);
finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G,
new Object[] { cProduct.getUuid(), cProduct.getGroupId() }, cProduct);
cProduct.... | java | @Override
public void cacheResult(CProduct cProduct) {
entityCache.putResult(CProductModelImpl.ENTITY_CACHE_ENABLED,
CProductImpl.class, cProduct.getPrimaryKey(), cProduct);
finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G,
new Object[] { cProduct.getUuid(), cProduct.getGroupId() }, cProduct);
cProduct.... | [
"@",
"Override",
"public",
"void",
"cacheResult",
"(",
"CProduct",
"cProduct",
")",
"{",
"entityCache",
".",
"putResult",
"(",
"CProductModelImpl",
".",
"ENTITY_CACHE_ENABLED",
",",
"CProductImpl",
".",
"class",
",",
"cProduct",
".",
"getPrimaryKey",
"(",
")",
"... | Caches the c product in the entity cache if it is enabled.
@param cProduct the c product | [
"Caches",
"the",
"c",
"product",
"in",
"the",
"entity",
"cache",
"if",
"it",
"is",
"enabled",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CProductPersistenceImpl.java#L2000-L2009 |
53,977 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CProductPersistenceImpl.java | CProductPersistenceImpl.cacheResult | @Override
public void cacheResult(List<CProduct> cProducts) {
for (CProduct cProduct : cProducts) {
if (entityCache.getResult(CProductModelImpl.ENTITY_CACHE_ENABLED,
CProductImpl.class, cProduct.getPrimaryKey()) == null) {
cacheResult(cProduct);
}
else {
cProduct.resetOriginalValues();
}
... | java | @Override
public void cacheResult(List<CProduct> cProducts) {
for (CProduct cProduct : cProducts) {
if (entityCache.getResult(CProductModelImpl.ENTITY_CACHE_ENABLED,
CProductImpl.class, cProduct.getPrimaryKey()) == null) {
cacheResult(cProduct);
}
else {
cProduct.resetOriginalValues();
}
... | [
"@",
"Override",
"public",
"void",
"cacheResult",
"(",
"List",
"<",
"CProduct",
">",
"cProducts",
")",
"{",
"for",
"(",
"CProduct",
"cProduct",
":",
"cProducts",
")",
"{",
"if",
"(",
"entityCache",
".",
"getResult",
"(",
"CProductModelImpl",
".",
"ENTITY_CAC... | Caches the c products in the entity cache if it is enabled.
@param cProducts the c products | [
"Caches",
"the",
"c",
"products",
"in",
"the",
"entity",
"cache",
"if",
"it",
"is",
"enabled",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CProductPersistenceImpl.java#L2016-L2027 |
53,978 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CProductPersistenceImpl.java | CProductPersistenceImpl.clearCache | @Override
public void clearCache() {
entityCache.clearCache(CProductImpl.class);
finderCache.clearCache(FINDER_CLASS_NAME_ENTITY);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
} | java | @Override
public void clearCache() {
entityCache.clearCache(CProductImpl.class);
finderCache.clearCache(FINDER_CLASS_NAME_ENTITY);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
} | [
"@",
"Override",
"public",
"void",
"clearCache",
"(",
")",
"{",
"entityCache",
".",
"clearCache",
"(",
"CProductImpl",
".",
"class",
")",
";",
"finderCache",
".",
"clearCache",
"(",
"FINDER_CLASS_NAME_ENTITY",
")",
";",
"finderCache",
".",
"clearCache",
"(",
"... | Clears the cache for all c products.
<p>
The {@link EntityCache} and {@link FinderCache} are both cleared by this method.
</p> | [
"Clears",
"the",
"cache",
"for",
"all",
"c",
"products",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CProductPersistenceImpl.java#L2036-L2043 |
53,979 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CProductPersistenceImpl.java | CProductPersistenceImpl.clearCache | @Override
public void clearCache(CProduct cProduct) {
entityCache.removeResult(CProductModelImpl.ENTITY_CACHE_ENABLED,
CProductImpl.class, cProduct.getPrimaryKey());
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
clearUniq... | java | @Override
public void clearCache(CProduct cProduct) {
entityCache.removeResult(CProductModelImpl.ENTITY_CACHE_ENABLED,
CProductImpl.class, cProduct.getPrimaryKey());
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
clearUniq... | [
"@",
"Override",
"public",
"void",
"clearCache",
"(",
"CProduct",
"cProduct",
")",
"{",
"entityCache",
".",
"removeResult",
"(",
"CProductModelImpl",
".",
"ENTITY_CACHE_ENABLED",
",",
"CProductImpl",
".",
"class",
",",
"cProduct",
".",
"getPrimaryKey",
"(",
")",
... | Clears the cache for the c product.
<p>
The {@link EntityCache} and {@link FinderCache} are both cleared by this method.
</p> | [
"Clears",
"the",
"cache",
"for",
"the",
"c",
"product",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CProductPersistenceImpl.java#L2052-L2061 |
53,980 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CProductPersistenceImpl.java | CProductPersistenceImpl.findAll | @Override
public List<CProduct> findAll() {
return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
} | java | @Override
public List<CProduct> findAll() {
return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
} | [
"@",
"Override",
"public",
"List",
"<",
"CProduct",
">",
"findAll",
"(",
")",
"{",
"return",
"findAll",
"(",
"QueryUtil",
".",
"ALL_POS",
",",
"QueryUtil",
".",
"ALL_POS",
",",
"null",
")",
";",
"}"
] | Returns all the c products.
@return the c products | [
"Returns",
"all",
"the",
"c",
"products",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CProductPersistenceImpl.java#L2578-L2581 |
53,981 | liferay/com-liferay-commerce | commerce-shipping-engine-fixed-api/src/main/java/com/liferay/commerce/shipping/engine/fixed/service/CommerceShippingFixedOptionRelLocalServiceWrapper.java | CommerceShippingFixedOptionRelLocalServiceWrapper.getCommerceShippingFixedOptionRel | @Override
public com.liferay.commerce.shipping.engine.fixed.model.CommerceShippingFixedOptionRel getCommerceShippingFixedOptionRel(
long commerceShippingFixedOptionRelId)
throws com.liferay.portal.kernel.exception.PortalException {
return _commerceShippingFixedOptionRelLocalService.getCommerceShippingFixedOption... | java | @Override
public com.liferay.commerce.shipping.engine.fixed.model.CommerceShippingFixedOptionRel getCommerceShippingFixedOptionRel(
long commerceShippingFixedOptionRelId)
throws com.liferay.portal.kernel.exception.PortalException {
return _commerceShippingFixedOptionRelLocalService.getCommerceShippingFixedOption... | [
"@",
"Override",
"public",
"com",
".",
"liferay",
".",
"commerce",
".",
"shipping",
".",
"engine",
".",
"fixed",
".",
"model",
".",
"CommerceShippingFixedOptionRel",
"getCommerceShippingFixedOptionRel",
"(",
"long",
"commerceShippingFixedOptionRelId",
")",
"throws",
"... | Returns the commerce shipping fixed option rel with the primary key.
@param commerceShippingFixedOptionRelId the primary key of the commerce shipping fixed option rel
@return the commerce shipping fixed option rel
@throws PortalException if a commerce shipping fixed option rel with the primary key could not be found | [
"Returns",
"the",
"commerce",
"shipping",
"fixed",
"option",
"rel",
"with",
"the",
"primary",
"key",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-shipping-engine-fixed-api/src/main/java/com/liferay/commerce/shipping/engine/fixed/service/CommerceShippingFixedOptionRelLocalServiceWrapper.java#L230-L235 |
53,982 | liferay/com-liferay-commerce | commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java | CommerceDiscountRelServiceBaseImpl.setCommerceDiscountLocalService | public void setCommerceDiscountLocalService(
com.liferay.commerce.discount.service.CommerceDiscountLocalService commerceDiscountLocalService) {
this.commerceDiscountLocalService = commerceDiscountLocalService;
} | java | public void setCommerceDiscountLocalService(
com.liferay.commerce.discount.service.CommerceDiscountLocalService commerceDiscountLocalService) {
this.commerceDiscountLocalService = commerceDiscountLocalService;
} | [
"public",
"void",
"setCommerceDiscountLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"discount",
".",
"service",
".",
"CommerceDiscountLocalService",
"commerceDiscountLocalService",
")",
"{",
"this",
".",
"commerceDiscountLocalService",
"=",
"commerceDis... | Sets the commerce discount local service.
@param commerceDiscountLocalService the commerce discount local service | [
"Sets",
"the",
"commerce",
"discount",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java#L74-L77 |
53,983 | liferay/com-liferay-commerce | commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java | CommerceDiscountRelServiceBaseImpl.setCommerceDiscountService | public void setCommerceDiscountService(
com.liferay.commerce.discount.service.CommerceDiscountService commerceDiscountService) {
this.commerceDiscountService = commerceDiscountService;
} | java | public void setCommerceDiscountService(
com.liferay.commerce.discount.service.CommerceDiscountService commerceDiscountService) {
this.commerceDiscountService = commerceDiscountService;
} | [
"public",
"void",
"setCommerceDiscountService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"discount",
".",
"service",
".",
"CommerceDiscountService",
"commerceDiscountService",
")",
"{",
"this",
".",
"commerceDiscountService",
"=",
"commerceDiscountService",
";"... | Sets the commerce discount remote service.
@param commerceDiscountService the commerce discount remote service | [
"Sets",
"the",
"commerce",
"discount",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java#L93-L96 |
53,984 | liferay/com-liferay-commerce | commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java | CommerceDiscountRelServiceBaseImpl.setCommerceDiscountRelLocalService | public void setCommerceDiscountRelLocalService(
com.liferay.commerce.discount.service.CommerceDiscountRelLocalService commerceDiscountRelLocalService) {
this.commerceDiscountRelLocalService = commerceDiscountRelLocalService;
} | java | public void setCommerceDiscountRelLocalService(
com.liferay.commerce.discount.service.CommerceDiscountRelLocalService commerceDiscountRelLocalService) {
this.commerceDiscountRelLocalService = commerceDiscountRelLocalService;
} | [
"public",
"void",
"setCommerceDiscountRelLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"discount",
".",
"service",
".",
"CommerceDiscountRelLocalService",
"commerceDiscountRelLocalService",
")",
"{",
"this",
".",
"commerceDiscountRelLocalService",
"=",
... | Sets the commerce discount rel local service.
@param commerceDiscountRelLocalService the commerce discount rel local service | [
"Sets",
"the",
"commerce",
"discount",
"rel",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java#L131-L134 |
53,985 | liferay/com-liferay-commerce | commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java | CommerceDiscountRelServiceBaseImpl.setCommerceDiscountRuleLocalService | public void setCommerceDiscountRuleLocalService(
com.liferay.commerce.discount.service.CommerceDiscountRuleLocalService commerceDiscountRuleLocalService) {
this.commerceDiscountRuleLocalService = commerceDiscountRuleLocalService;
} | java | public void setCommerceDiscountRuleLocalService(
com.liferay.commerce.discount.service.CommerceDiscountRuleLocalService commerceDiscountRuleLocalService) {
this.commerceDiscountRuleLocalService = commerceDiscountRuleLocalService;
} | [
"public",
"void",
"setCommerceDiscountRuleLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"discount",
".",
"service",
".",
"CommerceDiscountRuleLocalService",
"commerceDiscountRuleLocalService",
")",
"{",
"this",
".",
"commerceDiscountRuleLocalService",
"="... | Sets the commerce discount rule local service.
@param commerceDiscountRuleLocalService the commerce discount rule local service | [
"Sets",
"the",
"commerce",
"discount",
"rule",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java#L188-L191 |
53,986 | liferay/com-liferay-commerce | commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java | CommerceDiscountRelServiceBaseImpl.setCommerceDiscountRuleService | public void setCommerceDiscountRuleService(
com.liferay.commerce.discount.service.CommerceDiscountRuleService commerceDiscountRuleService) {
this.commerceDiscountRuleService = commerceDiscountRuleService;
} | java | public void setCommerceDiscountRuleService(
com.liferay.commerce.discount.service.CommerceDiscountRuleService commerceDiscountRuleService) {
this.commerceDiscountRuleService = commerceDiscountRuleService;
} | [
"public",
"void",
"setCommerceDiscountRuleService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"discount",
".",
"service",
".",
"CommerceDiscountRuleService",
"commerceDiscountRuleService",
")",
"{",
"this",
".",
"commerceDiscountRuleService",
"=",
"commerceDiscoun... | Sets the commerce discount rule remote service.
@param commerceDiscountRuleService the commerce discount rule remote service | [
"Sets",
"the",
"commerce",
"discount",
"rule",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java#L207-L210 |
53,987 | liferay/com-liferay-commerce | commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java | CommerceDiscountRelServiceBaseImpl.setCommerceDiscountUsageEntryLocalService | public void setCommerceDiscountUsageEntryLocalService(
com.liferay.commerce.discount.service.CommerceDiscountUsageEntryLocalService commerceDiscountUsageEntryLocalService) {
this.commerceDiscountUsageEntryLocalService = commerceDiscountUsageEntryLocalService;
} | java | public void setCommerceDiscountUsageEntryLocalService(
com.liferay.commerce.discount.service.CommerceDiscountUsageEntryLocalService commerceDiscountUsageEntryLocalService) {
this.commerceDiscountUsageEntryLocalService = commerceDiscountUsageEntryLocalService;
} | [
"public",
"void",
"setCommerceDiscountUsageEntryLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"discount",
".",
"service",
".",
"CommerceDiscountUsageEntryLocalService",
"commerceDiscountUsageEntryLocalService",
")",
"{",
"this",
".",
"commerceDiscountUsageE... | Sets the commerce discount usage entry local service.
@param commerceDiscountUsageEntryLocalService the commerce discount usage entry local service | [
"Sets",
"the",
"commerce",
"discount",
"usage",
"entry",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java#L245-L248 |
53,988 | liferay/com-liferay-commerce | commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java | CommerceDiscountRelServiceBaseImpl.setCommerceDiscountUserSegmentRelLocalService | public void setCommerceDiscountUserSegmentRelLocalService(
com.liferay.commerce.discount.service.CommerceDiscountUserSegmentRelLocalService commerceDiscountUserSegmentRelLocalService) {
this.commerceDiscountUserSegmentRelLocalService = commerceDiscountUserSegmentRelLocalService;
} | java | public void setCommerceDiscountUserSegmentRelLocalService(
com.liferay.commerce.discount.service.CommerceDiscountUserSegmentRelLocalService commerceDiscountUserSegmentRelLocalService) {
this.commerceDiscountUserSegmentRelLocalService = commerceDiscountUserSegmentRelLocalService;
} | [
"public",
"void",
"setCommerceDiscountUserSegmentRelLocalService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"discount",
".",
"service",
".",
"CommerceDiscountUserSegmentRelLocalService",
"commerceDiscountUserSegmentRelLocalService",
")",
"{",
"this",
".",
"commerceDi... | Sets the commerce discount user segment rel local service.
@param commerceDiscountUserSegmentRelLocalService the commerce discount user segment rel local service | [
"Sets",
"the",
"commerce",
"discount",
"user",
"segment",
"rel",
"local",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java#L283-L286 |
53,989 | liferay/com-liferay-commerce | commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java | CommerceDiscountRelServiceBaseImpl.setCommerceDiscountUserSegmentRelService | public void setCommerceDiscountUserSegmentRelService(
com.liferay.commerce.discount.service.CommerceDiscountUserSegmentRelService commerceDiscountUserSegmentRelService) {
this.commerceDiscountUserSegmentRelService = commerceDiscountUserSegmentRelService;
} | java | public void setCommerceDiscountUserSegmentRelService(
com.liferay.commerce.discount.service.CommerceDiscountUserSegmentRelService commerceDiscountUserSegmentRelService) {
this.commerceDiscountUserSegmentRelService = commerceDiscountUserSegmentRelService;
} | [
"public",
"void",
"setCommerceDiscountUserSegmentRelService",
"(",
"com",
".",
"liferay",
".",
"commerce",
".",
"discount",
".",
"service",
".",
"CommerceDiscountUserSegmentRelService",
"commerceDiscountUserSegmentRelService",
")",
"{",
"this",
".",
"commerceDiscountUserSegme... | Sets the commerce discount user segment rel remote service.
@param commerceDiscountUserSegmentRelService the commerce discount user segment rel remote service | [
"Sets",
"the",
"commerce",
"discount",
"user",
"segment",
"rel",
"remote",
"service",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-discount-service/src/main/java/com/liferay/commerce/discount/service/base/CommerceDiscountRelServiceBaseImpl.java#L302-L305 |
53,990 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPOptionLocalServiceBaseImpl.java | CPOptionLocalServiceBaseImpl.fetchCPOptionByReferenceCode | @Override
public CPOption fetchCPOptionByReferenceCode(long companyId,
String externalReferenceCode) {
return cpOptionPersistence.fetchByC_ERC(companyId, null);
} | java | @Override
public CPOption fetchCPOptionByReferenceCode(long companyId,
String externalReferenceCode) {
return cpOptionPersistence.fetchByC_ERC(companyId, null);
} | [
"@",
"Override",
"public",
"CPOption",
"fetchCPOptionByReferenceCode",
"(",
"long",
"companyId",
",",
"String",
"externalReferenceCode",
")",
"{",
"return",
"cpOptionPersistence",
".",
"fetchByC_ERC",
"(",
"companyId",
",",
"null",
")",
";",
"}"
] | Returns the cp option with the matching external reference code and company.
@param companyId the primary key of the company
@param externalReferenceCode the cp option's external reference code
@return the matching cp option, or <code>null</code> if a matching cp option could not be found | [
"Returns",
"the",
"cp",
"option",
"with",
"the",
"matching",
"external",
"reference",
"code",
"and",
"company",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPOptionLocalServiceBaseImpl.java#L265-L269 |
53,991 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPOptionLocalServiceBaseImpl.java | CPOptionLocalServiceBaseImpl.getCPOptionsByUuidAndCompanyId | @Override
public List<CPOption> getCPOptionsByUuidAndCompanyId(String uuid,
long companyId, int start, int end,
OrderByComparator<CPOption> orderByComparator) {
return cpOptionPersistence.findByUuid_C(uuid, companyId, start, end,
orderByComparator);
} | java | @Override
public List<CPOption> getCPOptionsByUuidAndCompanyId(String uuid,
long companyId, int start, int end,
OrderByComparator<CPOption> orderByComparator) {
return cpOptionPersistence.findByUuid_C(uuid, companyId, start, end,
orderByComparator);
} | [
"@",
"Override",
"public",
"List",
"<",
"CPOption",
">",
"getCPOptionsByUuidAndCompanyId",
"(",
"String",
"uuid",
",",
"long",
"companyId",
",",
"int",
"start",
",",
"int",
"end",
",",
"OrderByComparator",
"<",
"CPOption",
">",
"orderByComparator",
")",
"{",
"... | Returns a range of cp options matching the UUID and company.
@param uuid the UUID of the cp options
@param companyId the primary key of the company
@param start the lower bound of the range of cp options
@param end the upper bound of the range of cp options (not inclusive)
@param orderByComparator the comparator to or... | [
"Returns",
"a",
"range",
"of",
"cp",
"options",
"matching",
"the",
"UUID",
"and",
"company",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/base/CPOptionLocalServiceBaseImpl.java#L409-L415 |
53,992 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionValuePersistenceImpl.java | CPOptionValuePersistenceImpl.cacheResult | @Override
public void cacheResult(CPOptionValue cpOptionValue) {
entityCache.putResult(CPOptionValueModelImpl.ENTITY_CACHE_ENABLED,
CPOptionValueImpl.class, cpOptionValue.getPrimaryKey(),
cpOptionValue);
finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G,
new Object[] { cpOptionValue.getUuid(), cpOptionVa... | java | @Override
public void cacheResult(CPOptionValue cpOptionValue) {
entityCache.putResult(CPOptionValueModelImpl.ENTITY_CACHE_ENABLED,
CPOptionValueImpl.class, cpOptionValue.getPrimaryKey(),
cpOptionValue);
finderCache.putResult(FINDER_PATH_FETCH_BY_UUID_G,
new Object[] { cpOptionValue.getUuid(), cpOptionVa... | [
"@",
"Override",
"public",
"void",
"cacheResult",
"(",
"CPOptionValue",
"cpOptionValue",
")",
"{",
"entityCache",
".",
"putResult",
"(",
"CPOptionValueModelImpl",
".",
"ENTITY_CACHE_ENABLED",
",",
"CPOptionValueImpl",
".",
"class",
",",
"cpOptionValue",
".",
"getPrima... | Caches the cp option value in the entity cache if it is enabled.
@param cpOptionValue the cp option value | [
"Caches",
"the",
"cp",
"option",
"value",
"in",
"the",
"entity",
"cache",
"if",
"it",
"is",
"enabled",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionValuePersistenceImpl.java#L3544-L3565 |
53,993 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionValuePersistenceImpl.java | CPOptionValuePersistenceImpl.cacheResult | @Override
public void cacheResult(List<CPOptionValue> cpOptionValues) {
for (CPOptionValue cpOptionValue : cpOptionValues) {
if (entityCache.getResult(
CPOptionValueModelImpl.ENTITY_CACHE_ENABLED,
CPOptionValueImpl.class, cpOptionValue.getPrimaryKey()) == null) {
cacheResult(cpOptionValue);
}
... | java | @Override
public void cacheResult(List<CPOptionValue> cpOptionValues) {
for (CPOptionValue cpOptionValue : cpOptionValues) {
if (entityCache.getResult(
CPOptionValueModelImpl.ENTITY_CACHE_ENABLED,
CPOptionValueImpl.class, cpOptionValue.getPrimaryKey()) == null) {
cacheResult(cpOptionValue);
}
... | [
"@",
"Override",
"public",
"void",
"cacheResult",
"(",
"List",
"<",
"CPOptionValue",
">",
"cpOptionValues",
")",
"{",
"for",
"(",
"CPOptionValue",
"cpOptionValue",
":",
"cpOptionValues",
")",
"{",
"if",
"(",
"entityCache",
".",
"getResult",
"(",
"CPOptionValueMo... | Caches the cp option values in the entity cache if it is enabled.
@param cpOptionValues the cp option values | [
"Caches",
"the",
"cp",
"option",
"values",
"in",
"the",
"entity",
"cache",
"if",
"it",
"is",
"enabled",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionValuePersistenceImpl.java#L3572-L3584 |
53,994 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionValuePersistenceImpl.java | CPOptionValuePersistenceImpl.clearCache | @Override
public void clearCache() {
entityCache.clearCache(CPOptionValueImpl.class);
finderCache.clearCache(FINDER_CLASS_NAME_ENTITY);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
} | java | @Override
public void clearCache() {
entityCache.clearCache(CPOptionValueImpl.class);
finderCache.clearCache(FINDER_CLASS_NAME_ENTITY);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
} | [
"@",
"Override",
"public",
"void",
"clearCache",
"(",
")",
"{",
"entityCache",
".",
"clearCache",
"(",
"CPOptionValueImpl",
".",
"class",
")",
";",
"finderCache",
".",
"clearCache",
"(",
"FINDER_CLASS_NAME_ENTITY",
")",
";",
"finderCache",
".",
"clearCache",
"("... | Clears the cache for all cp option values.
<p>
The {@link EntityCache} and {@link FinderCache} are both cleared by this method.
</p> | [
"Clears",
"the",
"cache",
"for",
"all",
"cp",
"option",
"values",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionValuePersistenceImpl.java#L3593-L3600 |
53,995 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionValuePersistenceImpl.java | CPOptionValuePersistenceImpl.clearCache | @Override
public void clearCache(CPOptionValue cpOptionValue) {
entityCache.removeResult(CPOptionValueModelImpl.ENTITY_CACHE_ENABLED,
CPOptionValueImpl.class, cpOptionValue.getPrimaryKey());
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_... | java | @Override
public void clearCache(CPOptionValue cpOptionValue) {
entityCache.removeResult(CPOptionValueModelImpl.ENTITY_CACHE_ENABLED,
CPOptionValueImpl.class, cpOptionValue.getPrimaryKey());
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_... | [
"@",
"Override",
"public",
"void",
"clearCache",
"(",
"CPOptionValue",
"cpOptionValue",
")",
"{",
"entityCache",
".",
"removeResult",
"(",
"CPOptionValueModelImpl",
".",
"ENTITY_CACHE_ENABLED",
",",
"CPOptionValueImpl",
".",
"class",
",",
"cpOptionValue",
".",
"getPri... | Clears the cache for the cp option value.
<p>
The {@link EntityCache} and {@link FinderCache} are both cleared by this method.
</p> | [
"Clears",
"the",
"cache",
"for",
"the",
"cp",
"option",
"value",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionValuePersistenceImpl.java#L3609-L3618 |
53,996 | liferay/com-liferay-commerce | commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionValuePersistenceImpl.java | CPOptionValuePersistenceImpl.findAll | @Override
public List<CPOptionValue> findAll() {
return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
} | java | @Override
public List<CPOptionValue> findAll() {
return findAll(QueryUtil.ALL_POS, QueryUtil.ALL_POS, null);
} | [
"@",
"Override",
"public",
"List",
"<",
"CPOptionValue",
">",
"findAll",
"(",
")",
"{",
"return",
"findAll",
"(",
"QueryUtil",
".",
"ALL_POS",
",",
"QueryUtil",
".",
"ALL_POS",
",",
"null",
")",
";",
"}"
] | Returns all the cp option values.
@return the cp option values | [
"Returns",
"all",
"the",
"cp",
"option",
"values",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-product-service/src/main/java/com/liferay/commerce/product/service/persistence/impl/CPOptionValuePersistenceImpl.java#L4252-L4255 |
53,997 | liferay/com-liferay-commerce | commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceOrderPaymentPersistenceImpl.java | CommerceOrderPaymentPersistenceImpl.cacheResult | @Override
public void cacheResult(CommerceOrderPayment commerceOrderPayment) {
entityCache.putResult(CommerceOrderPaymentModelImpl.ENTITY_CACHE_ENABLED,
CommerceOrderPaymentImpl.class,
commerceOrderPayment.getPrimaryKey(), commerceOrderPayment);
commerceOrderPayment.resetOriginalValues();
} | java | @Override
public void cacheResult(CommerceOrderPayment commerceOrderPayment) {
entityCache.putResult(CommerceOrderPaymentModelImpl.ENTITY_CACHE_ENABLED,
CommerceOrderPaymentImpl.class,
commerceOrderPayment.getPrimaryKey(), commerceOrderPayment);
commerceOrderPayment.resetOriginalValues();
} | [
"@",
"Override",
"public",
"void",
"cacheResult",
"(",
"CommerceOrderPayment",
"commerceOrderPayment",
")",
"{",
"entityCache",
".",
"putResult",
"(",
"CommerceOrderPaymentModelImpl",
".",
"ENTITY_CACHE_ENABLED",
",",
"CommerceOrderPaymentImpl",
".",
"class",
",",
"commer... | Caches the commerce order payment in the entity cache if it is enabled.
@param commerceOrderPayment the commerce order payment | [
"Caches",
"the",
"commerce",
"order",
"payment",
"in",
"the",
"entity",
"cache",
"if",
"it",
"is",
"enabled",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceOrderPaymentPersistenceImpl.java#L630-L637 |
53,998 | liferay/com-liferay-commerce | commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceOrderPaymentPersistenceImpl.java | CommerceOrderPaymentPersistenceImpl.cacheResult | @Override
public void cacheResult(List<CommerceOrderPayment> commerceOrderPayments) {
for (CommerceOrderPayment commerceOrderPayment : commerceOrderPayments) {
if (entityCache.getResult(
CommerceOrderPaymentModelImpl.ENTITY_CACHE_ENABLED,
CommerceOrderPaymentImpl.class,
commerceOrderPayment.getP... | java | @Override
public void cacheResult(List<CommerceOrderPayment> commerceOrderPayments) {
for (CommerceOrderPayment commerceOrderPayment : commerceOrderPayments) {
if (entityCache.getResult(
CommerceOrderPaymentModelImpl.ENTITY_CACHE_ENABLED,
CommerceOrderPaymentImpl.class,
commerceOrderPayment.getP... | [
"@",
"Override",
"public",
"void",
"cacheResult",
"(",
"List",
"<",
"CommerceOrderPayment",
">",
"commerceOrderPayments",
")",
"{",
"for",
"(",
"CommerceOrderPayment",
"commerceOrderPayment",
":",
"commerceOrderPayments",
")",
"{",
"if",
"(",
"entityCache",
".",
"ge... | Caches the commerce order payments in the entity cache if it is enabled.
@param commerceOrderPayments the commerce order payments | [
"Caches",
"the",
"commerce",
"order",
"payments",
"in",
"the",
"entity",
"cache",
"if",
"it",
"is",
"enabled",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceOrderPaymentPersistenceImpl.java#L644-L657 |
53,999 | liferay/com-liferay-commerce | commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceOrderPaymentPersistenceImpl.java | CommerceOrderPaymentPersistenceImpl.clearCache | @Override
public void clearCache() {
entityCache.clearCache(CommerceOrderPaymentImpl.class);
finderCache.clearCache(FINDER_CLASS_NAME_ENTITY);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
} | java | @Override
public void clearCache() {
entityCache.clearCache(CommerceOrderPaymentImpl.class);
finderCache.clearCache(FINDER_CLASS_NAME_ENTITY);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITH_PAGINATION);
finderCache.clearCache(FINDER_CLASS_NAME_LIST_WITHOUT_PAGINATION);
} | [
"@",
"Override",
"public",
"void",
"clearCache",
"(",
")",
"{",
"entityCache",
".",
"clearCache",
"(",
"CommerceOrderPaymentImpl",
".",
"class",
")",
";",
"finderCache",
".",
"clearCache",
"(",
"FINDER_CLASS_NAME_ENTITY",
")",
";",
"finderCache",
".",
"clearCache"... | Clears the cache for all commerce order payments.
<p>
The {@link EntityCache} and {@link FinderCache} are both cleared by this method.
</p> | [
"Clears",
"the",
"cache",
"for",
"all",
"commerce",
"order",
"payments",
"."
] | 9e54362d7f59531fc684016ba49ee7cdc3a2f22b | https://github.com/liferay/com-liferay-commerce/blob/9e54362d7f59531fc684016ba49ee7cdc3a2f22b/commerce-service/src/main/java/com/liferay/commerce/service/persistence/impl/CommerceOrderPaymentPersistenceImpl.java#L666-L673 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.