[PORTAL-16 PORTAL-18] Widget ms; staging
[portal.git] / ecomp-portal-BE-common / src / main / java / org / openecomp / portalapp / portal / service / ManifestServiceImpl.java
index 3d0f34a..5136985 100644 (file)
@@ -1,62 +1,62 @@
-/*-\r
- * ================================================================================\r
- * ECOMP Portal\r
- * ================================================================================\r
- * Copyright (C) 2017 AT&T Intellectual Property\r
- * ================================================================================\r
- * Licensed under the Apache License, Version 2.0 (the "License");\r
- * you may not use this file except in compliance with the License.\r
- * You may obtain a copy of the License at\r
- * \r
- *      http://www.apache.org/licenses/LICENSE-2.0\r
- * \r
- * Unless required by applicable law or agreed to in writing, software\r
- * distributed under the License is distributed on an "AS IS" BASIS,\r
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
- * See the License for the specific language governing permissions and\r
- * limitations under the License.\r
- * ================================================================================\r
- */\r
-package org.openecomp.portalapp.portal.service;\r
-\r
-import java.io.IOException;\r
-import java.io.InputStream;\r
-import java.util.jar.Attributes;\r
-import java.util.jar.Manifest;\r
-\r
-import javax.servlet.ServletContext;\r
-\r
-import org.springframework.beans.factory.annotation.Autowired;\r
-import org.springframework.context.annotation.EnableAspectJAutoProxy;\r
-import org.springframework.stereotype.Service;\r
-\r
-import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;\r
-import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog;\r
-\r
-@Service("manifestService")\r
-@EnableAspectJAutoProxy\r
-@EPMetricsLog\r
-public class ManifestServiceImpl implements ManifestService {\r
-       @Autowired\r
-       ServletContext context;\r
-\r
-       /*\r
-        * (non-Javadoc)\r
-        * @see org.openecomp.portalapp.portal.service.ManifestService#getWebappManifest()\r
-        */\r
-       public Attributes getWebappManifest() throws IOException {\r
-               EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ManifestServiceImpl.class);\r
-               // Path to resource on classpath\r
-               final String MANIFEST_RESOURCE_PATH = "/META-INF/MANIFEST.MF";\r
-               // Manifest is formatted as Java-style properties\r
-               try {\r
-                       InputStream inputStream = context.getResourceAsStream(MANIFEST_RESOURCE_PATH);\r
-                       Manifest manifest = new Manifest(inputStream);\r
-                       inputStream.close();\r
-                       return manifest.getMainAttributes();\r
-               } catch (IOException e) {\r
-                       logger.error(EELFLoggerDelegate.errorLogger, "getWebappManifest: failed to read/find manifest");\r
-                       throw e;\r
-               }\r
-       }\r
-}\r
+/*-
+ * ================================================================================
+ * ECOMP Portal
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property
+ * ================================================================================
+ * 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.openecomp.portalapp.portal.service;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.util.jar.Attributes;
+import java.util.jar.Manifest;
+
+import javax.servlet.ServletContext;
+
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.context.annotation.EnableAspectJAutoProxy;
+import org.springframework.stereotype.Service;
+
+import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
+import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog;
+
+@Service("manifestService")
+@EnableAspectJAutoProxy
+@EPMetricsLog
+public class ManifestServiceImpl implements ManifestService {
+       @Autowired
+       ServletContext context;
+
+       /*
+        * (non-Javadoc)
+        * @see org.openecomp.portalapp.portal.service.ManifestService#getWebappManifest()
+        */
+       public Attributes getWebappManifest() throws IOException {
+               EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ManifestServiceImpl.class);
+               // Path to resource on classpath
+               final String MANIFEST_RESOURCE_PATH = "/META-INF/MANIFEST.MF";
+               // Manifest is formatted as Java-style properties
+               try {
+                       InputStream inputStream = context.getResourceAsStream(MANIFEST_RESOURCE_PATH);
+                       Manifest manifest = new Manifest(inputStream);
+                       inputStream.close();
+                       return manifest.getMainAttributes();
+               } catch (IOException e) {
+                       logger.error(EELFLoggerDelegate.errorLogger, "getWebappManifest: failed to read/find manifest");
+                       throw e;
+               }
+       }
+}