|
Author: mrisaliti
Date: Wed Feb 9 20:57:04 2011 New Revision: 1069090 URL: http://svn.apache.org/viewvc?rev=1069090&view=rev Log: Add a @SuppressWarning("serial") of classes of package org.ofbiz.service (OFBIZ-4102) Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/DispatchContext.java ofbiz/trunk/framework/service/src/org/ofbiz/service/GeneralServiceException.java ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericResultWaiter.java ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericServiceException.java ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelPermGroup.java ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceAuthException.java ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/DispatchContext.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/DispatchContext.java?rev=1069090&r1=1069089&r2=1069090&view=diff ============================================================================== --- ofbiz/trunk/framework/service/src/org/ofbiz/service/DispatchContext.java (original) +++ ofbiz/trunk/framework/service/src/org/ofbiz/service/DispatchContext.java Wed Feb 9 20:57:04 2011 @@ -48,6 +48,7 @@ import org.w3c.dom.Element; /** * Dispatcher Context */ +@SuppressWarnings("serial") public class DispatchContext implements Serializable { public static final String module = DispatchContext.class.getName(); Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/GeneralServiceException.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/GeneralServiceException.java?rev=1069090&r1=1069089&r2=1069090&view=diff ============================================================================== --- ofbiz/trunk/framework/service/src/org/ofbiz/service/GeneralServiceException.java (original) +++ ofbiz/trunk/framework/service/src/org/ofbiz/service/GeneralServiceException.java Wed Feb 9 20:57:04 2011 @@ -28,6 +28,7 @@ import org.ofbiz.base.util.UtilMisc; /** * General Service Exception - base Exception for in-Service Errors */ +@SuppressWarnings("serial") public class GeneralServiceException extends org.ofbiz.base.util.GeneralException { protected List<Object> errorMsgList = null; Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericResultWaiter.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericResultWaiter.java?rev=1069090&r1=1069089&r2=1069090&view=diff ============================================================================== --- ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericResultWaiter.java (original) +++ ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericResultWaiter.java Wed Feb 9 20:57:04 2011 @@ -25,6 +25,7 @@ import org.ofbiz.base.util.Debug; /** * Generic Result Waiter Class */ +@SuppressWarnings("serial") public class GenericResultWaiter implements GenericRequester { public static final String module = GenericResultWaiter.class.getName(); Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericServiceException.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericServiceException.java?rev=1069090&r1=1069089&r2=1069090&view=diff ============================================================================== --- ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericServiceException.java (original) +++ ofbiz/trunk/framework/service/src/org/ofbiz/service/GenericServiceException.java Wed Feb 9 20:57:04 2011 @@ -21,6 +21,7 @@ package org.ofbiz.service; /** * Generic Service Exception */ +@SuppressWarnings("serial") public class GenericServiceException extends org.ofbiz.base.util.GeneralException { public GenericServiceException() { Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelPermGroup.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelPermGroup.java?rev=1069090&r1=1069089&r2=1069090&view=diff ============================================================================== --- ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelPermGroup.java (original) +++ ofbiz/trunk/framework/service/src/org/ofbiz/service/ModelPermGroup.java Wed Feb 9 20:57:04 2011 @@ -28,6 +28,7 @@ import org.ofbiz.base.util.UtilValidate; /** * Service Permission Group Model Class */ +@SuppressWarnings("serial") public class ModelPermGroup implements Serializable { public static final String module = ModelPermGroup.class.getName(); Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceAuthException.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceAuthException.java?rev=1069090&r1=1069089&r2=1069090&view=diff ============================================================================== --- ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceAuthException.java (original) +++ ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceAuthException.java Wed Feb 9 20:57:04 2011 @@ -21,6 +21,7 @@ package org.ofbiz.service; /** * ServiceAuthException */ +@SuppressWarnings("serial") public class ServiceAuthException extends GenericServiceException { public ServiceAuthException() { Modified: ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java?rev=1069090&r1=1069089&r2=1069090&view=diff ============================================================================== --- ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java (original) +++ ofbiz/trunk/framework/service/src/org/ofbiz/service/ServiceValidationException.java Wed Feb 9 20:57:04 2011 @@ -26,6 +26,7 @@ import org.ofbiz.base.util.UtilValidate; /** * ServiceValidationException */ +@SuppressWarnings("serial") public class ServiceValidationException extends GenericServiceException { protected List<String> messages = new ArrayList<String>(); |
| Free forum by Nabble | Edit this page |
