diff options
author | Arielk <Ariel.Kenan@amdocs.com> | 2018-05-14 16:43:38 +0300 |
---|---|---|
committer | Avi Gaffa <avi.gaffa@amdocs.com> | 2018-05-16 15:06:00 +0000 |
commit | 5778c51a8b3d480c3c19f0e2848853808c25361e (patch) | |
tree | 7fe66cb7a313b33d4d420bf28dbcde34df554b12 | |
parent | e59a1af51ee67eb2b53f64b08b86ea96911d9bc7 (diff) |
ATT warning generated in CSAR
Change-Id: I9b0e952c80947782ccc22e84630061049de0401e
Issue-ID: SDC-1329
Signed-off-by: Arielk <Ariel.Kenan@amdocs.com>
1 files changed, 4 insertions, 6 deletions
diff --git a/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/informationArtifact/impl/TxtInformationArtifactConstants.java b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/informationArtifact/impl/TxtInformationArtifactConstants.java index f99d3814e6..56e01d1fa4 100644 --- a/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/informationArtifact/impl/TxtInformationArtifactConstants.java +++ b/openecomp-be/lib/openecomp-sdc-vendor-software-product-lib/openecomp-sdc-vendor-software-product-core/src/main/java/org/openecomp/sdc/vendorsoftwareproduct/informationArtifact/impl/TxtInformationArtifactConstants.java @@ -33,13 +33,11 @@ public class TxtInformationArtifactConstants { public static final String DELIMITER = ":"; public static final String FOUR_TABS = TAB + TAB + TAB + TAB; - public static final String HEADER = "AT&T Proprietary (Restricted)\n" - + "Only for use by authorized individuals or any above-designated team(s)\n" - + "within the AT&T companies and not for general distribution" + NL + NL + NL; + public static final String HEADER = "Proprietary information (Restricted)\n" + + "For use only by authorized individuals and not for general distribution." + NL + NL + NL; - public static final String FOOTER = NL + NL + NL + "AT&T Proprietary (Restricted)\n" - + "Only for use by authorized individuals or any above-designated team(s)\n" - + "within the AT&T companies and not for general distribution"; + public static final String FOOTER = NL + NL + NL + "Proprietary information (Restricted)\n" + + "For use only by authorized individuals and not for general distribution."; public static final String TITLE = "1." + TAB + "VSP Details" + DELIMITER; |