summaryrefslogtreecommitdiffstats
path: root/asdctool/src/main/java/org/openecomp/sdc/asdctool/enums/SchemaZipFileEnum.java
blob: 6f4c602c2c89950e95ae78bbfe78d489df2ca8b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package org.openecomp.sdc.asdctool.enums;

public enum SchemaZipFileEnum {
	
	DATA("data", "data-types", "dataTypes", "data_types", new String[]{}),
	GROUPS("groups", "group-types", "groupTypes", "group_types", new String[]{"data.yml"}),
	POLICIES("policies", "policy-types", "policyTypes","policy_types", new String[]{"data.yml"}),
	RELATIONSHIPS("relationships","relationship-types","relationshipTypes", "relationship_types", new String[]{"capabilities.yml", "data.yml", "interfaces.yml"}),
	ARTIFACTS("artifacts", "artifact-types", "artifactTypes", "artifact_types", new String[]{"data.yml"}),
	CAPABILITIES("capabilities", "capability-types", "capabilityTypes", "capability_types" ,new String[]{"data.yml"}),
	INTERFACES("interfaces", "interface-lifecycle-types", "interfaceLifecycleTypes", "interface_types", new String[]{"data.yml"});
	
	private String fileName;
	private String sourceFolderName;
	private String sourceFileName;
	private String collectionTitle;
	private String[] importFileList;

	private SchemaZipFileEnum(String fileName, String sourceFolderName, String sourceFileName, String collectionTitle,
			String[] importFileList) {
		this.fileName = fileName;
		this.sourceFolderName = sourceFolderName;
		this.sourceFileName = sourceFileName;
		this.collectionTitle = collectionTitle;
		this.importFileList = importFileList;
	}

	public String getFileName() {
		return fileName;
	}

	public void setFileName(String fileName) {
		this.fileName = fileName;
	}

	public String getSourceFolderName() {
		return sourceFolderName;
	}

	public void setSourceFolderName(String sourceFolderName) {
		this.sourceFolderName = sourceFolderName;
	}

	public String getSourceFileName() {
		return sourceFileName;
	}

	public void setSourceFileName(String sourceFileName) {
		this.sourceFileName = sourceFileName;
	}

	public String getCollectionTitle() {
		return collectionTitle;
	}

	public void setCollectionTitle(String collectionTitle) {
		this.collectionTitle = collectionTitle;
	}

	public String[] getImportFileList() {
		return importFileList;
	}

	public void setImportFileList(String[] importFileList) {
		this.importFileList = importFileList;
	}
	
}