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;
36 public static final String HEADER = "Proprietary information (Restricted)\n"
37 + "For use only by authorized individuals and not for general distribution." + NL + NL + NL;
39 public static final String FOOTER = NL + NL + NL + "Proprietary information (Restricted)\n"
40 + "For use only by authorized individuals and not for general distribution.";
43 public static final String TITLE = "1." + TAB + "VSP Details" + DELIMITER;
44 public static final String VSP_NAME = "a." + TAB + "Name" + DELIMITER;
45 public static final String VSP_DESC = "b." + TAB + "Description";
46 public static final String VSP_VENDOR = "d." + TAB + "Vendor" + DELIMITER;
47 public static final String VSP_VERSION = "c." + TAB + "Version" + DELIMITER;
48 public static final String VSP_CATEGORY = "e." + TAB + "Category" + DELIMITER;
49 public static final String LICENSE_DETAILS = "f." + TAB + "License Details" + DELIMITER;
50 public static final String LICENSE_MODEL_VERSION =
51 "i." + TAB + "License Model Version" + DELIMITER;
52 public static final String LICENSE_AGREEMENT_NAME =
53 "ii." + TAB + "License Agreement Name" + DELIMITER;
54 public static final String LIST_OF_FEATURE_GROUPS = "iii" + TAB + "List of Feature Groups"+DELIMITER;
55 public static final String HIGH_AVAILABILITY = "g." + TAB + "High Availability";
56 public static final String USING_AVAILABILITY_ZONES = "i." + TAB + "Using Availability "
57 + "Zones" + DELIMITER;
58 public static final String STORAGE_BACKUP_DETAILS = "h." + TAB + "Storage Data Back-up "
59 + "Details" + DELIMITER;
60 public static final String IS_DATA_REPLICATION =
61 "i." + TAB + "Data Replication Required?" + DELIMITER;
62 public static final String DATA_SIZE_TO_REP =
63 "ii." + TAB + " Data Size to replicate in GB" + DELIMITER;
64 public static final String DATA_REP_FREQUENCY =
65 "iii." + TAB + "Data replication frequency" + DELIMITER;
66 public static final String DATA_REP_SOURCE = "iv." + TAB + "Replication Source" + DELIMITER;
67 public static final String DATA_REP_DEST = "v." + TAB + "Replication Destination" + DELIMITER;
68 public static final String LIST_OF_NETWORKS = "List of Internal Networks";//currently not used
69 public static final String LIST_OF_VFCS = "3." + TAB + "List of VFCs";
70 public static final String FOR_EACH_VFC = "a." + TAB + "For each VFC" + DELIMITER;
71 public static final String VFC_NAME = "i." + TAB + "VFC Name" + DELIMITER;
72 public static final String VFC_DESC = "ii." + TAB + "Description" + DELIMITER;
73 public static final String VFC_IMAGES = "iii." + TAB + "Images" + DELIMITER;
74 public static final String VFC_COMPUTE = "iv." + TAB + "Compute/VM Characteristics";
75 public static final String VFC_COMPUTE_VCPU = "1." + TAB + "vCPU" + DELIMITER;
76 public static final String VFC_COMPUTE_CPU_OVER_SUBSCRIPTION = "2." + TAB + "CPU "
77 + "over-subscription" + DELIMITER;
78 public static final String VFC_COMPUTE_MEMORY = "3." + TAB + "Memory" + DELIMITER;
79 public static final String VFC_COMPUTE_DISK = "4." + TAB + "Disk" + DELIMITER;
80 public static final String HYPERVISOR_DETAILS = "v." + TAB + "Hypervisor Details";
81 public static final String HYPERVISOR_DETAILS_NAME = "1." + TAB + "Name" + DELIMITER;
82 public static final String HYPERVISOR_DETAILS_DRIVERS = "2." + TAB + "Drivers" + DELIMITER;
83 public static final String GUEST_OS_DETAILS = "vi." + TAB + "Guest OS Details";
84 public static final String GUEST_OS_NAME = "1." + TAB + "Name" + DELIMITER;
85 public static final String GUEST_OS_BIT_SIZE = "2." + TAB + "Bit Size" + DELIMITER;
86 public static final String GUEST_OS_TOOLS = "3." + TAB + "Tools" + DELIMITER;
87 public static final String VFC_INSTANCE_NUMBER = "vii." + TAB + "Number of VFC Instances";
88 public static final String VFC_INSTANCE_NUMBER_MIN = "1." + TAB + "Minimum" + DELIMITER;
89 public static final String VFC_INSTANCE_NUMBER_MAX = "2." + TAB + "Maximum" + DELIMITER;
90 public static final String VNICS = "viii." + TAB + "vNICs";
91 public static final String VNICS_NAME = "1." + TAB + "Name" + DELIMITER;
92 public static final String VNICS_PURPOSE = "2." + TAB + "Purpose" + DELIMITER;
93 public static final String VNICS_INT_EXT = "3." + TAB + "Internal/External" + DELIMITER;
94 public static final String VNICS_NETWORK = "4." + TAB + "Network" + DELIMITER;
95 public static final String VNICS_PROTOCOLS = "5." + TAB + "Protocols" + DELIMITER;
96 public static final String VNICS_IPV4 = "6." + TAB + "IP v4 Required" + DELIMITER;
97 public static final String VNICS_IPV6 = "7." + TAB + "IP v6 Required" + DELIMITER;
98 public static final String RECOVERY_DETAILS = "ix." + TAB + "Recovery Details" + DELIMITER;
99 public static final String RECOVERY_DETAILS_POINT = "1." + TAB + "Recovery Point" + DELIMITER;
100 public static final String RECOVERY_DETAILS_TIME = "2." + TAB + "Recovery Time" + DELIMITER;