com.microsoft.store.partnercenter.validations.ValidationOperations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of partnercenter Show documentation
Show all versions of partnercenter Show documentation
SDK for accessing Microsoft Partner Center API.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See the LICENSE file in the project root for full license information.
package com.microsoft.store.partnercenter.validations;
import java.util.List;
import com.fasterxml.jackson.core.type.TypeReference;
import com.microsoft.store.partnercenter.BasePartnerComponentString;
import com.microsoft.store.partnercenter.IPartner;
import com.microsoft.store.partnercenter.PartnerService;
import com.microsoft.store.partnercenter.models.Address;
import com.microsoft.store.partnercenter.models.validationcodes.ValidationCode;
/**
* The validations collection operations implementation.
*/
public class ValidationOperations
extends BasePartnerComponentString
implements IValidationOperations
{
/**
* Initializes a new instance of the ValidationOperations class.
*
* @param rootPartnerOperations The root partner operations instance.
*/
public ValidationOperations(IPartner rootPartnerOperations)
{
super(rootPartnerOperations);
}
/**
* Gets validation code which is used for Government Community Cloud customers qualification.
*
* @return List of validation codes.
*/
public List getValidationCodes()
{
return this.getPartner().getServiceClient().get(
this.getPartner(),
new TypeReference>(){},
PartnerService.getInstance().getConfiguration().getApis().get("GetValidationCodes").getPath());
}
/**
* Checks if the address is valid or not.
*
* @param address The address to be validated.
* @return True if the address is valid, false otherwise.
*/
public Boolean isAddressValid(Address address)
{
if ( address == null )
{
throw new IllegalArgumentException("The address is a required parameter.");
}
return this.getPartner().getServiceClient().post(
this.getPartner(),
new TypeReference(){},
PartnerService.getInstance().getConfiguration().getApis().get("AddressValidation").getPath(),
address);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy