-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#650] Adapt Foodbroker to graph transaction layout
* fixes #650
- Loading branch information
Showing
34 changed files
with
1,543 additions
and
677 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
82 changes: 82 additions & 0 deletions
82
...ain/java/org/gradoop/flink/datagen/transactions/foodbroker/config/FoodBrokerAcronyms.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,82 @@ | ||
/** | ||
* Copyright © 2014 - 2018 Leipzig University (Database Research Group) | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.gradoop.flink.datagen.transactions.foodbroker.config; | ||
|
||
/** | ||
* Acronyms names used by the FoodBroker data generator | ||
*/ | ||
public class FoodBrokerAcronyms { | ||
/** | ||
* Acronym for erp process. | ||
*/ | ||
public static final String ERP_ACRONYM = "ERP"; | ||
/** | ||
* Acronym for cit process. | ||
*/ | ||
public static final String CIT_ACRONYM = "CIT"; | ||
/** | ||
* Acronym for sales quotation. | ||
*/ | ||
public static final String SALESQUOTATION_ACRONYM = "SQN"; | ||
/** | ||
* Acronym for sales order. | ||
*/ | ||
public static final String SALESORDER_ACRONYM = "SOR"; | ||
/** | ||
* Acronym for purch order. | ||
*/ | ||
public static final String PURCHORDER_ACRONYM = "POR"; | ||
/** | ||
* Acronym for delivery note. | ||
*/ | ||
public static final String DELIVERYNOTE_ACRONYM = "DLV"; | ||
/** | ||
* Acronym for purch invoice. | ||
*/ | ||
public static final String PURCHINVOICE_ACRONYM = "PIN"; | ||
/** | ||
* Acronym for sales invoice. | ||
*/ | ||
public static final String SALESINVOICE_ACRONYM = "SIN"; | ||
/** | ||
* Acronym for user. | ||
*/ | ||
public static final String USER_ACRONYM = "USE"; | ||
/** | ||
* Acronym for client. | ||
*/ | ||
public static final String CLIENT_ACRONYM = "CLI"; | ||
/** | ||
* Acronym for employee. | ||
*/ | ||
public static final String EMPLOYEE_ACRONYM = "EMP"; | ||
/** | ||
* Acronym for customer. | ||
*/ | ||
public static final String CUSTOMER_ACRONYM = "CUS"; | ||
/** | ||
* Acronym for vendor. | ||
*/ | ||
public static final String VENDOR_ACRONYM = "VEN"; | ||
/** | ||
* Acronym for product. | ||
*/ | ||
public static final String PRODUCT_ACRONYM = "PRD"; | ||
/** | ||
* Acronym for logistics. | ||
*/ | ||
public static final String LOGISTICS_ACRONYM = "LOG"; | ||
} |
Oops, something went wrong.