Uses of Class
com.sgs.common.database.Client
-
Packages that use Client Package Description com.sgapi.services This package provides endpoints for integrating data with the SG V5 System Imports are handled within the IntegrationImport class Exports are handled within the IntegrationExport classcom.sgs.common.database This package is responsible for holding all of the objects that can be persisted in the SG V5 System. -
-
Uses of Client in com.sgapi.services
Methods in com.sgapi.services that return types with arguments of type Client Modifier and Type Method Description java.util.List<Client>
IntegrationService. hello()
java.util.List<Client>
IntegrationExport. user()
Returns the user who booted the API wrapped in a small client object.Method parameters in com.sgapi.services with type arguments of type Client Modifier and Type Method Description javax.ws.rs.core.Response
IntegrationImport. setClient(java.util.List<Client> clients)
Imports a client record
A Client can be a Supplier or a Customer SeeClient
for details -
Uses of Client in com.sgs.common.database
Fields in com.sgs.common.database declared as Client Modifier and Type Field Description Client
Address. client
The Supplier or customer the address belongs toClient
SalesOrder. customer
The customer to whom this order will be shippedClient
Commodity. defaultSupplier
The usual default supplier.Client
PurchaseOrder. supplier
The supplier from which this purchase order will arriveClient
Stock. supplier
The supplier who provided this inventoryClient
SupplierCommodity. supplier
The supplierMethods in com.sgs.common.database that return Client Modifier and Type Method Description Client
Container. getAllocatedClient()
Client
Address. getClient()
Client
AnalyticalWorkCard. getCustomer()
Client
SalesOrder. getCustomer()
Client
Commodity. getDefaultSupplier()
Client
AnalyticalWorkCard. getDistributor()
Client
AnalyticalWorkCard. getManufacturer()
Client
Asset. getSupplier()
Client
Document. getSupplier()
Client
PurchaseOrder. getSupplier()
Client
SiteSupplier. getSupplier()
Client
Stock. getSupplier()
Client
SupplierCommodity. getSupplier()
Methods in com.sgs.common.database with parameters of type Client Modifier and Type Method Description void
Container. setAllocatedClient(Client allocatedClient)
void
Address. setClient(Client client)
void
AnalyticalWorkCard. setCustomer(Client customer)
void
SalesOrder. setCustomer(Client customer)
void
Commodity. setDefaultSupplier(Client defaultSupplier)
void
AnalyticalWorkCard. setDistributor(Client distributor)
void
AnalyticalWorkCard. setManufacturer(Client manufacturer)
void
Asset. setSupplier(Client supplier)
void
Document. setSupplier(Client supplier)
void
PurchaseOrder. setSupplier(Client supplier)
void
SiteSupplier. setSupplier(Client supplier)
void
Stock. setSupplier(Client supplier)
void
SupplierCommodity. setSupplier(Client supplier)
-