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

com.plenigo.sdk.models.AppAccessData Maven / Gradle / Ivy

There is a newer version: 1.7.2
Show newest version
package com.plenigo.sdk.models;


/**
 * 

* This class is used to represent application access information. *

*

* Thread safety: This class is thread safe and can be injected. *

*/ public class AppAccessData { private String customerId; private String description; private String customerAppId; private String productId; /** * Constructor with the required fields. * * @param customerId the customer id * @param description the access description * @param customerAppId customer app id * @param productId product id */ public AppAccessData(String customerId, String description, String customerAppId, String productId) { this.customerId = customerId; this.description = description; this.customerAppId = customerAppId; this.productId = productId; } /** * Returns the customer id. * * @return customer id */ public String getCustomerId() { return customerId; } /** * Returns the description. * * @return description */ public String getDescription() { return description; } /** * Returns the customer app id. * * @return customer app id */ public String getCustomerAppId() { return customerAppId; } /** * Returns the product id. * * @return product id */ public String getProductId() { return productId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy