Skip to content

Commit 47e2404

Browse files
committed
- removes wrongly added filter and orderby methods in java
1 parent 56a5b25 commit 47e2404

File tree

5 files changed

+0
-131
lines changed

5 files changed

+0
-131
lines changed

Templates/Java/requests_extensions/BaseEntityReferenceRequest.java.tt

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -58,30 +58,6 @@ import <#=importNamespace#>.core.IBaseClient;
5858
return (<#=c.TypeReferenceRequest()#>)this;
5959
}
6060
<# } #>
61-
<# if (c.GetFeatures().CanFilter) { #>
62-
/**
63-
* Sets the filter clause for the request
64-
*
65-
* @param value the filter clause
66-
* @return the updated request
67-
*/
68-
public <#=c.ITypeReferenceRequest()#> filter(final String value) {
69-
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
70-
return (<#=c.TypeReferenceRequest()#>)this;
71-
}
72-
<# } #>
73-
<# if (c.GetFeatures().CanSort) { #>
74-
/**
75-
* Sets the order by clause for the request
76-
*
77-
* @param value the order by clause
78-
* @return the updated request
79-
*/
80-
public <#=c.ITypeReferenceRequest()#> orderBy(final String value) {
81-
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
82-
return (<#=c.TypeReferenceRequest()#>)this;
83-
}
84-
<# } #>
8561
<# if (c.GetFeatures().CanUpdate) { #>
8662
/**
8763
* Puts the <#=c.TypeName()#>

Templates/Java/requests_extensions/BaseEntityRequest.java.tt

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -98,32 +98,6 @@ import <#=importNamespace#>.http.HttpMethod;
9898
return (<#=c.TypeRequest()#>)this;
9999
}
100100

101-
<# } #>
102-
<# if (c.GetFeatures().CanFilter) { #>
103-
/**
104-
* Sets the filter clause for the request
105-
*
106-
* @param value the filter clause
107-
* @return the updated request
108-
*/
109-
public <#=c.ITypeRequest()#> filter(final String value) {
110-
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
111-
return (<#=c.TypeRequest()#>)this;
112-
}
113-
114-
<# } #>
115-
<# if (c.GetFeatures().CanSort) { #>
116-
/**
117-
* Sets the order by clause for the request
118-
*
119-
* @param value the order by clause
120-
* @return the updated request
121-
*/
122-
public <#=c.ITypeRequest()#> orderBy(final String value) {
123-
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
124-
return (<#=c.TypeRequest()#>)this;
125-
}
126-
127101
<# } #>
128102
<# if (c.AsOdcmProperty() != null && c.AsOdcmProperty().IsCollection && c.GetFeatures().CanUseTop) { #>
129103

Templates/Java/requests_extensions/BaseEntityWithReferenceRequest.java.tt

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -88,28 +88,4 @@ import <#=importNamespace#>.serializer.IJsonBackedObject;
8888
return (<#=c.TypeWithReferencesRequest()#>)this;
8989
}
9090
<# } #>
91-
<# if (c.GetFeatures().CanFilter) { #>
92-
/**
93-
* Sets the filter clause for the request
94-
*
95-
* @param value the filter clause
96-
* @return the updated request
97-
*/
98-
public <#=c.ITypeWithReferencesRequest()#> filter(final String value) {
99-
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
100-
return (<#=c.TypeWithReferencesRequest()#>)this;
101-
}
102-
<# } #>
103-
<# if (c.GetFeatures().CanSort) { #>
104-
/**
105-
* Sets the order by clause for the request
106-
*
107-
* @param value the order by clause
108-
* @return the updated request
109-
*/
110-
public <#=c.ITypeWithReferencesRequest()#> orderBy(final String value) {
111-
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
112-
return (<#=c.TypeWithReferencesRequest()#>)this;
113-
}
114-
<# } #>
11591
}

Templates/Java/requests_extensions/BaseMethodBodyRequest.java.tt

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -105,31 +105,5 @@ import <#=importNamespace#>.http.HttpMethod;
105105
return (<#=typeRequest#>)this;
106106
}
107107

108-
<# } #>
109-
<# if (c.GetFeatures().CanFilter) { #>
110-
/**
111-
* Sets the filter clause for the request
112-
*
113-
* @param value the filter clause
114-
* @return the updated request
115-
*/
116-
public <#=iTypeRequest#> filter(final String value) {
117-
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
118-
return (<#=typeRequest#>)this;
119-
}
120-
121-
<# } #>
122-
<# if (c.GetFeatures().CanSort) { #>
123-
/**
124-
* Sets the order by clause for the request
125-
*
126-
* @param value the order by clause
127-
* @return the updated request
128-
*/
129-
public <#=iTypeRequest#> orderBy(final String value) {
130-
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
131-
return (<#=typeRequest#>)this;
132-
}
133-
134108
<# } #>
135109
}

Templates/Java/requests_extensions/BaseMethodRequest.java.tt

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -79,37 +79,6 @@ if (c.AsOdcmMethod().IsAction()) {
7979
return (<#=c.TypeRequest()#>)this;
8080
}
8181

82-
<#
83-
}
84-
85-
if (c.GetFeatures().CanFilter) {
86-
#>
87-
/**
88-
* Sets the filter clause for the request
89-
*
90-
* @param value the filter clause
91-
* @return the updated request
92-
*/
93-
public <#=c.ITypeRequest()#> filter(final String value) {
94-
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$filter", value));
95-
return (<#=c.TypeRequest()#>)this;
96-
}
97-
98-
<#
99-
}
100-
if (c.GetFeatures().CanSort) {
101-
#>
102-
/**
103-
* Sets the order by clause for the request
104-
*
105-
* @param value the order by clause
106-
* @return the updated request
107-
*/
108-
public <#=c.ITypeRequest()#> orderBy(final String value) {
109-
getQueryOptions().add(new com.microsoft.graph.options.QueryOption("$orderby", value));
110-
return (<#=c.TypeRequest()#>)this;
111-
}
112-
11382
<#
11483
}
11584

0 commit comments

Comments
 (0)