Skip to content

Commit

Permalink
Adds access modifier to objects
Browse files Browse the repository at this point in the history
  • Loading branch information
ajkauffmann committed Dec 9, 2024
1 parent 630b63a commit 4abc3fb
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ namespace System.RestClient;

codeunit 2361 "HttpAuthOAuthClientCredentials" implements "Http Authentication"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ namespace System.RestClient;
/// <summary>Implementation of the "Http Authentication" interface for a anonymous request.</summary>
codeunit 2358 "Http Authentication Anonymous" implements "Http Authentication"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ using System;

codeunit 2359 "Http Authentication Basic" implements "Http Authentication"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.RestClient;

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.RestClient;

codeunit 2362 "Rest Client Exception Builder"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ namespace System.RestClient;

codeunit 2360 "Http Client Handler" implements "Http Client Handler"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ using System.Utilities;
/// <summary>Holder object for the Http Content data.</summary>
codeunit 2354 "Http Content"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ using System.Utilities;

codeunit 2355 "Http Content Impl."
{
Access = Internal;
InherentEntitlements = X;
InherentPermissions = X;

Access = Internal;

var
HttpContent: HttpContent;
ContentTypeEmptyErr: Label 'The value of the Content-Type header must be specified.';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ namespace System.RestClient;
/// <summary>Holder object for the HTTP request data.</summary>
codeunit 2352 "Http Request Message"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ namespace System.RestClient;
/// <summary>Holder object for the HTTP response data.</summary>
codeunit 2356 "Http Response Message"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ namespace System.RestClient;
/// <summary>Provides functionality to easily work with the HttpClient object.</summary>
codeunit 2350 "Rest Client"
{
Access = Public;
InherentEntitlements = X;
InherentPermissions = X;

Expand Down

0 comments on commit 4abc3fb

Please sign in to comment.