Skip to content
This repository was archived by the owner on Sep 4, 2020. It is now read-only.

Commit 691643d

Browse files
author
Caitlin Bales (MSFT)
authored
Merge pull request #67 from microsoftgraph/dev
September updates
2 parents b79071c + 24e9cbe commit 691643d

File tree

1,080 files changed

+12637
-2120
lines changed

Some content is hidden

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

1,080 files changed

+12637
-2120
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ mavenRepoUrl = https://api.bintray.com/maven/microsoftgraph/Maven/msgrap
2222
mavenGroupId = com.microsoft.graph
2323
mavenArtifactId = msgraph-sdk-android
2424
mavenMajorVersion = 1
25-
mavenMinorVersion = 4
25+
mavenMinorVersion = 5
2626
mavenPatchVersion = 0
2727
nightliesUrl = http://dl.bintray.com/MicrosoftGraph/Maven
2828

graphsdk/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ task javadoc(type: Javadoc) {
104104
source = android.sourceSets.main.java.srcDirs
105105
classpath += project.files(android.getBootClasspath())
106106
classpath += configurations.compile
107+
options.encoding = 'UTF-8'
107108
}
108109

109110
task javadocJar(type: Jar, dependsOn: javadoc) {
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.extensions.*;
10+
import com.microsoft.graph.http.*;
11+
import com.microsoft.graph.generated.*;
12+
import com.microsoft.graph.options.*;
13+
import com.microsoft.graph.serializer.*;
14+
15+
import java.util.Arrays;
16+
import java.util.EnumSet;
17+
18+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
19+
20+
/**
21+
* The class for the Base Item Collection Page.
22+
*/
23+
public class BaseItemCollectionPage extends BaseBaseItemCollectionPage implements IBaseItemCollectionPage {
24+
25+
/**
26+
* A collection page for Site.
27+
*
28+
* @param response The serialized BaseBaseItemCollectionResponse from the service
29+
* @param builder The request builder for the next collection page
30+
*/
31+
public BaseItemCollectionPage(final BaseBaseItemCollectionResponse response, final IBaseItemCollectionRequestBuilder builder) {
32+
super(response, builder);
33+
}
34+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.extensions.*;
10+
import com.microsoft.graph.http.*;
11+
import com.microsoft.graph.generated.*;
12+
import com.microsoft.graph.options.*;
13+
import com.microsoft.graph.serializer.*;
14+
15+
import java.util.Arrays;
16+
import java.util.EnumSet;
17+
18+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
19+
20+
/**
21+
* The class for the Base Item Collection Request.
22+
*/
23+
public class BaseItemCollectionRequest extends BaseBaseItemCollectionRequest implements IBaseItemCollectionRequest {
24+
25+
/**
26+
* The request for this collection of Site
27+
*
28+
* @param requestUrl The request url
29+
* @param client The service client
30+
* @param requestOptions The options for this request
31+
*/
32+
public BaseItemCollectionRequest(final String requestUrl, final IBaseClient client, final java.util.List<Option> requestOptions) {
33+
super(requestUrl, client, requestOptions);
34+
}
35+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.extensions.*;
10+
import com.microsoft.graph.http.*;
11+
import com.microsoft.graph.generated.*;
12+
import com.microsoft.graph.options.*;
13+
import com.microsoft.graph.serializer.*;
14+
15+
import java.util.Arrays;
16+
import java.util.EnumSet;
17+
18+
// **NOTE** This file was generated by a tool and any changes will be overwritten.
19+
20+
/**
21+
* The class for the Base Item Collection Request Builder.
22+
*/
23+
public class BaseItemCollectionRequestBuilder extends BaseBaseItemCollectionRequestBuilder implements IBaseItemCollectionRequestBuilder {
24+
25+
/**
26+
* The request builder for this collection of Site
27+
*
28+
* @param requestUrl The request url
29+
* @param client The service client
30+
* @param requestOptions The options for this request
31+
*/
32+
public BaseItemCollectionRequestBuilder(final String requestUrl, final IBaseClient client, final java.util.List<Option> requestOptions) {
33+
super(requestUrl, client, requestOptions);
34+
}
35+
}

graphsdk/src/main/java/com/microsoft/graph/extensions/ISharePointRequestBuilder.java renamed to graphsdk/src/main/java/com/microsoft/graph/extensions/BooleanColumn.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
// This file is available for extending, afterwards please submit a pull request.
1919

2020
/**
21-
* The interface for the Share Point Request Builder.
21+
* The class for the Boolean Column.
2222
*/
23-
public interface ISharePointRequestBuilder extends IBaseSharePointRequestBuilder {
23+
public class BooleanColumn extends BaseBooleanColumn {
2424

2525
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.extensions.*;
10+
import com.microsoft.graph.http.*;
11+
import com.microsoft.graph.generated.*;
12+
import com.microsoft.graph.options.*;
13+
import com.microsoft.graph.serializer.*;
14+
15+
import java.util.Arrays;
16+
import java.util.EnumSet;
17+
18+
// This file is available for extending, afterwards please submit a pull request.
19+
20+
/**
21+
* The class for the Calculated Column.
22+
*/
23+
public class CalculatedColumn extends BaseCalculatedColumn {
24+
25+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
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.extensions;
6+
7+
import com.microsoft.graph.concurrency.*;
8+
import com.microsoft.graph.core.*;
9+
import com.microsoft.graph.extensions.*;
10+
import com.microsoft.graph.http.*;
11+
import com.microsoft.graph.generated.*;
12+
import com.microsoft.graph.options.*;
13+
import com.microsoft.graph.serializer.*;
14+
15+
import java.util.Arrays;
16+
import java.util.EnumSet;
17+
18+
// This file is available for extending, afterwards please submit a pull request.
19+
20+
/**
21+
* The class for the Choice Column.
22+
*/
23+
public class ChoiceColumn extends BaseChoiceColumn {
24+
25+
}

graphsdk/src/main/java/com/microsoft/graph/extensions/ChunkedUploadRequest.java

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,5 @@
11
// ------------------------------------------------------------------------------
2-
// Copyright (c) 2015 Microsoft Corporation
3-
//
4-
// Permission is hereby granted, free of charge, to any person obtaining a copy
5-
// of this software and associated documentation files (the "Software"), to deal
6-
// in the Software without restriction, including without limitation the rights
7-
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8-
// copies of the Software, and to permit persons to whom the Software is
9-
// furnished to do so, subject to the following conditions:
10-
//
11-
// The above copyright notice and this permission notice shall be included in
12-
// all copies or substantial portions of the Software.
13-
//
14-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15-
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16-
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17-
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18-
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19-
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20-
// THE SOFTWARE.
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
213
// ------------------------------------------------------------------------------
224

235
package com.microsoft.graph.extensions;
@@ -144,4 +126,4 @@ public <UploadType> ChunkedUploadResult upload(
144126
new ClientException("Upload session failed to many times.", null,
145127
GraphErrorCodes.UploadSessionIncomplete));
146128
}
147-
}
129+
}

graphsdk/src/main/java/com/microsoft/graph/extensions/ChunkedUploadResult.java

Lines changed: 2 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,5 @@
11
// ------------------------------------------------------------------------------
2-
// Copyright (c) 2015 Microsoft Corporation
3-
//
4-
// Permission is hereby granted, free of charge, to any person obtaining a copy
5-
// of this software and associated documentation files (the "Software"), to deal
6-
// in the Software without restriction, including without limitation the rights
7-
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8-
// copies of the Software, and to permit persons to whom the Software is
9-
// furnished to do so, subject to the following conditions:
10-
//
11-
// The above copyright notice and this permission notice shall be included in
12-
// all copies or substantial portions of the Software.
13-
//
14-
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15-
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16-
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17-
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18-
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19-
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20-
// THE SOFTWARE.
2+
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
213
// ------------------------------------------------------------------------------
224

235
package com.microsoft.graph.extensions;
@@ -140,4 +122,4 @@ public UploadSession getSession() {
140122
public ClientException getError() {
141123
return this.mError;
142124
}
143-
}
125+
}

0 commit comments

Comments
 (0)