Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
// Licensed under the MIT License.

/**
* Package containing the types for Azure ARM client side http communication with a REST endpoint.
* Package containing the implementation classes for Azure ARM client side http communication with a REST endpoint.
*/
package com.azure.core.management.implementation;
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Licensed under the MIT License.

/**
* Package containing the types for Azure ARM client side http communication with a REST endpoint.
* Package containing the implementation classes that handling long-running operation
* for Azure ARM client side http communication with a REST endpoint.
*/
package com.azure.core.management.implementation.polling;
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.core.management.serializer;
package com.azure.core.management.implementation.serializer;

import com.azure.core.management.exception.ManagementError;
import com.fasterxml.jackson.core.JsonFactory;
Expand All @@ -21,7 +21,7 @@
/**
* Custom serializer for serializing {@link ManagementError} objects.
*/
final class ManagementErrorDeserializer extends StdDeserializer<Object> {
public final class ManagementErrorDeserializer extends StdDeserializer<Object> {

private static final long serialVersionUID = 1L;

Expand All @@ -45,7 +45,7 @@ private ManagementErrorDeserializer(Class<?> vc, ObjectMapper mapper) {
* @param mapper the object mapper for default deserializations.
* @return a simple module to be plugged onto Jackson ObjectMapper.
*/
static SimpleModule getModule(ObjectMapper mapper) {
public static SimpleModule getModule(ObjectMapper mapper) {
SimpleModule module = new SimpleModule();
module.setDeserializerModifier(new BeanDeserializerModifier() {
@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

/**
* Package containing the implementation classes that handle serialization and deserialization
* for the REST call payloads in Azure ARM.
*/
package com.azure.core.management.implementation.serializer;
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Licensed under the MIT License.

/**
* Package containing the types for Azure ARM client side http communication with a REST endpoint.
* Package containing the classes that handling long-running operation
* for Azure ARM client side http communication with a REST endpoint.
*/
package com.azure.core.management.polling;
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

package com.azure.core.management.serializer;

import com.azure.core.management.implementation.serializer.ManagementErrorDeserializer;
import com.azure.core.util.serializer.JacksonAdapter;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
// Licensed under the MIT License.

/**
* Package containing classes that handle serialization and deserialization for the REST call payloads in Azure ARM.
* Package containing the classes that handle serialization and deserialization for the REST call payloads in Azure ARM.
*/
package com.azure.core.management.serializer;