Skip to content

Mastercard/petstore-application-java

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

petstore-reference-app

Mastercard Petstore API

  • API version: 1.0.0
  • App version: 1.0.0

This application provides examples of how a Mastercard API should implement authentication, authorization, and payload encryption. Please follow the steps in the documentation here to understand how to utilize this application and adapt it for your service.

Requirements

Building the API client library requires:

  1. Java 17+
  2. Maven (3.8.3+)

Installation

Please follow the instruction below to begin

mvn clean install

This will generate all required files as defined in petstore.yaml. They should be built into the target folder.

Getting Started

Set properties in application.properties

The authentication mode (MTLS or OAuth1.0a) must be set using

-Dspring.profiles.active=oauth
-Dspring.profiles.active=mtls

If using the API in OAuth1.0a mode the following are required in application-oauth.properties

mastercard.oauth.pkcs12KeyFile
mastercard.oauth.consumerKey
mastercard.oauth.keyAlias
mastercard.oauth.keyPassword

If using the API in MTLS mode the following are required in application-mtls.properties

mastercard.mtls.pfxKeyFile
mastercard.mtls.keyPassword

Encryption properties are required to be set. This API supports JWE encryption. This is in application.properties

mastercard.encryption.encryptionCert
mastercard.encryption.decryptionKeys
mastercard.encryption.decryptionKeyAlias
mastercard.encryption.decryptionKeyPassword

Running the Application

To see how the average flow of each use case please see the flow folder and run a test. Note this tests will not run if a basePath in application.properties is not set. These tests call out to the service, so they must be set.

The tests can be run using

mvn test -Dspring.profiles.active=oauth

or

mvn test -Dspring.profiles.active=mtls

Example Scenarios

Example scenarios can be found under src/main/java/com/mastercard/app/petstore/examples There are provide simples uses cases, documented below

Adoption Flow Example

This demonstrates the typical flow for an adoption.

  1. A new adoption is created
  2. The adoption is then retrieved using the adoption id from step 1
  3. Information is updated before removing it using the same id
  4. Clean up. The adoption is removed from the system

Employee Flow Example

This demonstrates the typical flow for managing an employee.

  1. A new employee is added to the system
  2. The employee's information is then searched for via SSN
  3. Clean up. The employee is removed from the system

Pet Flow Example

This demonstrates the typical flow for adding a new cat.

  1. A new cat is added to the system
  2. The cat's information is retrieved via it's id
  3. That cat's status is updated to RESERVED
  4. Clean up. The cat is removed from the system

Support

For more information, please visit https://developer.mastercard.com/support

Author

API_Consultancy_and_Standards@mastercard.com

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages