-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #105 from nimble-platform/staging
Pull Request for Release 17.0.18
- Loading branch information
Showing
11 changed files
with
617 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
src/main/java/eu/nimble/service/bp/model/statistics/CompanyProcessCount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package eu.nimble.service.bp.model.statistics; | ||
|
||
import java.math.BigInteger; | ||
|
||
public class CompanyProcessCount { | ||
|
||
private String partyId; | ||
private String federationId; | ||
private BigInteger purchasesCount; | ||
private BigInteger salesCount; | ||
|
||
public CompanyProcessCount() { | ||
} | ||
|
||
public CompanyProcessCount(String partyId, String federationId, BigInteger purchasesCount, BigInteger salesCount) { | ||
this.partyId = partyId; | ||
this.federationId = federationId; | ||
this.purchasesCount = purchasesCount; | ||
this.salesCount = salesCount; | ||
} | ||
|
||
public String getPartyId() { | ||
return partyId; | ||
} | ||
|
||
public void setPartyId(String partyId) { | ||
this.partyId = partyId; | ||
} | ||
|
||
public String getFederationId() { | ||
return federationId; | ||
} | ||
|
||
public void setFederationId(String federationId) { | ||
this.federationId = federationId; | ||
} | ||
|
||
public BigInteger getPurchasesCount() { | ||
return purchasesCount; | ||
} | ||
|
||
public void setPurchasesCount(BigInteger purchasesCount) { | ||
this.purchasesCount = purchasesCount; | ||
} | ||
|
||
public BigInteger getSalesCount() { | ||
return salesCount; | ||
} | ||
|
||
public void setSalesCount(BigInteger salesCount) { | ||
this.salesCount = salesCount; | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
src/main/java/eu/nimble/service/bp/model/statistics/PlatformCompanyProcessCount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package eu.nimble.service.bp.model.statistics; | ||
|
||
import java.math.BigInteger; | ||
import java.util.List; | ||
|
||
public class PlatformCompanyProcessCount { | ||
|
||
private BigInteger totalCompanyCount; | ||
private List<CompanyProcessCount> companyProcessCounts; | ||
|
||
public PlatformCompanyProcessCount() { | ||
} | ||
|
||
public PlatformCompanyProcessCount(BigInteger totalCompanyCount, List<CompanyProcessCount> companyProcessCounts) { | ||
this.totalCompanyCount = totalCompanyCount; | ||
this.companyProcessCounts = companyProcessCounts; | ||
} | ||
|
||
public BigInteger getTotalCompanyCount() { | ||
return totalCompanyCount; | ||
} | ||
|
||
public void setTotalCompanyCount(BigInteger totalCompanyCount) { | ||
this.totalCompanyCount = totalCompanyCount; | ||
} | ||
|
||
public List<CompanyProcessCount> getCompanyProcessCounts() { | ||
return companyProcessCounts; | ||
} | ||
|
||
public void setCompanyProcessCounts(List<CompanyProcessCount> companyProcessCounts) { | ||
this.companyProcessCounts = companyProcessCounts; | ||
} | ||
} |
Oops, something went wrong.