br.com.anteros.payment.api.braspag.service.impl.VerifyCardServiceImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Anteros-Payment-Api Show documentation
Show all versions of Anteros-Payment-Api Show documentation
Anteros Payment Integration Api for Java.
The newest version!
package br.com.anteros.payment.api.braspag.service.impl;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;
import br.com.anteros.payment.api.braspag.domain.MerchantAuthentication;
import br.com.anteros.payment.api.braspag.domain.VerifyCardRequest;
import br.com.anteros.payment.api.braspag.domain.VerifyCardResponse;
import br.com.anteros.payment.api.braspag.service.AbstractIntegrationService;
import br.com.anteros.payment.api.braspag.service.VerifyCardService;
@Service("verifyCardService")
@Scope("prototype")
public class VerifyCardServiceImpl extends AbstractIntegrationService implements VerifyCardService {
@Override
public VerifyCardResponse verifyCard(MerchantAuthentication merchantAuthentication,
VerifyCardRequest verifyCardRequest) {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy