2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.openecomp.sdc.vendorsoftwareproduct.informationArtifact.impl;
25 * @since December 07, 2016
28 public class TxtInformationArtifactConstants {
29 public static final String QUOTEMARK = "\"";
30 public static final String SPACE = " ";
31 public static final String TAB = SPACE + SPACE + SPACE + SPACE;
32 public static final String NL = System.lineSeparator();
33 public static final String DELIMITER = ":";
34 public static final String FOUR_TABS = TAB + TAB + TAB + TAB;
37 public static final String TITLE = "1." + TAB + "VSP Details" + DELIMITER;
38 public static final String VSP_NAME = "a." + TAB + "Name" + DELIMITER;
39 public static final String VSP_DESC = "b." + TAB + "Description";
40 public static final String VSP_VENDOR = "d." + TAB + "Vendor" + DELIMITER;
41 public static final String VSP_VERSION = "c." + TAB + "Version" + DELIMITER;
42 public static final String VSP_CATEGORY = "e." + TAB + "Category" + DELIMITER;
43 public static final String LICENSE_DETAILS = "f." + TAB + "License Details" + DELIMITER;
44 public static final String LICENSE_MODEL_VERSION =
45 "i." + TAB + "License Model Version" + DELIMITER;
46 public static final String LICENSE_AGREEMENT_NAME =
47 "ii." + TAB + "License Agreement Name" + DELIMITER;
48 public static final String LIST_OF_FEATURE_GROUPS = "iii" + TAB + "List of Feature Groups"+DELIMITER;
49 public static final String HIGH_AVAILABILITY = "g." + TAB + "High Availability";
50 public static final String USING_AVAILABILITY_ZONES = "i." + TAB + "Using Availability "
51 + "Zones" + DELIMITER;
52 public static final String STORAGE_BACKUP_DETAILS = "h." + TAB + "Storage Data Back-up "
53 + "Details" + DELIMITER;
54 public static final String IS_DATA_REPLICATION =
55 "i." + TAB + "Data Replication Required?" + DELIMITER;
56 public static final String DATA_SIZE_TO_REP =
57 "ii." + TAB + " Data Size to replicate in GB" + DELIMITER;
58 public static final String DATA_REP_FREQUENCY =
59 "iii." + TAB + "Data replication frequency" + DELIMITER;
60 public static final String DATA_REP_SOURCE = "iv." + TAB + "Replication Source" + DELIMITER;
61 public static final String DATA_REP_DEST = "v." + TAB + "Replication Destination" + DELIMITER;
62 public static final String LIST_OF_NETWORKS = "List of Internal Networks";//currently not used
63 public static final String LIST_OF_VFCS = "3." + TAB + "List of VFCs";
64 public static final String FOR_EACH_VFC = "a." + TAB + "For each VFC" + DELIMITER;
65 public static final String VFC_NAME = "i." + TAB + "VFC Name" + DELIMITER;
66 public static final String VFC_DESC = "ii." + TAB + "Description" + DELIMITER;
67 public static final String VFC_IMAGES = "iii." + TAB + "Images" + DELIMITER;
68 public static final String VFC_COMPUTE = "iv." + TAB + "Compute/VM Characteristics";
69 public static final String VFC_COMPUTE_VCPU = "1." + TAB + "vCPU" + DELIMITER;
70 public static final String VFC_COMPUTE_CPU_OVER_SUBSCRIPTION = "2." + TAB + "CPU "
71 + "over-subscription" + DELIMITER;
72 public static final String VFC_COMPUTE_MEMORY = "3." + TAB + "Memory" + DELIMITER;
73 public static final String VFC_COMPUTE_DISK = "4." + TAB + "Disk" + DELIMITER;
74 public static final String HYPERVISOR_DETAILS = "v." + TAB + "Hypervisor Details";
75 public static final String HYPERVISOR_DETAILS_NAME = "1." + TAB + "Name" + DELIMITER;
76 public static final String HYPERVISOR_DETAILS_DRIVERS = "2." + TAB + "Drivers" + DELIMITER;
77 public static final String GUEST_OS_DETAILS = "vi." + TAB + "Guest OS Details";
78 public static final String GUEST_OS_NAME = "1." + TAB + "Name" + DELIMITER;
79 public static final String GUEST_OS_BIT_SIZE = "2." + TAB + "Bit Size" + DELIMITER;
80 public static final String GUEST_OS_TOOLS = "3." + TAB + "Tools" + DELIMITER;
81 public static final String VFC_INSTANCE_NUMBER = "vii." + TAB + "Number of VFC Instances";
82 public static final String VFC_INSTANCE_NUMBER_MIN = "1." + TAB + "Minimum" + DELIMITER;
83 public static final String VFC_INSTANCE_NUMBER_MAX = "2." + TAB + "Maximum" + DELIMITER;
84 public static final String VNICS = "viii." + TAB + "vNICs";
85 public static final String VNICS_NAME = "1." + TAB + "Name" + DELIMITER;
86 public static final String VNICS_PURPOSE = "2." + TAB + "Purpose" + DELIMITER;
87 public static final String VNICS_INT_EXT = "3." + TAB + "Internal/External" + DELIMITER;
88 public static final String VNICS_NETWORK = "4." + TAB + "Network" + DELIMITER;
89 public static final String VNICS_PROTOCOLS = "5." + TAB + "Protocols" + DELIMITER;
90 public static final String VNICS_IPV4 = "6." + TAB + "IP v4 Required" + DELIMITER;
91 public static final String VNICS_IPV6 = "7." + TAB + "IP v6 Required" + DELIMITER;
92 public static final String RECOVERY_DETAILS = "ix." + TAB + "Recovery Details" + DELIMITER;
93 public static final String RECOVERY_DETAILS_POINT = "1." + TAB + "Recovery Point" + DELIMITER;
94 public static final String RECOVERY_DETAILS_TIME = "2." + TAB + "Recovery Time" + DELIMITER;