Skip to content

Commit fe151a6

Browse files
author
Caitlin Bales (MSFT)
committed
Add param and return to IRequestBuilders
1 parent a75d736 commit fe151a6

File tree

132 files changed

+845
-5
lines changed

Some content is hidden

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

132 files changed

+845
-5
lines changed

src/main/java/com/microsoft/graph/models/generated/BaseAssignedPlan.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ public final AdditionalDataManager additionalDataManager() {
5151

5252
/**
5353
* The Capability Status.
54-
* For example, Enabled.
54+
* For example, "Enabled".
5555
*/
5656
@SerializedName("capabilityStatus")
5757
@Expose
5858
public String capabilityStatus;
5959

6060
/**
6161
* The Service.
62-
* The name of the service; for example, Exchange.
62+
* The name of the service; for example, "Exchange".
6363
*/
6464
@SerializedName("service")
6565
@Expose

src/main/java/com/microsoft/graph/models/generated/BaseUser.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public class BaseUser extends DirectoryObject implements IJsonBackedObject {
8181

8282
/**
8383
* The Country.
84-
* The country/region in which the user is located; for example, “US” or “UK”. Supports $filter.
84+
* The country/region in which the user is located; for example, "US" or "UK". Supports $filter.
8585
*/
8686
@SerializedName("country")
8787
@Expose
@@ -185,7 +185,7 @@ public class BaseUser extends DirectoryObject implements IJsonBackedObject {
185185

186186
/**
187187
* The Password Policies.
188-
* Specifies password policies for the user. This value is an enumeration with one possible value being DisableStrongPassword, which allows weaker passwords than the default policy to be specified. DisablePasswordExpiration can also be specified. The two may be specified together; for example: "DisablePasswordExpiration, DisableStrongPassword".
188+
* Specifies password policies for the user. This value is an enumeration with one possible value being "DisableStrongPassword", which allows weaker passwords than the default policy to be specified. "DisablePasswordExpiration" can also be specified. The two may be specified together; for example: "DisablePasswordExpiration, DisableStrongPassword".
189189
*/
190190
@SerializedName("passwordPolicies")
191191
@Expose
@@ -281,7 +281,7 @@ public class BaseUser extends DirectoryObject implements IJsonBackedObject {
281281

282282
/**
283283
* The User Type.
284-
* A string value that can be used to classify user types in your directory, such as Member and Guest. Supports $filter.
284+
* A string value that can be used to classify user types in your directory, such as "Member" and "Guest". Supports $filter.
285285
*/
286286
@SerializedName("userType")
287287
@Expose

src/main/java/com/microsoft/graph/requests/generated/IBaseAttachmentRequestBuilder.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@
2525
public interface IBaseAttachmentRequestBuilder extends IRequestBuilder {
2626
/**
2727
* Creates the request
28+
*
29+
* @return The IAttachmentRequest instance
2830
*/
2931
IAttachmentRequest buildRequest();
3032

3133
/**
3234
* Creates the request with specific options instead of the existing options
35+
*
36+
* @param requestOptions The options for this request
37+
* @return The IAttachmentRequest instance
3338
*/
3439
IAttachmentRequest buildRequest(final java.util.List<? extends Option> requestOptions);
3540

src/main/java/com/microsoft/graph/requests/generated/IBaseBaseItemRequestBuilder.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,30 @@
2525
public interface IBaseBaseItemRequestBuilder extends IRequestBuilder {
2626
/**
2727
* Creates the request
28+
*
29+
* @return The IBaseItemRequest instance
2830
*/
2931
IBaseItemRequest buildRequest();
3032

3133
/**
3234
* Creates the request with specific options instead of the existing options
35+
*
36+
* @param requestOptions The options for this request
37+
* @return The IBaseItemRequest instance
3338
*/
3439
IBaseItemRequest buildRequest(final java.util.List<? extends Option> requestOptions);
3540

3641
/**
3742
* Gets the request builder for User.
43+
*
44+
* @return The IUserWithReferenceRequestBuilder instance
3845
*/
3946
IUserWithReferenceRequestBuilder createdByUser();
4047

4148
/**
4249
* Gets the request builder for User.
50+
*
51+
* @return The IUserWithReferenceRequestBuilder instance
4352
*/
4453
IUserWithReferenceRequestBuilder lastModifiedByUser();
4554

src/main/java/com/microsoft/graph/requests/generated/IBaseCalendarGroupRequestBuilder.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@
2525
public interface IBaseCalendarGroupRequestBuilder extends IRequestBuilder {
2626
/**
2727
* Creates the request
28+
*
29+
* @return The ICalendarGroupRequest instance
2830
*/
2931
ICalendarGroupRequest buildRequest();
3032

3133
/**
3234
* Creates the request with specific options instead of the existing options
35+
*
36+
* @param requestOptions The options for this request
37+
* @return The ICalendarGroupRequest instance
3338
*/
3439
ICalendarGroupRequest buildRequest(final java.util.List<? extends Option> requestOptions);
3540

src/main/java/com/microsoft/graph/requests/generated/IBaseCalendarRequestBuilder.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@
2525
public interface IBaseCalendarRequestBuilder extends IRequestBuilder {
2626
/**
2727
* Creates the request
28+
*
29+
* @return The ICalendarRequest instance
2830
*/
2931
ICalendarRequest buildRequest();
3032

3133
/**
3234
* Creates the request with specific options instead of the existing options
35+
*
36+
* @param requestOptions The options for this request
37+
* @return The ICalendarRequest instance
3338
*/
3439
ICalendarRequest buildRequest(final java.util.List<? extends Option> requestOptions);
3540

src/main/java/com/microsoft/graph/requests/generated/IBaseColumnDefinitionRequestBuilder.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@
2525
public interface IBaseColumnDefinitionRequestBuilder extends IRequestBuilder {
2626
/**
2727
* Creates the request
28+
*
29+
* @return The IColumnDefinitionRequest instance
2830
*/
2931
IColumnDefinitionRequest buildRequest();
3032

3133
/**
3234
* Creates the request with specific options instead of the existing options
35+
*
36+
* @param requestOptions The options for this request
37+
* @return The IColumnDefinitionRequest instance
3338
*/
3439
IColumnDefinitionRequest buildRequest(final java.util.List<? extends Option> requestOptions);
3540

src/main/java/com/microsoft/graph/requests/generated/IBaseColumnLinkRequestBuilder.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@
2525
public interface IBaseColumnLinkRequestBuilder extends IRequestBuilder {
2626
/**
2727
* Creates the request
28+
*
29+
* @return The IColumnLinkRequest instance
2830
*/
2931
IColumnLinkRequest buildRequest();
3032

3133
/**
3234
* Creates the request with specific options instead of the existing options
35+
*
36+
* @param requestOptions The options for this request
37+
* @return The IColumnLinkRequest instance
3338
*/
3439
IColumnLinkRequest buildRequest(final java.util.List<? extends Option> requestOptions);
3540

src/main/java/com/microsoft/graph/requests/generated/IBaseContactFolderRequestBuilder.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@
2525
public interface IBaseContactFolderRequestBuilder extends IRequestBuilder {
2626
/**
2727
* Creates the request
28+
*
29+
* @return The IContactFolderRequest instance
2830
*/
2931
IContactFolderRequest buildRequest();
3032

3133
/**
3234
* Creates the request with specific options instead of the existing options
35+
*
36+
* @param requestOptions The options for this request
37+
* @return The IContactFolderRequest instance
3338
*/
3439
IContactFolderRequest buildRequest(final java.util.List<? extends Option> requestOptions);
3540

src/main/java/com/microsoft/graph/requests/generated/IBaseContactRequestBuilder.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,16 @@
2525
public interface IBaseContactRequestBuilder extends IRequestBuilder {
2626
/**
2727
* Creates the request
28+
*
29+
* @return The IContactRequest instance
2830
*/
2931
IContactRequest buildRequest();
3032

3133
/**
3234
* Creates the request with specific options instead of the existing options
35+
*
36+
* @param requestOptions The options for this request
37+
* @return The IContactRequest instance
3338
*/
3439
IContactRequest buildRequest(final java.util.List<? extends Option> requestOptions);
3540

@@ -47,6 +52,8 @@ public interface IBaseContactRequestBuilder extends IRequestBuilder {
4752

4853
/**
4954
* Gets the request builder for ProfilePhoto.
55+
*
56+
* @return The IProfilePhotoRequestBuilder instance
5057
*/
5158
IProfilePhotoRequestBuilder photo();
5259

0 commit comments

Comments
 (0)