Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 81e64ff

Browse files
author
Brian Melton
committed
Adding updated license text
1 parent c8ab8aa commit 81e64ff

Some content is hidden

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

43 files changed

+173
-3
lines changed

O365-auth/src/main/java/com/microsoft/AuthenticationManager.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft;
26

37
import android.app.Activity;

O365-auth/src/main/java/com/microsoft/AzureADModule.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft;
26

37
import android.app.Activity;

O365-auth/src/main/java/com/microsoft/AzureAppCompatActivity.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft;
26

37
import android.os.Bundle;

app/src/main/java/com/microsoft/o365_android_onenote_rest/BaseActivity.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest;
26

37
import com.microsoft.AzureADModule;

app/src/main/java/com/microsoft/o365_android_onenote_rest/BaseFragment.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest;
26

37
import android.os.Bundle;

app/src/main/java/com/microsoft/o365_android_onenote_rest/SignInActivity.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest;
26

37
import android.content.Intent;

app/src/main/java/com/microsoft/o365_android_onenote_rest/SnippetDetailActivity.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest;
26

37
import android.content.Intent;
48
import android.os.Bundle;
59
import android.support.v4.app.NavUtils;
610
import android.view.MenuItem;
711

8-
912
public class SnippetDetailActivity extends BaseActivity {
1013

1114
@Override

app/src/main/java/com/microsoft/o365_android_onenote_rest/SnippetDetailFragment.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest;
26

37
import android.annotation.TargetApi;

app/src/main/java/com/microsoft/o365_android_onenote_rest/SnippetListActivity.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest;
26

37
import android.content.Context;

app/src/main/java/com/microsoft/o365_android_onenote_rest/SnippetListAdapter.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest;
26

37
import android.content.Context;

app/src/main/java/com/microsoft/o365_android_onenote_rest/SnippetListFragment.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest;
26

37
import android.app.Activity;

app/src/main/java/com/microsoft/o365_android_onenote_rest/application/SnippetApp.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.application;
26

37
import android.app.Application;

app/src/main/java/com/microsoft/o365_android_onenote_rest/inject/AppModule.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.inject;
26

37
import android.content.Context;

app/src/main/java/com/microsoft/o365_android_onenote_rest/inject/AzureModule.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.inject;
26

37
import com.microsoft.AzureADModule;
@@ -17,5 +21,4 @@
1721
SnippetDetailFragment.class
1822
}
1923
)
20-
public class AzureModule {
21-
}
24+
public class AzureModule {}

app/src/main/java/com/microsoft/o365_android_onenote_rest/inject/ObjectGraphInjector.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.inject;
26

37
public interface ObjectGraphInjector {

app/src/main/java/com/microsoft/o365_android_onenote_rest/model/Scope.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.model;
26

37
import com.microsoft.o365_android_onenote_rest.application.SnippetApp;

app/src/main/java/com/microsoft/o365_android_onenote_rest/snippet/AbstractSnippet.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.snippet;
26

37
import com.microsoft.o365_android_onenote_rest.application.SnippetApp;

app/src/main/java/com/microsoft/o365_android_onenote_rest/snippet/Callback.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.snippet;
26

37
import java.util.Map;

app/src/main/java/com/microsoft/o365_android_onenote_rest/snippet/Input.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.snippet;
26

37
public enum Input {

app/src/main/java/com/microsoft/o365_android_onenote_rest/snippet/NotebookSnippet.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.snippet;
26

37
import com.google.gson.JsonObject;

app/src/main/java/com/microsoft/o365_android_onenote_rest/snippet/PagesSnippet.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.snippet;
26

37
import com.google.gson.JsonArray;

app/src/main/java/com/microsoft/o365_android_onenote_rest/snippet/SectionGroupSnippet.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.snippet;
26

37
import com.google.gson.JsonObject;

app/src/main/java/com/microsoft/o365_android_onenote_rest/snippet/SectionSnippet.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.snippet;
26

37
import com.google.gson.JsonObject;

app/src/main/java/com/microsoft/o365_android_onenote_rest/snippet/SnippetCategory.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.snippet;
26

37
import com.microsoft.o365_android_onenote_rest.application.SnippetApp;

app/src/main/java/com/microsoft/o365_android_onenote_rest/snippet/SnippetContent.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.snippet;
26

37
import java.util.ArrayList;

app/src/main/java/com/microsoft/o365_android_onenote_rest/util/SharedPrefsUtil.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.util;
26

37
import android.content.Context;

app/src/main/java/com/microsoft/o365_android_onenote_rest/util/User.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.o365_android_onenote_rest.util;
26

37
public class User {

onenoteapi/src/main/java/com/microsoft/onenoteapi/service/DateTimeDeserializer.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenoteapi.service;
26

37
import com.google.gson.JsonDeserializationContext;

onenoteapi/src/main/java/com/microsoft/onenoteapi/service/DateTimeSerializer.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenoteapi.service;
26

37
import com.google.gson.JsonElement;

onenoteapi/src/main/java/com/microsoft/onenoteapi/service/GsonDateTime.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenoteapi.service;
26

37
import com.google.gson.GsonBuilder;

onenoteapi/src/main/java/com/microsoft/onenoteapi/service/NotebooksService.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenoteapi.service;
26

37
import com.microsoft.onenotevos.Envelope;

onenoteapi/src/main/java/com/microsoft/onenoteapi/service/OneNotePartsMap.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenoteapi.service;
26

37
import java.util.HashMap;

onenoteapi/src/main/java/com/microsoft/onenoteapi/service/PagesService.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenoteapi.service;
26

37
import com.microsoft.onenotevos.Envelope;

onenoteapi/src/main/java/com/microsoft/onenoteapi/service/PatchCommand.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenoteapi.service;
26

37
import android.util.Log;

onenoteapi/src/main/java/com/microsoft/onenoteapi/service/SectionGroupsService.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenoteapi.service;
26

37
import com.microsoft.onenotevos.Envelope;

onenoteapi/src/main/java/com/microsoft/onenoteapi/service/SectionsService.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenoteapi.service;
26

37
import com.microsoft.onenotevos.Envelope;

onenotevos/src/main/java/com/microsoft/onenotevos/BaseVO.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenotevos;
26

37
import com.google.gson.annotations.SerializedName;

onenotevos/src/main/java/com/microsoft/onenotevos/Envelope.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenotevos;
26

37
public class Envelope<T> extends BaseVO {

onenotevos/src/main/java/com/microsoft/onenotevos/Links.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenotevos;
26

37
public class Links {

onenotevos/src/main/java/com/microsoft/onenotevos/Notebook.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenotevos;
26

37
public class Notebook extends BaseVO {

onenotevos/src/main/java/com/microsoft/onenotevos/Page.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenotevos;
26

37
public class Page extends BaseVO {

onenotevos/src/main/java/com/microsoft/onenotevos/Section.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenotevos;
26

37
import com.google.gson.annotations.SerializedName;

onenotevos/src/main/java/com/microsoft/onenotevos/SectionGroup.java

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
* Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license.
3+
* See LICENSE in the project root for license information.
4+
*/
15
package com.microsoft.onenotevos;
26

37
public class SectionGroup extends BaseVO {

0 commit comments

Comments
 (0)