Matteo
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/action/DeployAction.java b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/action/DeployAction.java
index 5297156b..c2913866 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/action/DeployAction.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/action/DeployAction.java
@@ -1,14 +1,5 @@
package it.tref.liferay.portos.deployalert.action;
-import it.tref.liferay.portos.deployalert.constants.MailConstants;
-import it.tref.liferay.portos.deployalert.model.NotificationMail;
-import it.tref.liferay.portos.deployalert.service.NotificationLogLocalServiceUtil;
-import it.tref.liferay.portos.deployalert.service.NotificationMailLocalServiceUtil;
-import it.tref.liferay.portos.deployalert.util.DeployAlertUtil;
-import it.tref.liferay.portos.mailmanager.shared.messaging.util.MailManagerUtil;
-
-import java.util.List;
-
import com.liferay.portal.kernel.events.ActionException;
import com.liferay.portal.kernel.events.SimpleAction;
import com.liferay.portal.kernel.exception.PortalException;
@@ -25,6 +16,15 @@ import com.liferay.portal.model.Company;
import com.liferay.portal.service.ServiceContext;
import com.liferay.portal.util.PortalUtil;
+import it.tref.liferay.portos.deployalert.constants.MailConstants;
+import it.tref.liferay.portos.deployalert.model.NotificationMail;
+import it.tref.liferay.portos.deployalert.service.NotificationLogLocalServiceUtil;
+import it.tref.liferay.portos.deployalert.service.NotificationMailLocalServiceUtil;
+import it.tref.liferay.portos.deployalert.util.DeployAlertUtil;
+import it.tref.liferay.portos.mailmanager.shared.messaging.util.MailManagerUtil;
+
+import java.util.List;
+
public class DeployAction extends SimpleAction {
private static final Log _log = LogFactoryUtil.getLog(DeployAction.class);
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/control/DeployAlertControl.java b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/control/DeployAlertControl.java
index 185ccbd7..52e3fb79 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/control/DeployAlertControl.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/control/DeployAlertControl.java
@@ -8,9 +8,8 @@ import com.liferay.portlet.BaseControlPanelEntry;
public class DeployAlertControl extends BaseControlPanelEntry {
- @Override
- public boolean hasAccessPermission(PermissionChecker permissionChecker, Group group, Portlet portlet)
- throws Exception {
+ public boolean hasAccessPermission(PermissionChecker permissionChecker, Group group, Portlet portlet)
+ throws Exception {
long companyId = PortalUtil.getDefaultCompanyId();
if (companyId == permissionChecker.getCompanyId()) {
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/portlet/NotificatorPortlet.java b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/portlet/NotificatorPortlet.java
index 79fcadd2..a305bf92 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/portlet/NotificatorPortlet.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/portlet/NotificatorPortlet.java
@@ -1,11 +1,5 @@
package it.tref.liferay.portos.deployalert.portlet;
-import it.tref.liferay.portos.deployalert.model.NotificationMail;
-import it.tref.liferay.portos.deployalert.service.NotificationMailLocalServiceUtil;
-
-import javax.portlet.ActionRequest;
-import javax.portlet.ActionResponse;
-
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.servlet.SessionErrors;
@@ -14,6 +8,15 @@ import com.liferay.portal.service.ServiceContext;
import com.liferay.portal.service.ServiceContextFactory;
import com.liferay.util.bridges.mvc.MVCPortlet;
+import it.tref.liferay.portos.deployalert.model.NotificationMail;
+import it.tref.liferay.portos.deployalert.service.NotificationMailLocalServiceUtil;
+
+import javax.portlet.ActionRequest;
+import javax.portlet.ActionResponse;
+
+/**
+ * Portlet implementation class AdminDeployNotificatorPortlet
+ */
public class NotificatorPortlet extends MVCPortlet {
public void addNotification(ActionRequest request, ActionResponse response) throws PortalException, SystemException {
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/impl/NotificationLogLocalServiceImpl.java b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/impl/NotificationLogLocalServiceImpl.java
index f581bdc7..8f83689b 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/impl/NotificationLogLocalServiceImpl.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/impl/NotificationLogLocalServiceImpl.java
@@ -8,6 +8,10 @@
package it.tref.liferay.portos.deployalert.service.impl;
+import com.liferay.portal.kernel.exception.PortalException;
+import com.liferay.portal.kernel.exception.SystemException;
+import com.liferay.portal.kernel.util.Validator;
+
import it.tref.liferay.portos.deployalert.NotificationNomePluginException;
import it.tref.liferay.portos.deployalert.NotificationTipoException;
import it.tref.liferay.portos.deployalert.model.NotificationLog;
@@ -15,10 +19,6 @@ import it.tref.liferay.portos.deployalert.service.base.NotificationLogLocalServi
import java.util.Date;
-import com.liferay.portal.kernel.exception.PortalException;
-import com.liferay.portal.kernel.exception.SystemException;
-import com.liferay.portal.kernel.util.Validator;
-
/**
* The implementation of the notification log local service.
*
@@ -35,8 +35,7 @@ import com.liferay.portal.kernel.util.Validator;
*/
public class NotificationLogLocalServiceImpl extends NotificationLogLocalServiceBaseImpl {
- @Override
- public NotificationLog addNotification(String nomePlugin, String tipo) throws SystemException, PortalException {
+ public NotificationLog addNotification(String nomePlugin, String tipo) throws SystemException, PortalException {
Date now = new Date();
validate(nomePlugin, tipo);
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/impl/NotificationMailLocalServiceImpl.java b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/impl/NotificationMailLocalServiceImpl.java
index 1b8d384a..f4045561 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/impl/NotificationMailLocalServiceImpl.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/impl/NotificationMailLocalServiceImpl.java
@@ -8,15 +8,6 @@
package it.tref.liferay.portos.deployalert.service.impl;
-import it.tref.liferay.portos.deployalert.NotificationNomePluginException;
-import it.tref.liferay.portos.deployalert.NotificationNomeTemplateException;
-import it.tref.liferay.portos.deployalert.model.NotificationMail;
-import it.tref.liferay.portos.deployalert.service.NotificationMailLocalServiceUtil;
-import it.tref.liferay.portos.deployalert.service.base.NotificationMailLocalServiceBaseImpl;
-
-import java.util.Date;
-import java.util.List;
-
import com.liferay.portal.kernel.dao.orm.Disjunction;
import com.liferay.portal.kernel.dao.orm.DynamicQuery;
import com.liferay.portal.kernel.dao.orm.OrderFactoryUtil;
@@ -28,6 +19,15 @@ import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.model.User;
import com.liferay.portal.service.ServiceContext;
+import it.tref.liferay.portos.deployalert.NotificationNomePluginException;
+import it.tref.liferay.portos.deployalert.NotificationNomeTemplateException;
+import it.tref.liferay.portos.deployalert.model.NotificationMail;
+import it.tref.liferay.portos.deployalert.service.NotificationMailLocalServiceUtil;
+import it.tref.liferay.portos.deployalert.service.base.NotificationMailLocalServiceBaseImpl;
+
+import java.util.Date;
+import java.util.List;
+
/**
* The implementation of the notification mail local service.
*
@@ -44,9 +44,8 @@ import com.liferay.portal.service.ServiceContext;
*/
public class NotificationMailLocalServiceImpl extends NotificationMailLocalServiceBaseImpl {
- @Override
- public NotificationMail addNotification(String nomePlugin, String nomeTemplate, ServiceContext serviceContext)
- throws PortalException, SystemException {
+ public NotificationMail addNotification(String nomePlugin, String nomeTemplate, ServiceContext serviceContext)
+ throws PortalException, SystemException {
User user = userPersistence.findByPrimaryKey(serviceContext.getUserId());
Date now = new Date();
@@ -76,9 +75,8 @@ public class NotificationMailLocalServiceImpl extends NotificationMailLocalServi
}
}
- @Override
- public NotificationMail updateNotification(String nomePlugin, String nomeTemplate, ServiceContext serviceContext,
- long notificationId) throws SystemException, PortalException {
+ public NotificationMail updateNotification(String nomePlugin, String nomeTemplate, ServiceContext serviceContext,
+ long notificationId) throws SystemException, PortalException {
Date now = new Date();
NotificationMail notification = getNotificationMail(notificationId);
@@ -91,44 +89,44 @@ public class NotificationMailLocalServiceImpl extends NotificationMailLocalServi
return notification;
}
- @Override
- public List findNotifications(long companyId, int start, int end) throws SystemException {
+ public List findNotifications(long companyId, int start, int end) throws SystemException {
- DynamicQuery query = dynamicQuery();
- query.addOrder(OrderFactoryUtil.asc("nomePlugin"));
- List notifications = null;
- try {
- notifications = NotificationMailLocalServiceUtil.dynamicQuery(query);
- } catch (SystemException e) {
- e.printStackTrace();
- }
- return notifications;
- }
+ // return notificationMailPersistence.findBycompanyId(companyId, start, end);
+ DynamicQuery query = notificationMailLocalService.dynamicQuery();
+ query.addOrder(OrderFactoryUtil.asc("nomePlugin"));
+ List notifications = null;
+ try {
+ notifications = NotificationMailLocalServiceUtil.dynamicQuery(query);
+ } catch (SystemException e) {
+ e.printStackTrace();
+ }
+ return notifications;
+ }
- @Override
- public List findNotifications(long companyId) throws SystemException {
+ public List findNotifications(long companyId) throws SystemException {
return notificationMailPersistence.findBycompanyId(companyId);
}
- @Override
- public int getNotificationCount(long companyId) throws SystemException {
+ public int getNotificationCount(long companyId) throws SystemException {
return notificationMailPersistence.countBycompanyId(companyId);
}
- @Override
- public List findNotifications(long companyId, String servletContextName) throws SystemException {
-
- DynamicQuery dynamicQuery = dynamicQuery();
- if (Validator.isNull(servletContextName)) {
- Disjunction or = RestrictionsFactoryUtil.disjunction();
- or.add(RestrictionsFactoryUtil.isNull("nomePlugin"));
- or.add(RestrictionsFactoryUtil.eq("nomePlugin", StringPool.BLANK));
- dynamicQuery.add(or);
- } else {
- dynamicQuery.add(RestrictionsFactoryUtil.eq("nomePlugin", servletContextName));
- }
- return notificationMailPersistence.findWithDynamicQuery(dynamicQuery);
- }
+ public List findNotifications(long companyId, String servletContextName) throws SystemException {
+
+ DynamicQuery dynamicQuery = notificationMailLocalService.dynamicQuery();
+
+ if (Validator.isNull(servletContextName)) {
+ Disjunction or = RestrictionsFactoryUtil.disjunction();
+ or.add(RestrictionsFactoryUtil.isNull("nomePlugin"));
+ or.add(RestrictionsFactoryUtil.eq("nomePlugin", StringPool.BLANK));
+
+ dynamicQuery.add(or);
+ } else {
+ dynamicQuery.add(RestrictionsFactoryUtil.eq("nomePlugin", servletContextName));
+ }
+
+ return notificationMailPersistence.findWithDynamicQuery(dynamicQuery);
+ }
}
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/persistence/NotificationLogPersistenceImpl.java b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/persistence/NotificationLogPersistenceImpl.java
index 78a471b1..c9c20815 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/persistence/NotificationLogPersistenceImpl.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/persistence/NotificationLogPersistenceImpl.java
@@ -45,7 +45,6 @@ import it.tref.liferay.portos.deployalert.NoSuchNotificationLogException;
import it.tref.liferay.portos.deployalert.model.NotificationLog;
import it.tref.liferay.portos.deployalert.model.impl.NotificationLogImpl;
import it.tref.liferay.portos.deployalert.model.impl.NotificationLogModelImpl;
-import it.tref.liferay.portos.deployalert.service.persistence.NotificationLogPersistence;
import java.io.Serializable;
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/persistence/NotificationMailPersistenceImpl.java b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/persistence/NotificationMailPersistenceImpl.java
index 9297ba1f..2940148c 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/persistence/NotificationMailPersistenceImpl.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/service/persistence/NotificationMailPersistenceImpl.java
@@ -45,7 +45,6 @@ import it.tref.liferay.portos.deployalert.NoSuchNotificationMailException;
import it.tref.liferay.portos.deployalert.model.NotificationMail;
import it.tref.liferay.portos.deployalert.model.impl.NotificationMailImpl;
import it.tref.liferay.portos.deployalert.model.impl.NotificationMailModelImpl;
-import it.tref.liferay.portos.deployalert.service.persistence.NotificationMailPersistence;
import java.io.Serializable;
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/util/DeployAlertUtil.java b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/util/DeployAlertUtil.java
index f8c8c287..2379bcf7 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/util/DeployAlertUtil.java
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/WEB-INF/src/it/tref/liferay/portos/deployalert/util/DeployAlertUtil.java
@@ -1,11 +1,5 @@
package it.tref.liferay.portos.deployalert.util;
-import it.tref.liferay.portos.deployalert.constants.MailConstants;
-import it.tref.liferay.portos.mailmanager.shared.messaging.util.MailManagerUtil;
-
-import java.text.SimpleDateFormat;
-import java.util.Date;
-
import com.liferay.portal.kernel.exception.SystemException;
import com.liferay.portal.kernel.json.JSONFactoryUtil;
import com.liferay.portal.kernel.json.JSONObject;
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/init.jsp b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/init.jsp
index 0ae60c99..bb88947c 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/init.jsp
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/init.jsp
@@ -1,4 +1,3 @@
-<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/edit_notification.jsp b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/edit_notification.jsp
index e2cef758..425e8af6 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/edit_notification.jsp
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/edit_notification.jsp
@@ -1,4 +1,3 @@
-<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@page import="com.liferay.portal.kernel.util.Validator"%>
<%@page import="com.liferay.portal.kernel.util.StringUtil"%>
<%@ include file="/html/notificator/init.jsp"%>
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/init.jsp b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/init.jsp
index dd526767..ea913f23 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/init.jsp
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/init.jsp
@@ -1,4 +1,3 @@
-<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ include file="/html/init.jsp"%>
<%@ page
import="it.tref.liferay.portos.deployalert.service.NotificationMailLocalServiceUtil"%>
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/view.jsp b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/view.jsp
index eb713391..78964c30 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/view.jsp
+++ b/liferay-plugins-sdk-6.2/portlets/portos-deploy-alert-portlet/docroot/html/notificator/view.jsp
@@ -1,4 +1,3 @@
-<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ include file="/html/notificator/init.jsp"%>
diff --git a/liferay-plugins-sdk-6.2/portlets/portos-firma-portlet/docroot/WEB-INF/liferay-hook.xml b/liferay-plugins-sdk-6.2/portlets/portos-firma-portlet/docroot/WEB-INF/liferay-hook.xml
index 967a6059..944195a7 100644
--- a/liferay-plugins-sdk-6.2/portlets/portos-firma-portlet/docroot/WEB-INF/liferay-hook.xml
+++ b/liferay-plugins-sdk-6.2/portlets/portos-firma-portlet/docroot/WEB-INF/liferay-hook.xml
@@ -1,4 +1,4 @@
-
+