All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.safecharge.request.GetOrderDetailsRequest Maven / Gradle / Ivy

Go to download

SafeCharge’s REST API SDK for Java provides developer tools for accessing Safecharge's REST API. SafeCharge’s REST API is a simple, easy to use, secure and stateless API, which enables online merchants and service providers to process consumer payments through SafeCharge’s payment gateway. The API supports merchants of all levels of PCI certification, from their online and mobile merchant applications, and is compatible with a large variety of payment options, i.e. payment cards, alternative payment methods, etc.

There is a newer version: 1.7.11
Show newest version
package com.safecharge.request;

import javax.validation.constraints.NotNull;
import javax.validation.constraints.Size;

import com.safecharge.request.builder.SafechargeBuilder;
import com.safecharge.util.Constants;
import com.safecharge.util.ValidChecksum;
import com.safecharge.util.ValidationUtils;

/**
 * Copyright (C) 2007-2017 SafeCharge International Group Limited.
 * 

* Request to get specific order details. *

* Enables receiving specific order details of an existing order. * Note that order details can be viewed at any point in time. * * @author Nikola Dichev * @see OpenOrderRequest * @see UpdateOrderRequest * @since 2/15/2017 */ @ValidChecksum(orderMappingName = Constants.ChecksumOrderMapping.API_GENERIC_CHECKSUM_MAPPING) public class GetOrderDetailsRequest extends SafechargeRequest implements SafechargeOrderRequest { /** * MerchantOrderID to be used as input parameter in update method and payment methods. */ @Size(max = 45, message = "orderId has to be maximum 45 symbols") @NotNull(message = "orderId parameter is mandatory!") private String orderId; public static Builder builder() { return new Builder(); } public String getOrderId() { return orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } @Override @NotNull(message = "sessionToken parameter is mandatory!") public String getSessionToken() { return super.getSessionToken(); } @Override public String toString() { final StringBuilder sb = new StringBuilder("GetOrderDetailsRequest{"); sb.append("orderId='") .append(orderId) .append('\''); sb.append(", ") .append(super.toString()); sb.append('}'); return sb.toString(); } public static class Builder extends SafechargeBuilder { String orderId; /** * Adds order id to the request, * * @param orderId the order ID to get the info for * @return this object */ public Builder addOrderId(String orderId) { this.orderId = orderId; return this; } /** * Builds the request. * * @return {@link SafechargeRequest} object build from the params set by this builder */ @Override public SafechargeBaseRequest build() { GetOrderDetailsRequest request = new GetOrderDetailsRequest(); request.setOrderId(orderId); return ValidationUtils.validate(super.build(request)); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy