Skip to content

Commit f7fd9ae

Browse files
committed
October updates - Bring in generated files using latest metadata file.
1 parent 79d60c2 commit f7fd9ae

16 files changed

+607
-3
lines changed

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ mavenBintraySnapshotUrl = http://oss.jfrog.org/artifactory/oss-snapshot-local
2626
mavenGroupId = com.microsoft.graph
2727
mavenArtifactId = microsoft-graph
2828
mavenMajorVersion = 1
29-
mavenMinorVersion = 1
30-
mavenPatchVersion = 0
29+
mavenMinorVersion = 0
30+
mavenPatchVersion = 1
3131
mavenArtifactSuffix =
3232
nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven
3333

src/main/java/com/microsoft/graph/core/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ private Constants() {
1212
public static final String APPID = "app-id";
1313
public static final String USERNAME = "[email protected]";
1414
public static final String PASSWORD = "password";
15-
public static final String VERSION_NAME = "1.0.0";
15+
public static final String VERSION_NAME = "1.0.1";
1616
}
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.models.extensions.*;
10+
import com.microsoft.graph.models.generated.*;
11+
import com.microsoft.graph.http.*;
12+
import com.microsoft.graph.requests.extensions.*;
13+
import com.microsoft.graph.requests.generated.*;
14+
import com.microsoft.graph.options.*;
15+
import com.microsoft.graph.serializer.*;
16+
17+
import java.util.Arrays;
18+
import java.util.EnumSet;
19+
20+
import com.google.gson.JsonObject;
21+
import com.google.gson.annotations.*;
22+
23+
// This file is available for extending, afterwards please submit a pull request.
24+
25+
/**
26+
* The class for the Drive Item Preview Body.
27+
*/
28+
public class DriveItemPreviewBody extends BaseDriveItemPreviewBody {
29+
30+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.models.extensions.*;
10+
import com.microsoft.graph.models.generated.*;
11+
import com.microsoft.graph.http.*;
12+
import com.microsoft.graph.requests.extensions.*;
13+
import com.microsoft.graph.requests.generated.*;
14+
import com.microsoft.graph.options.*;
15+
import com.microsoft.graph.serializer.*;
16+
17+
import java.util.Arrays;
18+
import java.util.EnumSet;
19+
// This file is available for extending, afterwards please submit a pull request.
20+
21+
/**
22+
* The class for the Item Preview Info.
23+
*/
24+
public class ItemPreviewInfo extends BaseItemPreviewInfo {
25+
26+
}
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.generated;
6+
7+
8+
import com.google.gson.annotations.Expose;
9+
import com.google.gson.annotations.SerializedName;
10+
import com.google.gson.JsonObject;
11+
import com.microsoft.graph.serializer.ISerializer;
12+
import com.microsoft.graph.models.extensions.*;
13+
import java.util.EnumSet;
14+
15+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
16+
17+
/**
18+
* The class for the Base Drive Item Preview Body.
19+
*/
20+
public class BaseDriveItemPreviewBody {
21+
22+
/**
23+
* The page.
24+
*
25+
*/
26+
@SerializedName("page")
27+
@Expose
28+
public String page;
29+
30+
/**
31+
* The zoom.
32+
*
33+
*/
34+
@SerializedName("zoom")
35+
@Expose
36+
public Double zoom;
37+
38+
39+
/**
40+
* The raw representation of this class
41+
*/
42+
private JsonObject rawObject;
43+
44+
/**
45+
* The serializer
46+
*/
47+
private ISerializer serializer;
48+
49+
/**
50+
* Gets the raw representation of this class
51+
*
52+
* @return the raw representation of this class
53+
*/
54+
public JsonObject getRawObject() {
55+
return rawObject;
56+
}
57+
58+
/**
59+
* Gets serializer
60+
*
61+
* @return the serializer
62+
*/
63+
protected ISerializer getSerializer() {
64+
return serializer;
65+
}
66+
67+
/**
68+
* Sets the raw JSON object
69+
*
70+
* @param serializer the serializer
71+
* @param json the JSON object to set this object to
72+
*/
73+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
74+
this.serializer = serializer;
75+
rawObject = json;
76+
77+
}
78+
}
Lines changed: 103 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.models.generated;
6+
import com.microsoft.graph.concurrency.*;
7+
import com.microsoft.graph.core.*;
8+
import com.microsoft.graph.http.*;
9+
import com.microsoft.graph.options.*;
10+
import com.microsoft.graph.serializer.*;
11+
import java.util.Arrays;
12+
import java.util.EnumSet;
13+
14+
15+
import com.google.gson.JsonObject;
16+
import com.google.gson.JsonElement;
17+
import com.google.gson.annotations.*;
18+
import java.util.HashMap;
19+
import java.util.Map;
20+
21+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
22+
23+
/**
24+
* The class for the Base Item Preview Info.
25+
*/
26+
public class BaseItemPreviewInfo implements IJsonBackedObject {
27+
28+
@SerializedName("@odata.type")
29+
@Expose
30+
public String oDataType;
31+
32+
private transient AdditionalDataManager additionalDataManager = new AdditionalDataManager(this);
33+
34+
@Override
35+
public final AdditionalDataManager additionalDataManager() {
36+
return additionalDataManager;
37+
}
38+
39+
/**
40+
* The Get Url.
41+
*
42+
*/
43+
@SerializedName("getUrl")
44+
@Expose
45+
public String getUrl;
46+
47+
/**
48+
* The Post Parameters.
49+
*
50+
*/
51+
@SerializedName("postParameters")
52+
@Expose
53+
public String postParameters;
54+
55+
/**
56+
* The Post Url.
57+
*
58+
*/
59+
@SerializedName("postUrl")
60+
@Expose
61+
public String postUrl;
62+
63+
64+
/**
65+
* The raw representation of this class
66+
*/
67+
private JsonObject rawObject;
68+
69+
/**
70+
* The serializer
71+
*/
72+
private ISerializer serializer;
73+
74+
/**
75+
* Gets the raw representation of this class
76+
*
77+
* @return the raw representation of this class
78+
*/
79+
public JsonObject getRawObject() {
80+
return rawObject;
81+
}
82+
83+
/**
84+
* Gets serializer
85+
*
86+
* @return the serializer
87+
*/
88+
protected ISerializer getSerializer() {
89+
return serializer;
90+
}
91+
92+
/**
93+
* Sets the raw JSON object
94+
*
95+
* @param serializer the serializer
96+
* @param json the JSON object to set this object to
97+
*/
98+
public void setRawObject(final ISerializer serializer, final JsonObject json) {
99+
this.serializer = serializer;
100+
rawObject = json;
101+
102+
}
103+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.requests.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.models.extensions.*;
10+
import com.microsoft.graph.models.generated.*;
11+
import com.microsoft.graph.http.*;
12+
import com.microsoft.graph.requests.extensions.*;
13+
import com.microsoft.graph.requests.generated.*;
14+
import com.microsoft.graph.options.*;
15+
import com.microsoft.graph.serializer.*;
16+
17+
import java.util.Arrays;
18+
import java.util.EnumSet;
19+
20+
// This file is available for extending, afterwards please submit a pull request.
21+
22+
/**
23+
* The class for the Drive Item Preview Request.
24+
*/
25+
public class DriveItemPreviewRequest extends BaseDriveItemPreviewRequest implements IDriveItemPreviewRequest {
26+
27+
/**
28+
* The request for this DriveItemPreview
29+
*
30+
* @param requestUrl the request URL
31+
* @param client the service client
32+
* @param requestOptions the options for this request
33+
*/
34+
public DriveItemPreviewRequest(final String requestUrl, final IBaseClient client, final java.util.List<? extends Option> requestOptions) {
35+
super(requestUrl, client, requestOptions);
36+
}
37+
}
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.requests.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.models.extensions.*;
10+
import com.microsoft.graph.models.generated.*;
11+
import com.microsoft.graph.http.*;
12+
import com.microsoft.graph.requests.extensions.*;
13+
import com.microsoft.graph.requests.generated.*;
14+
import com.microsoft.graph.options.*;
15+
import com.microsoft.graph.serializer.*;
16+
17+
import java.util.Arrays;
18+
import java.util.EnumSet;
19+
20+
// This file is available for extending, afterwards please submit a pull request.
21+
22+
/**
23+
* The class for the Drive Item Preview Request Builder.
24+
*/
25+
public class DriveItemPreviewRequestBuilder extends BaseDriveItemPreviewRequestBuilder implements IDriveItemPreviewRequestBuilder {
26+
27+
/**
28+
* The request builder for this DriveItemPreview
29+
*
30+
* @param requestUrl the request URL
31+
* @param client the service client
32+
* @param requestOptions the options for this request
33+
* @param page the page
34+
* @param zoom the zoom
35+
*/
36+
public DriveItemPreviewRequestBuilder(final String requestUrl, final IBaseClient client, final java.util.List<? extends Option> requestOptions, final String page, final Double zoom) {
37+
super(requestUrl, client, requestOptions, page, zoom);
38+
}
39+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.requests.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.models.extensions.*;
10+
import com.microsoft.graph.models.generated.*;
11+
import com.microsoft.graph.http.*;
12+
import com.microsoft.graph.requests.extensions.*;
13+
import com.microsoft.graph.requests.generated.*;
14+
import com.microsoft.graph.options.*;
15+
import com.microsoft.graph.serializer.*;
16+
17+
import java.util.Arrays;
18+
import java.util.EnumSet;
19+
20+
// This file is available for extending, afterwards please submit a pull request.
21+
22+
/**
23+
* The interface for the Drive Item Preview Request.
24+
*/
25+
public interface IDriveItemPreviewRequest extends IBaseDriveItemPreviewRequest {
26+
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// ------------------------------------------------------------------------------
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
3+
// ------------------------------------------------------------------------------
4+
5+
package com.microsoft.graph.requests.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.models.extensions.*;
10+
import com.microsoft.graph.models.generated.*;
11+
import com.microsoft.graph.http.*;
12+
import com.microsoft.graph.requests.extensions.*;
13+
import com.microsoft.graph.requests.generated.*;
14+
import com.microsoft.graph.options.*;
15+
import com.microsoft.graph.serializer.*;
16+
17+
import java.util.Arrays;
18+
import java.util.EnumSet;
19+
20+
// This file is available for extending, afterwards please submit a pull request.
21+
22+
/**
23+
* The interface for the Drive Item Preview Request Builder.
24+
*/
25+
public interface IDriveItemPreviewRequestBuilder extends IBaseDriveItemPreviewRequestBuilder {
26+
27+
}

0 commit comments

Comments
 (0)