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

Commit 89e2e13

Browse files
author
Luff,Chris
committed
Refactored Common Interfaces package name to not export the same package
as Secure Storage in the event that the module is used in a JDK9+ modular implementation.
1 parent edee296 commit 89e2e13

109 files changed

Lines changed: 299 additions & 287 deletions

File tree

Some content is hidden

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

common/src/main/java/com/microsoft/alm/helpers/Action.java renamed to common/src/main/java/com/microsoft/alm/common/helpers/Action.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root.
33

4-
package com.microsoft.alm.helpers;
4+
package com.microsoft.alm.common.helpers;
55

66
/**
77
* Represents a method that accepts one argument.

common/src/main/java/com/microsoft/alm/helpers/BitConverter.java renamed to common/src/main/java/com/microsoft/alm/common/helpers/BitConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root.
33

4-
package com.microsoft.alm.helpers;
4+
package com.microsoft.alm.common.helpers;
55

66
/**
77
* Equivalent to .NET's BitConverter class

common/src/main/java/com/microsoft/alm/helpers/Debug.java renamed to common/src/main/java/com/microsoft/alm/common/helpers/Debug.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root.
33

4-
package com.microsoft.alm.helpers;
4+
package com.microsoft.alm.common.helpers;
55

66
import javax.swing.JFrame;
77
import javax.swing.JOptionPane;

common/src/main/java/com/microsoft/alm/helpers/Environment.java renamed to common/src/main/java/com/microsoft/alm/common/helpers/Environment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root.
33

4-
package com.microsoft.alm.helpers;
4+
package com.microsoft.alm.common.helpers;
55

66
import java.io.File;
77
import java.net.InetAddress;

common/src/main/java/com/microsoft/alm/helpers/Func.java renamed to common/src/main/java/com/microsoft/alm/common/helpers/Func.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root.
33

4-
package com.microsoft.alm.helpers;
4+
package com.microsoft.alm.common.helpers;
55

66
/**
77
* Represents a function that accepts one argument and produces a result.

common/src/main/java/com/microsoft/alm/helpers/Guid.java renamed to common/src/main/java/com/microsoft/alm/common/helpers/Guid.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root.
33

4-
package com.microsoft.alm.helpers;
4+
package com.microsoft.alm.common.helpers;
55

66
import java.nio.ByteBuffer;
77
import java.nio.ByteOrder;

common/src/main/java/com/microsoft/alm/helpers/HttpClient.java renamed to common/src/main/java/com/microsoft/alm/common/helpers/HttpClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root.
33

4-
package com.microsoft.alm.helpers;
4+
package com.microsoft.alm.common.helpers;
55

66
import java.io.IOException;
77
import java.net.HttpURLConnection;

common/src/main/java/com/microsoft/alm/helpers/HttpClientImpl.java renamed to common/src/main/java/com/microsoft/alm/common/helpers/HttpClientImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root.
33

4-
package com.microsoft.alm.helpers;
4+
package com.microsoft.alm.common.helpers;
55

66
import org.slf4j.Logger;
77
import org.slf4j.LoggerFactory;

common/src/main/java/com/microsoft/alm/helpers/HttpResponse.java renamed to common/src/main/java/com/microsoft/alm/common/helpers/HttpResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root.
33

4-
package com.microsoft.alm.helpers;
4+
package com.microsoft.alm.common.helpers;
55

66
/**
77
* Struct class to carry http call responses

common/src/main/java/com/microsoft/alm/helpers/IOHelper.java renamed to common/src/main/java/com/microsoft/alm/common/helpers/IOHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft. All rights reserved.
22
// Licensed under the MIT license. See License.txt in the project root.
33

4-
package com.microsoft.alm.helpers;
4+
package com.microsoft.alm.common.helpers;
55

66
import java.io.BufferedReader;
77
import java.io.Closeable;

0 commit comments

Comments
 (0)