File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -390,12 +390,12 @@ public final class io/sentry/DataCollection {
390390 public fun getGraphql ()Lio/sentry/DataCollection$Graphql;
391391 public fun getHttpBodies ()Ljava/util/Set;
392392 public fun getHttpHeaders ()Lio/sentry/DataCollection$HttpHeaders;
393- public fun getQueryParams ()Lio/sentry/KeyValueCollectionBehavior;
393+ public fun getUrlQueryParams ()Lio/sentry/KeyValueCollectionBehavior;
394394 public fun getUserInfo ()Ljava/lang/Boolean;
395395 public fun setCookies (Lio/sentry/KeyValueCollectionBehavior;)V
396396 public fun setDatabaseQueryData (Z)V
397397 public fun setHttpBodies (Ljava/util/Set;)V
398- public fun setQueryParams (Lio/sentry/KeyValueCollectionBehavior;)V
398+ public fun setUrlQueryParams (Lio/sentry/KeyValueCollectionBehavior;)V
399399 public fun setUserInfo (Z)V
400400}
401401
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ public final class DataCollection {
1313 private boolean overridden ;
1414 private @ Nullable Boolean userInfo ;
1515 private @ Nullable KeyValueCollectionBehavior cookies ;
16- private @ Nullable KeyValueCollectionBehavior queryParams ;
16+ private @ Nullable KeyValueCollectionBehavior urlQueryParams ;
1717 private @ Nullable Set <HttpBodyType > httpBodies ;
1818 private @ Nullable Boolean databaseQueryData ;
1919 private final @ NotNull HttpHeaders httpHeaders = new HttpHeaders ();
@@ -43,12 +43,12 @@ public void setCookies(final @Nullable KeyValueCollectionBehavior cookies) {
4343 this .cookies = cookies ;
4444 }
4545
46- public @ Nullable KeyValueCollectionBehavior getQueryParams () {
47- return queryParams ;
46+ public @ Nullable KeyValueCollectionBehavior getUrlQueryParams () {
47+ return urlQueryParams ;
4848 }
4949
50- public void setQueryParams (final @ Nullable KeyValueCollectionBehavior queryParams ) {
51- this .queryParams = queryParams ;
50+ public void setUrlQueryParams (final @ Nullable KeyValueCollectionBehavior urlQueryParams ) {
51+ this .urlQueryParams = urlQueryParams ;
5252 }
5353
5454 public @ Nullable Set <HttpBodyType > getHttpBodies () {
@@ -85,7 +85,7 @@ boolean isExplicitlyConfigured() {
8585 return overridden
8686 || userInfo != null
8787 || cookies != null
88- || queryParams != null
88+ || urlQueryParams != null
8989 || httpBodies != null
9090 || databaseQueryData != null
9191 || httpHeaders .hasOverrides ()
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class DataCollectionTest {
1111
1212 assertThat(dataCollection.userInfo).isNull()
1313 assertThat(dataCollection.cookies).isNull()
14- assertThat(dataCollection.queryParams ).isNull()
14+ assertThat(dataCollection.urlQueryParams ).isNull()
1515 assertThat(dataCollection.httpBodies).isNull()
1616 assertThat(dataCollection.databaseQueryData).isNull()
1717 assertThat(dataCollection.httpHeaders.request).isNull()
You can’t perform that action at this time.
0 commit comments