Skip to content

Commit c6ff494

Browse files
committed
ElasticSearch to OpenSearch transition for OS consolidation
1 parent 5cd6314 commit c6ff494

File tree

4,014 files changed

+56662
-184
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,014 files changed

+56662
-184
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
global class Action {
2+
global Action(String expression) { }
3+
global Object clone() { }
4+
global String getExpression() { }
5+
global System.PageReference invoke() { }
6+
7+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
global class Component {
2+
global List<ApexPages.Component> childComponents;
3+
global List<ApexPages.ComponentIteration> componentIterations;
4+
global ApexPages.expressions expressions;
5+
global ApexPages.facets facets;
6+
global String id;
7+
global ApexPages.Component parent;
8+
global Boolean rendered;
9+
global Object clone() { }
10+
global ApexPages.Component getComponentById(String id) { }
11+
12+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
global class ComponentIteration {
2+
global List<ApexPages.Component> childComponents;
3+
global Object iterationValue;
4+
global ApexPages.Component parent;
5+
global Object clone() { }
6+
global ApexPages.Component getComponentById(String id) { }
7+
8+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
global class HammerProcessor {
2+
3+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
global class IdeaStandardController {
2+
/**
3+
* Add a reference to each field whose name is specified in list of strings so it is retrieved when the record is loaded by the controller.
4+
*/
5+
global void addFields(List<String> fieldNames) { }
6+
/**
7+
* Cancel changes; returning returl
8+
*/
9+
global System.PageReference cancel() { }
10+
/**
11+
* Delete a record
12+
*/
13+
global System.PageReference delete() { }
14+
/**
15+
* Edit a record
16+
*/
17+
global System.PageReference edit() { }
18+
global Boolean equals(Object obj) { }
19+
/**
20+
* Get the comments for this idea
21+
*/
22+
global List<IdeaComment> getCommentList() { }
23+
/**
24+
* Get the ID for the subject record
25+
*/
26+
global String getId() { }
27+
/**
28+
* Get the subject record
29+
*/
30+
global SObject getRecord() { }
31+
global Integer hashCode() { }
32+
/**
33+
* Save any modified or new records
34+
*/
35+
global System.PageReference save() { }
36+
global String toString() { }
37+
/**
38+
* Get View URL for a record
39+
*/
40+
global System.PageReference view() { }
41+
42+
}
Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
global class IdeaStandardSetController {
2+
/**
3+
* Add a reference to each field whose name is specified in list of strings so it is retrieved when the record is loaded by the controller.
4+
*/
5+
global void addFields(List<String> fieldNames) { }
6+
/**
7+
* Cancel changes; returning returl
8+
*/
9+
global System.PageReference cancel() { }
10+
global Boolean equals(Object obj) { }
11+
/**
12+
* First
13+
*/
14+
global void first() { }
15+
/**
16+
* Indicate whether there are more records than the max record limit
17+
*/
18+
global Boolean getCompleteResult() { }
19+
/**
20+
* Return the filter ID
21+
*/
22+
global String getFilterId() { }
23+
/**
24+
* Indicate whether there are any more records
25+
*/
26+
global Boolean getHasNext() { }
27+
/**
28+
* Indicate whether there are previous records
29+
*/
30+
global Boolean getHasPrevious() { }
31+
/**
32+
* Get the standard list of ideas
33+
*/
34+
global List<Idea> getIdeaList() { }
35+
/**
36+
* Return The set of listviews available to the current user
37+
*/
38+
global List<System.SelectOption> getListViewOptions() { }
39+
/**
40+
* Return the pagenumber
41+
*/
42+
global Integer getPageNumber() { }
43+
/**
44+
* Return the page size
45+
*/
46+
global Integer getPageSize() { }
47+
/**
48+
* Get the subject record
49+
*/
50+
global SObject getRecord() { }
51+
/**
52+
* Get the records
53+
*/
54+
global List<SObject> getRecords() { }
55+
/**
56+
* Return the result size
57+
*/
58+
global Integer getResultSize() { }
59+
/**
60+
* Get the selected records
61+
*/
62+
global List<SObject> getSelected() { }
63+
global Integer hashCode() { }
64+
/**
65+
* Last
66+
*/
67+
global void last() { }
68+
/**
69+
* Next
70+
*/
71+
global void next() { }
72+
/**
73+
* Previous
74+
*/
75+
global void previous() { }
76+
/**
77+
* Save any modified or new records
78+
*/
79+
global System.PageReference save() { }
80+
/**
81+
* Set the filter ID
82+
*/
83+
global void setFilterId(String filterId) { }
84+
/**
85+
* Set the page number
86+
*/
87+
global void setPageNumber(Integer pageNumber) { }
88+
/**
89+
* Set the page size
90+
*/
91+
global void setPageSize(Integer pageSize) { }
92+
/**
93+
* Set the selected records
94+
*/
95+
global void setSelected(List<SObject> selected) { }
96+
global String toString() { }
97+
98+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
global class KnowledgeArticleVersionStandardController {
2+
global KnowledgeArticleVersionStandardController(SObject sobject) { }
3+
/**
4+
* Add a reference to each field whose name is specified in list of strings so it is retrieved when the record is loaded by the controller.
5+
*/
6+
global void addFields(List<String> fieldNames) { }
7+
/**
8+
* Cancel changes; returning returl
9+
*/
10+
global System.PageReference cancel() { }
11+
global Boolean equals(Object obj) { }
12+
/**
13+
* Get the ID for the subject record
14+
*/
15+
global String getId() { }
16+
/**
17+
* Get the subject record
18+
*/
19+
global SObject getRecord() { }
20+
/**
21+
* Get the ID for the source object record when creating a new article from another object
22+
*/
23+
global String getSourceId() { }
24+
global Integer hashCode() { }
25+
/**
26+
* Select a default data category for the specified data category group when creating a new article
27+
*/
28+
global void selectDataCategory(String categoryGroup, String category) { }
29+
global String toString() { }
30+
/**
31+
* Get View URL for a record
32+
*/
33+
global System.PageReference view() { }
34+
35+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
global class Message {
2+
global Message(ApexPages.Severity severity, String summary, String detail, String id) { }
3+
global Message(ApexPages.Severity severity, String summary, String detail) { }
4+
global Message(ApexPages.Severity severity, String message) { }
5+
global Boolean equals(Object obj) { }
6+
/**
7+
* Get the message label
8+
*/
9+
global String getComponentLabel() { }
10+
/**
11+
* Get the message detail
12+
*/
13+
global String getDetail() { }
14+
/**
15+
* Get the message severity
16+
*/
17+
global ApexPages.Severity getSeverity() { }
18+
/**
19+
* Get the message summary
20+
*/
21+
global String getSummary() { }
22+
global Integer hashCode() { }
23+
global String toString() { }
24+
25+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
global class PageReference {
2+
3+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
global class SelectOption {
2+
3+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
global enum Severity {
2+
CONFIRM,
3+
ERROR,
4+
FATAL,
5+
INFO,
6+
WARNING
7+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
global class StandardController {
2+
global StandardController(SObject sobject) { }
3+
/**
4+
* Add a reference to each field whose name is specified in list of strings so it is retrieved when the record is loaded by the controller.
5+
*/
6+
global void addFields(List<String> fieldNames) { }
7+
/**
8+
* Cancel changes; returning returl
9+
*/
10+
global System.PageReference cancel() { }
11+
/**
12+
* Delete a record
13+
*/
14+
global System.PageReference delete() { }
15+
/**
16+
* Edit a record
17+
*/
18+
global System.PageReference edit() { }
19+
global Boolean equals(Object obj) { }
20+
/**
21+
* Get the ID for the subject record
22+
*/
23+
global String getId() { }
24+
/**
25+
* Get the subject record
26+
*/
27+
global SObject getRecord() { }
28+
global Integer hashCode() { }
29+
/**
30+
* Save any modified or new records
31+
*/
32+
global System.PageReference save() { }
33+
global String toString() { }
34+
/**
35+
* Get View URL for a record
36+
*/
37+
global System.PageReference view() { }
38+
39+
}

0 commit comments

Comments
 (0)