com.azure.communication.callautomation.implementation.accesshelpers.AddParticipantResponseConstructorProxy Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.communication.callautomation.implementation.accesshelpers;
import com.azure.communication.callautomation.implementation.models.AddParticipantResponseInternal;
import com.azure.communication.callautomation.models.AddParticipantResult;
/**
* Helper class to access private values of {@link AddParticipantResult} across package boundaries.
*/
public final class AddParticipantResponseConstructorProxy {
private static AddParticipantResponseConstructorAccessor accessor;
private AddParticipantResponseConstructorProxy() {
}
/**
* Type defining the methods to set the non-public properties of a {@link AddParticipantResponseConstructorAccessor}
* instance.
*/
public interface AddParticipantResponseConstructorAccessor {
/**
* Creates a new instance of {@link AddParticipantResult} backed by an internal instance of
* {@link AddParticipantResult}.
*
* @param internalResponse The internal response.
* @return A new instance of {@link AddParticipantResult}.
*/
AddParticipantResult create(AddParticipantResponseInternal internalResponse);
}
/**
* The method called from {@link AddParticipantResult} to set it's accessor.
*
* @param accessor The accessor.
*/
public static void setAccessor(final AddParticipantResponseConstructorAccessor accessor) {
AddParticipantResponseConstructorProxy.accessor = accessor;
}
/**
* Creates a new instance of {@link AddParticipantResult} backed by an internal instance of
* {@link AddParticipantResult}.
*
* @param internalResponse The internal response.
* @return A new instance of {@link AddParticipantResult}.
*/
public static AddParticipantResult create(AddParticipantResponseInternal internalResponse) {
// This looks odd but is necessary, it is possible to engage the access helper before anywhere else in the
// application accesses BlobDownloadHeaders which triggers the accessor to be configured. So, if the accessor
// is null this effectively pokes the class to set up the accessor.
if (accessor == null) {
new AddParticipantResult();
}
assert accessor != null;
return accessor.create(internalResponse);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy