You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by il...@apache.org on 2012/04/18 17:53:13 UTC

svn commit: r1327551 [10/15] - in /incubator/syncope/trunk: archetype/ archetype/src/main/resources/archetype-resources/core/ build-tools/ build-tools/src/main/java/org/apache/ build-tools/src/main/java/org/apache/syncope/ build-tools/src/main/java/org...

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/propagation/PropagationManager.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/propagation/PropagationManager.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/propagation/PropagationManager.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/propagation/PropagationManager.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/propagation/PropagationManager.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/propagation/PropagationManager.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/propagation/PropagationManager.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.propagation;
+package org.apache.syncope.core.propagation;
 
 import java.io.PrintWriter;
 import java.io.StringWriter;
@@ -45,36 +45,36 @@ import org.springframework.beans.factory
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.transaction.annotation.Transactional;
 import org.springframework.util.StringUtils;
-import org.syncope.client.mod.AttributeMod;
-import org.syncope.client.to.AttributeTO;
-import org.syncope.core.init.ConnInstanceLoader;
-import org.syncope.core.persistence.beans.AbstractAttrValue;
-import org.syncope.core.persistence.beans.AbstractAttributable;
-import org.syncope.core.persistence.beans.AbstractSchema;
-import org.syncope.core.persistence.beans.ConnInstance;
-import org.syncope.core.persistence.beans.ExternalResource;
-import org.syncope.core.persistence.beans.PropagationTask;
-import org.syncope.core.persistence.beans.SchemaMapping;
-import org.syncope.core.persistence.beans.TaskExec;
-import org.syncope.core.persistence.beans.membership.Membership;
-import org.syncope.core.persistence.beans.user.SyncopeUser;
-import org.syncope.core.persistence.dao.ResourceDAO;
-import org.syncope.core.persistence.dao.SchemaDAO;
-import org.syncope.core.persistence.dao.TaskDAO;
-import org.syncope.core.persistence.dao.TaskExecDAO;
-import org.syncope.core.persistence.dao.UserDAO;
-import org.syncope.core.rest.data.UserDataBinder;
-import org.syncope.core.util.AttributableUtil;
-import org.syncope.core.util.JexlUtil;
-import org.syncope.core.util.SchemaMappingUtil;
-import org.syncope.core.workflow.WorkflowResult;
-import org.syncope.types.AttributableType;
-import org.syncope.types.IntMappingType;
-import org.syncope.types.PropagationMode;
-import org.syncope.types.PropagationOperation;
-import org.syncope.types.PropagationTaskExecStatus;
-import org.syncope.types.SchemaType;
-import org.syncope.types.TraceLevel;
+import org.apache.syncope.client.mod.AttributeMod;
+import org.apache.syncope.client.to.AttributeTO;
+import org.apache.syncope.core.init.ConnInstanceLoader;
+import org.apache.syncope.core.persistence.beans.AbstractAttrValue;
+import org.apache.syncope.core.persistence.beans.AbstractAttributable;
+import org.apache.syncope.core.persistence.beans.AbstractSchema;
+import org.apache.syncope.core.persistence.beans.ConnInstance;
+import org.apache.syncope.core.persistence.beans.ExternalResource;
+import org.apache.syncope.core.persistence.beans.PropagationTask;
+import org.apache.syncope.core.persistence.beans.SchemaMapping;
+import org.apache.syncope.core.persistence.beans.TaskExec;
+import org.apache.syncope.core.persistence.beans.membership.Membership;
+import org.apache.syncope.core.persistence.beans.user.SyncopeUser;
+import org.apache.syncope.core.persistence.dao.ResourceDAO;
+import org.apache.syncope.core.persistence.dao.SchemaDAO;
+import org.apache.syncope.core.persistence.dao.TaskDAO;
+import org.apache.syncope.core.persistence.dao.TaskExecDAO;
+import org.apache.syncope.core.persistence.dao.UserDAO;
+import org.apache.syncope.core.rest.data.UserDataBinder;
+import org.apache.syncope.core.util.AttributableUtil;
+import org.apache.syncope.core.util.JexlUtil;
+import org.apache.syncope.core.util.SchemaMappingUtil;
+import org.apache.syncope.core.workflow.WorkflowResult;
+import org.apache.syncope.types.AttributableType;
+import org.apache.syncope.types.IntMappingType;
+import org.apache.syncope.types.PropagationMode;
+import org.apache.syncope.types.PropagationOperation;
+import org.apache.syncope.types.PropagationTaskExecStatus;
+import org.apache.syncope.types.SchemaType;
+import org.apache.syncope.types.TraceLevel;
 
 /**
  * Manage the data propagation to external resources.

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/propagation/package-info.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/propagation/package-info.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/propagation/package-info.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/propagation/package-info.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/propagation/package-info.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/propagation/package-info.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/propagation/package-info.java Wed Apr 18 15:52:29 2012
@@ -16,5 +16,5 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.propagation;
+package org.apache.syncope.core.propagation;
 

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/AbstractReportlet.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/AbstractReportlet.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/AbstractReportlet.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/AbstractReportlet.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/AbstractReportlet.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/AbstractReportlet.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/AbstractReportlet.java Wed Apr 18 15:52:29 2012
@@ -16,15 +16,15 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.report;
+package org.apache.syncope.core.report;
 
 import java.text.SimpleDateFormat;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.transaction.annotation.Transactional;
-import org.syncope.client.SyncopeConstants;
-import org.syncope.client.report.AbstractReportletConf;
-import static org.syncope.core.scheduling.ReportXMLConst.*;
+import org.apache.syncope.client.SyncopeConstants;
+import org.apache.syncope.client.report.AbstractReportletConf;
+import static org.apache.syncope.core.scheduling.ReportXMLConst.*;
 import org.xml.sax.ContentHandler;
 import org.xml.sax.SAXException;
 import org.xml.sax.helpers.AttributesImpl;

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/ReportException.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/ReportException.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/ReportException.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/ReportException.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/ReportException.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/ReportException.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/ReportException.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.report;
+package org.apache.syncope.core.report;
 
 public class ReportException extends Exception {
 

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/Reportlet.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/Reportlet.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/Reportlet.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/Reportlet.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/Reportlet.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/Reportlet.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/Reportlet.java Wed Apr 18 15:52:29 2012
@@ -16,16 +16,16 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.report;
+package org.apache.syncope.core.report;
 
-import org.syncope.client.report.ReportletConf;
+import org.apache.syncope.client.report.ReportletConf;
 import org.xml.sax.ContentHandler;
 import org.xml.sax.SAXException;
 
 /**
  * Interface for all elements that can be embedded in a report.
  *
- * @see org.syncope.core.persistence.beans.Report
+ * @see org.apache.syncope.core.persistence.beans.Report
  */
 public interface Reportlet<T extends ReportletConf> {
 

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/ReportletConfClass.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/ReportletConfClass.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/ReportletConfClass.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/ReportletConfClass.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/ReportletConfClass.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/ReportletConfClass.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/ReportletConfClass.java Wed Apr 18 15:52:29 2012
@@ -16,13 +16,13 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.report;
+package org.apache.syncope.core.report;
 
 import java.lang.annotation.ElementType;
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 import java.lang.annotation.Target;
-import org.syncope.client.report.ReportletConf;
+import org.apache.syncope.client.report.ReportletConf;
 
 @Target( { ElementType.TYPE })
 @Retention(RetentionPolicy.RUNTIME)

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/StaticReportlet.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/StaticReportlet.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/StaticReportlet.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/StaticReportlet.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/StaticReportlet.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/StaticReportlet.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/StaticReportlet.java Wed Apr 18 15:52:29 2012
@@ -16,10 +16,10 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.report;
+package org.apache.syncope.core.report;
 
 import org.springframework.util.StringUtils;
-import org.syncope.client.report.StaticReportletConf;
+import org.apache.syncope.client.report.StaticReportletConf;
 import org.xml.sax.ContentHandler;
 import org.xml.sax.SAXException;
 

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/UserReportlet.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/UserReportlet.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/UserReportlet.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/UserReportlet.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/UserReportlet.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/report/UserReportlet.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/report/UserReportlet.java Wed Apr 18 15:52:29 2012
@@ -16,28 +16,28 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.report;
+package org.apache.syncope.core.report;
 
 import java.util.Collection;
 import java.util.List;
 import java.util.Map;
 import java.util.Set;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.syncope.client.report.UserReportletConf;
-import org.syncope.client.report.UserReportletConf.Feature;
-import org.syncope.client.to.AbstractAttributableTO;
-import org.syncope.client.to.AttributeTO;
-import org.syncope.client.to.MembershipTO;
-import org.syncope.client.to.UserTO;
-import org.syncope.core.persistence.beans.membership.Membership;
-import org.syncope.core.persistence.beans.user.SyncopeUser;
-import org.syncope.core.persistence.dao.EntitlementDAO;
-import org.syncope.core.persistence.dao.UserDAO;
-import org.syncope.core.persistence.dao.UserSearchDAO;
-import org.syncope.core.rest.data.RoleDataBinder;
-import org.syncope.core.rest.data.UserDataBinder;
-import static org.syncope.core.scheduling.ReportXMLConst.*;
-import org.syncope.core.util.EntitlementUtil;
+import org.apache.syncope.client.report.UserReportletConf;
+import org.apache.syncope.client.report.UserReportletConf.Feature;
+import org.apache.syncope.client.to.AbstractAttributableTO;
+import org.apache.syncope.client.to.AttributeTO;
+import org.apache.syncope.client.to.MembershipTO;
+import org.apache.syncope.client.to.UserTO;
+import org.apache.syncope.core.persistence.beans.membership.Membership;
+import org.apache.syncope.core.persistence.beans.user.SyncopeUser;
+import org.apache.syncope.core.persistence.dao.EntitlementDAO;
+import org.apache.syncope.core.persistence.dao.UserDAO;
+import org.apache.syncope.core.persistence.dao.UserSearchDAO;
+import org.apache.syncope.core.rest.data.RoleDataBinder;
+import org.apache.syncope.core.rest.data.UserDataBinder;
+import static org.apache.syncope.core.scheduling.ReportXMLConst.*;
+import org.apache.syncope.core.util.EntitlementUtil;
 import org.xml.sax.ContentHandler;
 import org.xml.sax.SAXException;
 import org.xml.sax.helpers.AttributesImpl;

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/AbstractController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/AbstractController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/AbstractController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/AbstractController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/AbstractController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/AbstractController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/AbstractController.java Wed Apr 18 15:52:29 2012
@@ -16,23 +16,23 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.beans.TypeMismatchException;
 import org.springframework.transaction.annotation.Transactional;
-import org.syncope.client.to.PropagationTaskTO;
-import org.syncope.client.to.SchedTaskTO;
-import org.syncope.client.to.SyncTaskTO;
-import org.syncope.client.to.TaskTO;
-import org.syncope.core.persistence.beans.NotificationTask;
-import org.syncope.core.persistence.beans.PropagationTask;
-import org.syncope.core.persistence.beans.SchedTask;
-import org.syncope.core.persistence.beans.SyncTask;
-import org.syncope.core.persistence.beans.Task;
-import org.syncope.core.util.AttributableUtil;
-import org.syncope.core.util.TaskUtil;
+import org.apache.syncope.client.to.PropagationTaskTO;
+import org.apache.syncope.client.to.SchedTaskTO;
+import org.apache.syncope.client.to.SyncTaskTO;
+import org.apache.syncope.client.to.TaskTO;
+import org.apache.syncope.core.persistence.beans.NotificationTask;
+import org.apache.syncope.core.persistence.beans.PropagationTask;
+import org.apache.syncope.core.persistence.beans.SchedTask;
+import org.apache.syncope.core.persistence.beans.SyncTask;
+import org.apache.syncope.core.persistence.beans.Task;
+import org.apache.syncope.core.util.AttributableUtil;
+import org.apache.syncope.core.util.TaskUtil;
 
 @Transactional(rollbackFor = { Throwable.class })
 public abstract class AbstractController {

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/AuthenticationController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/AuthenticationController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/AuthenticationController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/AuthenticationController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/AuthenticationController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/AuthenticationController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/AuthenticationController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -25,13 +25,13 @@ import org.springframework.beans.factory
 import org.springframework.stereotype.Controller;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.persistence.beans.Entitlement;
-import org.syncope.core.persistence.dao.EntitlementDAO;
-import org.syncope.core.util.EntitlementUtil;
-import org.syncope.types.AuditElements.AuthenticationSubCategory;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.Result;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.persistence.beans.Entitlement;
+import org.apache.syncope.core.persistence.dao.EntitlementDAO;
+import org.apache.syncope.core.util.EntitlementUtil;
+import org.apache.syncope.types.AuditElements.AuthenticationSubCategory;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.Result;
 
 @Controller
 @RequestMapping("/auth")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ConfigurationController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ConfigurationController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ConfigurationController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ConfigurationController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ConfigurationController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ConfigurationController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ConfigurationController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.io.IOException;
 import java.util.ArrayList;
@@ -37,18 +37,18 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.servlet.ModelAndView;
-import org.syncope.client.to.ConfigurationTO;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.init.ImplementationClassNamesLoader;
-import org.syncope.core.persistence.beans.SyncopeConf;
-import org.syncope.core.persistence.dao.ConfDAO;
-import org.syncope.core.persistence.dao.MissingConfKeyException;
-import org.syncope.core.persistence.validation.attrvalue.Validator;
-import org.syncope.core.rest.data.ConfigurationDataBinder;
-import org.syncope.core.util.ImportExport;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.ConfigurationSubCategory;
-import org.syncope.types.AuditElements.Result;
+import org.apache.syncope.client.to.ConfigurationTO;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.init.ImplementationClassNamesLoader;
+import org.apache.syncope.core.persistence.beans.SyncopeConf;
+import org.apache.syncope.core.persistence.dao.ConfDAO;
+import org.apache.syncope.core.persistence.dao.MissingConfKeyException;
+import org.apache.syncope.core.persistence.validation.attrvalue.Validator;
+import org.apache.syncope.core.rest.data.ConfigurationDataBinder;
+import org.apache.syncope.core.util.ImportExport;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.ConfigurationSubCategory;
+import org.apache.syncope.types.AuditElements.Result;
 
 @Controller
 @RequestMapping("/configuration")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ConnInstanceController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ConnInstanceController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ConnInstanceController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ConnInstanceController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ConnInstanceController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ConnInstanceController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ConnInstanceController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.Collections;
@@ -44,26 +44,26 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.bind.annotation.RequestParam;
 import org.springframework.web.servlet.ModelAndView;
-import org.syncope.client.to.ConnBundleTO;
-import org.syncope.client.to.ConnInstanceTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.client.validation.SyncopeClientException;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.init.ConnInstanceLoader;
-import org.syncope.core.persistence.beans.ConnInstance;
-import org.syncope.core.persistence.beans.ExternalResource;
-import org.syncope.core.persistence.dao.ConnInstanceDAO;
-import org.syncope.core.persistence.dao.MissingConfKeyException;
-import org.syncope.core.persistence.dao.ResourceDAO;
-import org.syncope.core.propagation.ConnectorFacadeProxy;
-import org.syncope.core.rest.data.ConnInstanceDataBinder;
-import org.syncope.core.util.ConnBundleManager;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.ConnectorSubCategory;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.ConnConfPropSchema;
-import org.syncope.types.ConnConfProperty;
-import org.syncope.types.SyncopeClientExceptionType;
+import org.apache.syncope.client.to.ConnBundleTO;
+import org.apache.syncope.client.to.ConnInstanceTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.client.validation.SyncopeClientException;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.init.ConnInstanceLoader;
+import org.apache.syncope.core.persistence.beans.ConnInstance;
+import org.apache.syncope.core.persistence.beans.ExternalResource;
+import org.apache.syncope.core.persistence.dao.ConnInstanceDAO;
+import org.apache.syncope.core.persistence.dao.MissingConfKeyException;
+import org.apache.syncope.core.persistence.dao.ResourceDAO;
+import org.apache.syncope.core.propagation.ConnectorFacadeProxy;
+import org.apache.syncope.core.rest.data.ConnInstanceDataBinder;
+import org.apache.syncope.core.util.ConnBundleManager;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.ConnectorSubCategory;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.ConnConfPropSchema;
+import org.apache.syncope.types.ConnConfProperty;
+import org.apache.syncope.types.SyncopeClientExceptionType;
 
 @Controller
 @RequestMapping("/connector")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/DerivedSchemaController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/DerivedSchemaController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/DerivedSchemaController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/DerivedSchemaController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/DerivedSchemaController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/DerivedSchemaController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/DerivedSchemaController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -29,15 +29,15 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
-import org.syncope.client.to.DerivedSchemaTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.persistence.beans.AbstractDerSchema;
-import org.syncope.core.persistence.dao.DerSchemaDAO;
-import org.syncope.core.rest.data.DerivedSchemaDataBinder;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.AuditElements.SchemaSubCategory;
+import org.apache.syncope.client.to.DerivedSchemaTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.persistence.beans.AbstractDerSchema;
+import org.apache.syncope.core.persistence.dao.DerSchemaDAO;
+import org.apache.syncope.core.rest.data.DerivedSchemaDataBinder;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.AuditElements.SchemaSubCategory;
 
 @Controller
 @RequestMapping("/derivedSchema")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/InvalidSearchConditionException.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/InvalidSearchConditionException.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/InvalidSearchConditionException.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/InvalidSearchConditionException.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/InvalidSearchConditionException.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/InvalidSearchConditionException.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/InvalidSearchConditionException.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 public class InvalidSearchConditionException extends Exception {
 

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/LoggerController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/LoggerController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/LoggerController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/LoggerController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/LoggerController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/LoggerController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/LoggerController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import ch.qos.logback.classic.Level;
 import ch.qos.logback.classic.Logger;
@@ -35,19 +35,19 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
-import org.syncope.client.to.LoggerTO;
-import org.syncope.types.AuditLoggerName;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.client.validation.SyncopeClientException;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.persistence.beans.SyncopeLogger;
-import org.syncope.core.persistence.dao.LoggerDAO;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.LoggerSubCategory;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.SyncopeClientExceptionType;
-import org.syncope.types.SyncopeLoggerLevel;
-import org.syncope.types.SyncopeLoggerType;
+import org.apache.syncope.client.to.LoggerTO;
+import org.apache.syncope.types.AuditLoggerName;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.client.validation.SyncopeClientException;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.persistence.beans.SyncopeLogger;
+import org.apache.syncope.core.persistence.dao.LoggerDAO;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.LoggerSubCategory;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.SyncopeClientExceptionType;
+import org.apache.syncope.types.SyncopeLoggerLevel;
+import org.apache.syncope.types.SyncopeLoggerType;
 
 @Controller
 @RequestMapping("/logger")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/NotificationController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/NotificationController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/NotificationController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/NotificationController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/NotificationController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/NotificationController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/NotificationController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -29,14 +29,14 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
-import org.syncope.client.to.NotificationTO;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.persistence.beans.Notification;
-import org.syncope.core.persistence.dao.NotificationDAO;
-import org.syncope.core.rest.data.NotificationDataBinder;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.NotificationSubCategory;
-import org.syncope.types.AuditElements.Result;
+import org.apache.syncope.client.to.NotificationTO;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.persistence.beans.Notification;
+import org.apache.syncope.core.persistence.dao.NotificationDAO;
+import org.apache.syncope.core.rest.data.NotificationDataBinder;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.NotificationSubCategory;
+import org.apache.syncope.types.AuditElements.Result;
 
 @Controller
 @RequestMapping("/notification")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/PolicyController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/PolicyController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/PolicyController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/PolicyController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/PolicyController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/PolicyController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/PolicyController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -30,22 +30,22 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
-import org.syncope.client.to.AccountPolicyTO;
-import org.syncope.client.to.PasswordPolicyTO;
-import org.syncope.client.to.PolicyTO;
-import org.syncope.client.to.SyncPolicyTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.persistence.beans.AccountPolicy;
-import org.syncope.core.persistence.beans.PasswordPolicy;
-import org.syncope.core.persistence.beans.Policy;
-import org.syncope.core.persistence.beans.SyncPolicy;
-import org.syncope.core.persistence.dao.PolicyDAO;
-import org.syncope.core.rest.data.PolicyDataBinder;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.PolicySubCategory;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.PolicyType;
+import org.apache.syncope.client.to.AccountPolicyTO;
+import org.apache.syncope.client.to.PasswordPolicyTO;
+import org.apache.syncope.client.to.PolicyTO;
+import org.apache.syncope.client.to.SyncPolicyTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.persistence.beans.AccountPolicy;
+import org.apache.syncope.core.persistence.beans.PasswordPolicy;
+import org.apache.syncope.core.persistence.beans.Policy;
+import org.apache.syncope.core.persistence.beans.SyncPolicy;
+import org.apache.syncope.core.persistence.dao.PolicyDAO;
+import org.apache.syncope.core.rest.data.PolicyDataBinder;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.PolicySubCategory;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.PolicyType;
 
 @Controller
 @RequestMapping("/policy")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ReportController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ReportController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ReportController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ReportController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ReportController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ReportController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ReportController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.io.ByteArrayInputStream;
 import java.io.IOException;
@@ -53,25 +53,25 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.bind.annotation.RequestParam;
 import org.springframework.web.servlet.ModelAndView;
-import org.syncope.client.report.ReportletConf;
-import org.syncope.client.to.ReportExecTO;
-import org.syncope.client.to.ReportTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.client.validation.SyncopeClientException;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.init.JobInstanceLoader;
-import org.syncope.core.persistence.beans.Report;
-import org.syncope.core.persistence.beans.ReportExec;
-import org.syncope.core.persistence.dao.ReportDAO;
-import org.syncope.core.persistence.dao.ReportExecDAO;
-import org.syncope.core.report.Reportlet;
-import org.syncope.core.rest.data.ReportDataBinder;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.ReportSubCategory;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.ReportExecExportFormat;
-import org.syncope.types.ReportExecStatus;
-import org.syncope.types.SyncopeClientExceptionType;
+import org.apache.syncope.client.report.ReportletConf;
+import org.apache.syncope.client.to.ReportExecTO;
+import org.apache.syncope.client.to.ReportTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.client.validation.SyncopeClientException;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.init.JobInstanceLoader;
+import org.apache.syncope.core.persistence.beans.Report;
+import org.apache.syncope.core.persistence.beans.ReportExec;
+import org.apache.syncope.core.persistence.dao.ReportDAO;
+import org.apache.syncope.core.persistence.dao.ReportExecDAO;
+import org.apache.syncope.core.report.Reportlet;
+import org.apache.syncope.core.rest.data.ReportDataBinder;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.ReportSubCategory;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.ReportExecExportFormat;
+import org.apache.syncope.types.ReportExecStatus;
+import org.apache.syncope.types.SyncopeClientExceptionType;
 
 @Controller
 @RequestMapping("/report")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ResourceController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ResourceController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ResourceController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ResourceController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ResourceController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/ResourceController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/ResourceController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -38,24 +38,24 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.bind.annotation.RequestParam;
-import org.syncope.client.to.ConnObjectTO;
-import org.syncope.client.to.ResourceTO;
-import org.syncope.client.to.SchemaMappingTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.init.ConnInstanceLoader;
-import org.syncope.core.persistence.beans.ConnInstance;
-import org.syncope.core.persistence.beans.ExternalResource;
-import org.syncope.core.persistence.beans.role.SyncopeRole;
-import org.syncope.core.persistence.dao.ConnInstanceDAO;
-import org.syncope.core.persistence.dao.ResourceDAO;
-import org.syncope.core.persistence.dao.RoleDAO;
-import org.syncope.core.propagation.ConnectorFacadeProxy;
-import org.syncope.core.rest.data.ResourceDataBinder;
-import org.syncope.core.util.ConnObjectUtil;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.ResourceSubCategory;
-import org.syncope.types.AuditElements.Result;
+import org.apache.syncope.client.to.ConnObjectTO;
+import org.apache.syncope.client.to.ResourceTO;
+import org.apache.syncope.client.to.SchemaMappingTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.init.ConnInstanceLoader;
+import org.apache.syncope.core.persistence.beans.ConnInstance;
+import org.apache.syncope.core.persistence.beans.ExternalResource;
+import org.apache.syncope.core.persistence.beans.role.SyncopeRole;
+import org.apache.syncope.core.persistence.dao.ConnInstanceDAO;
+import org.apache.syncope.core.persistence.dao.ResourceDAO;
+import org.apache.syncope.core.persistence.dao.RoleDAO;
+import org.apache.syncope.core.propagation.ConnectorFacadeProxy;
+import org.apache.syncope.core.rest.data.ResourceDataBinder;
+import org.apache.syncope.core.util.ConnObjectUtil;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.ResourceSubCategory;
+import org.apache.syncope.types.AuditElements.Result;
 
 @Controller
 @RequestMapping("/resource")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/RoleController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/RoleController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/RoleController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/RoleController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/RoleController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/RoleController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/RoleController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -32,19 +32,19 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
-import org.syncope.client.mod.RoleMod;
-import org.syncope.client.to.RoleTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.persistence.beans.role.SyncopeRole;
-import org.syncope.core.persistence.beans.user.SyncopeUser;
-import org.syncope.core.persistence.dao.RoleDAO;
-import org.syncope.core.persistence.dao.UserDAO;
-import org.syncope.core.rest.data.RoleDataBinder;
-import org.syncope.core.util.EntitlementUtil;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.AuditElements.RoleSubCategory;
+import org.apache.syncope.client.mod.RoleMod;
+import org.apache.syncope.client.to.RoleTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.persistence.beans.role.SyncopeRole;
+import org.apache.syncope.core.persistence.beans.user.SyncopeUser;
+import org.apache.syncope.core.persistence.dao.RoleDAO;
+import org.apache.syncope.core.persistence.dao.UserDAO;
+import org.apache.syncope.core.rest.data.RoleDataBinder;
+import org.apache.syncope.core.util.EntitlementUtil;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.AuditElements.RoleSubCategory;
 
 @Controller
 @RequestMapping("/role")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/SchemaController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/SchemaController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/SchemaController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/SchemaController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/SchemaController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/SchemaController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/SchemaController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -29,15 +29,15 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
-import org.syncope.client.to.SchemaTO;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.persistence.beans.AbstractSchema;
-import org.syncope.core.persistence.dao.SchemaDAO;
-import org.syncope.core.rest.data.SchemaDataBinder;
-import org.syncope.core.util.AttributableUtil;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.SchemaSubCategory;
-import org.syncope.types.AuditElements.Result;
+import org.apache.syncope.client.to.SchemaTO;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.persistence.beans.AbstractSchema;
+import org.apache.syncope.core.persistence.dao.SchemaDAO;
+import org.apache.syncope.core.rest.data.SchemaDataBinder;
+import org.apache.syncope.core.util.AttributableUtil;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.SchemaSubCategory;
+import org.apache.syncope.types.AuditElements.Result;
 
 @Controller
 @RequestMapping("/schema")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/TaskController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/TaskController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/TaskController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/TaskController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/TaskController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/TaskController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/TaskController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.Date;
@@ -37,33 +37,33 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.bind.annotation.RequestParam;
 import org.springframework.web.servlet.ModelAndView;
-import org.syncope.client.to.SchedTaskTO;
-import org.syncope.client.to.SyncTaskTO;
-import org.syncope.client.to.TaskExecTO;
-import org.syncope.client.to.TaskTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.client.validation.SyncopeClientException;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.init.ImplementationClassNamesLoader;
-import org.syncope.core.init.JobInstanceLoader;
-import org.syncope.core.notification.NotificationManager;
-import org.syncope.core.persistence.beans.NotificationTask;
-import org.syncope.core.persistence.beans.PropagationTask;
-import org.syncope.core.persistence.beans.SchedTask;
-import org.syncope.core.persistence.beans.Task;
-import org.syncope.core.persistence.beans.TaskExec;
-import org.syncope.core.persistence.dao.TaskDAO;
-import org.syncope.core.persistence.dao.TaskExecDAO;
-import org.syncope.core.propagation.PropagationManager;
-import org.syncope.core.rest.data.TaskDataBinder;
-import org.syncope.core.scheduling.AbstractTaskJob;
-import org.syncope.core.util.TaskUtil;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.AuditElements.TaskSubCategory;
-import org.syncope.types.PropagationMode;
-import org.syncope.types.PropagationTaskExecStatus;
-import org.syncope.types.SyncopeClientExceptionType;
+import org.apache.syncope.client.to.SchedTaskTO;
+import org.apache.syncope.client.to.SyncTaskTO;
+import org.apache.syncope.client.to.TaskExecTO;
+import org.apache.syncope.client.to.TaskTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.client.validation.SyncopeClientException;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.init.ImplementationClassNamesLoader;
+import org.apache.syncope.core.init.JobInstanceLoader;
+import org.apache.syncope.core.notification.NotificationManager;
+import org.apache.syncope.core.persistence.beans.NotificationTask;
+import org.apache.syncope.core.persistence.beans.PropagationTask;
+import org.apache.syncope.core.persistence.beans.SchedTask;
+import org.apache.syncope.core.persistence.beans.Task;
+import org.apache.syncope.core.persistence.beans.TaskExec;
+import org.apache.syncope.core.persistence.dao.TaskDAO;
+import org.apache.syncope.core.persistence.dao.TaskExecDAO;
+import org.apache.syncope.core.propagation.PropagationManager;
+import org.apache.syncope.core.rest.data.TaskDataBinder;
+import org.apache.syncope.core.scheduling.AbstractTaskJob;
+import org.apache.syncope.core.util.TaskUtil;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.AuditElements.TaskSubCategory;
+import org.apache.syncope.types.PropagationMode;
+import org.apache.syncope.types.PropagationTaskExecStatus;
+import org.apache.syncope.types.SyncopeClientExceptionType;
 
 @Controller
 @RequestMapping("/task")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UnauthorizedRoleException.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/UnauthorizedRoleException.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UnauthorizedRoleException.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UnauthorizedRoleException.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/UnauthorizedRoleException.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/UnauthorizedRoleException.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UnauthorizedRoleException.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.Collections;
 import java.util.Set;

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UserController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/UserController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UserController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UserController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/UserController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/UserController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UserController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.HashSet;
@@ -40,31 +40,31 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.bind.annotation.RequestParam;
 import org.springframework.web.servlet.ModelAndView;
-import org.syncope.client.mod.UserMod;
-import org.syncope.client.search.NodeCond;
-import org.syncope.client.to.MembershipTO;
-import org.syncope.client.to.PropagationTO;
-import org.syncope.client.to.UserTO;
-import org.syncope.client.to.WorkflowFormTO;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.notification.NotificationManager;
-import org.syncope.core.persistence.beans.PropagationTask;
-import org.syncope.core.persistence.beans.user.SyncopeUser;
-import org.syncope.core.persistence.dao.UserDAO;
-import org.syncope.core.persistence.dao.UserSearchDAO;
-import org.syncope.core.propagation.PropagationException;
-import org.syncope.core.propagation.PropagationHandler;
-import org.syncope.core.propagation.PropagationManager;
-import org.syncope.core.rest.data.UserDataBinder;
-import org.syncope.core.util.ConnObjectUtil;
-import org.syncope.core.util.EntitlementUtil;
-import org.syncope.core.workflow.UserWorkflowAdapter;
-import org.syncope.core.workflow.WorkflowException;
-import org.syncope.core.workflow.WorkflowResult;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.AuditElements.UserSubCategory;
-import org.syncope.types.PropagationTaskExecStatus;
+import org.apache.syncope.client.mod.UserMod;
+import org.apache.syncope.client.search.NodeCond;
+import org.apache.syncope.client.to.MembershipTO;
+import org.apache.syncope.client.to.PropagationTO;
+import org.apache.syncope.client.to.UserTO;
+import org.apache.syncope.client.to.WorkflowFormTO;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.notification.NotificationManager;
+import org.apache.syncope.core.persistence.beans.PropagationTask;
+import org.apache.syncope.core.persistence.beans.user.SyncopeUser;
+import org.apache.syncope.core.persistence.dao.UserDAO;
+import org.apache.syncope.core.persistence.dao.UserSearchDAO;
+import org.apache.syncope.core.propagation.PropagationException;
+import org.apache.syncope.core.propagation.PropagationHandler;
+import org.apache.syncope.core.propagation.PropagationManager;
+import org.apache.syncope.core.rest.data.UserDataBinder;
+import org.apache.syncope.core.util.ConnObjectUtil;
+import org.apache.syncope.core.util.EntitlementUtil;
+import org.apache.syncope.core.workflow.UserWorkflowAdapter;
+import org.apache.syncope.core.workflow.WorkflowException;
+import org.apache.syncope.core.workflow.WorkflowResult;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.AuditElements.UserSubCategory;
+import org.apache.syncope.types.PropagationTaskExecStatus;
 
 /**
  * Note that this controller does not extend AbstractController, hence does not provide any Spring's @Transactional

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UserRequestController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/UserRequestController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UserRequestController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UserRequestController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/UserRequestController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/UserRequestController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/UserRequestController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -33,18 +33,18 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.servlet.ModelAndView;
-import org.syncope.client.mod.UserMod;
-import org.syncope.client.to.UserRequestTO;
-import org.syncope.client.to.UserTO;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.persistence.beans.SyncopeConf;
-import org.syncope.core.persistence.beans.UserRequest;
-import org.syncope.core.persistence.dao.ConfDAO;
-import org.syncope.core.persistence.dao.UserRequestDAO;
-import org.syncope.core.rest.data.UserRequestDataBinder;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.AuditElements.UserRequestSubCategory;
+import org.apache.syncope.client.mod.UserMod;
+import org.apache.syncope.client.to.UserRequestTO;
+import org.apache.syncope.client.to.UserTO;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.persistence.beans.SyncopeConf;
+import org.apache.syncope.core.persistence.beans.UserRequest;
+import org.apache.syncope.core.persistence.dao.ConfDAO;
+import org.apache.syncope.core.persistence.dao.UserRequestDAO;
+import org.apache.syncope.core.rest.data.UserRequestDataBinder;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.AuditElements.UserRequestSubCategory;
 
 @Controller
 @RequestMapping("/user/request")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/VirtualSchemaController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/VirtualSchemaController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/VirtualSchemaController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/VirtualSchemaController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/VirtualSchemaController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/VirtualSchemaController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/VirtualSchemaController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -29,15 +29,15 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
-import org.syncope.client.to.VirtualSchemaTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.persistence.beans.AbstractVirSchema;
-import org.syncope.core.persistence.dao.VirSchemaDAO;
-import org.syncope.core.rest.data.VirtualSchemaDataBinder;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.AuditElements.SchemaSubCategory;
+import org.apache.syncope.client.to.VirtualSchemaTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.persistence.beans.AbstractVirSchema;
+import org.apache.syncope.core.persistence.dao.VirSchemaDAO;
+import org.apache.syncope.core.rest.data.VirtualSchemaDataBinder;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.AuditElements.SchemaSubCategory;
 
 @Controller
 @RequestMapping("/virtualSchema")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/WorkflowController.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/WorkflowController.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/WorkflowController.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/WorkflowController.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/WorkflowController.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/controller/WorkflowController.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/controller/WorkflowController.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.controller;
+package org.apache.syncope.core.rest.controller;
 
 import java.util.List;
 import javassist.NotFoundException;
@@ -28,13 +28,13 @@ import org.springframework.web.bind.anno
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestMethod;
 import org.springframework.web.servlet.ModelAndView;
-import org.syncope.client.to.WorkflowDefinitionTO;
-import org.syncope.core.audit.AuditManager;
-import org.syncope.core.workflow.UserWorkflowAdapter;
-import org.syncope.core.workflow.WorkflowException;
-import org.syncope.types.AuditElements.Category;
-import org.syncope.types.AuditElements.Result;
-import org.syncope.types.AuditElements.WorkflowSubCategory;
+import org.apache.syncope.client.to.WorkflowDefinitionTO;
+import org.apache.syncope.core.audit.AuditManager;
+import org.apache.syncope.core.workflow.UserWorkflowAdapter;
+import org.apache.syncope.core.workflow.WorkflowException;
+import org.apache.syncope.types.AuditElements.Category;
+import org.apache.syncope.types.AuditElements.Result;
+import org.apache.syncope.types.AuditElements.WorkflowSubCategory;
 
 @Controller
 @RequestMapping("/workflow")

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/AbstractAttributableDataBinder.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/AbstractAttributableDataBinder.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/AbstractAttributableDataBinder.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/AbstractAttributableDataBinder.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/AbstractAttributableDataBinder.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/AbstractAttributableDataBinder.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/AbstractAttributableDataBinder.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.data;
+package org.apache.syncope.core.rest.data;
 
 import java.util.ArrayList;
 import java.util.Collection;
@@ -32,41 +32,41 @@ import org.apache.commons.lang.StringUti
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.beans.factory.annotation.Autowired;
-import org.syncope.client.mod.AbstractAttributableMod;
-import org.syncope.client.mod.AttributeMod;
-import org.syncope.client.to.AbstractAttributableTO;
-import org.syncope.client.to.AttributeTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.client.validation.SyncopeClientException;
-import org.syncope.core.persistence.beans.AbstractAttr;
-import org.syncope.core.persistence.beans.AbstractAttrValue;
-import org.syncope.core.persistence.beans.AbstractAttributable;
-import org.syncope.core.persistence.beans.AbstractDerAttr;
-import org.syncope.core.persistence.beans.AbstractDerSchema;
-import org.syncope.core.persistence.beans.AbstractSchema;
-import org.syncope.core.persistence.beans.AbstractVirAttr;
-import org.syncope.core.persistence.beans.AbstractVirSchema;
-import org.syncope.core.persistence.beans.ExternalResource;
-import org.syncope.core.persistence.beans.SchemaMapping;
-import org.syncope.core.persistence.dao.AttrDAO;
-import org.syncope.core.persistence.dao.AttrValueDAO;
-import org.syncope.core.persistence.dao.ConfDAO;
-import org.syncope.core.persistence.dao.DerAttrDAO;
-import org.syncope.core.persistence.dao.DerSchemaDAO;
-import org.syncope.core.persistence.dao.MembershipDAO;
-import org.syncope.core.persistence.dao.PolicyDAO;
-import org.syncope.core.persistence.dao.ResourceDAO;
-import org.syncope.core.persistence.dao.RoleDAO;
-import org.syncope.core.persistence.dao.SchemaDAO;
-import org.syncope.core.persistence.dao.UserDAO;
-import org.syncope.core.persistence.dao.VirAttrDAO;
-import org.syncope.core.persistence.dao.VirSchemaDAO;
-import org.syncope.core.propagation.PropagationByResource;
-import org.syncope.core.util.AttributableUtil;
-import org.syncope.core.util.JexlUtil;
-import org.syncope.types.AttributableType;
-import org.syncope.types.PropagationOperation;
-import org.syncope.types.SyncopeClientExceptionType;
+import org.apache.syncope.client.mod.AbstractAttributableMod;
+import org.apache.syncope.client.mod.AttributeMod;
+import org.apache.syncope.client.to.AbstractAttributableTO;
+import org.apache.syncope.client.to.AttributeTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.client.validation.SyncopeClientException;
+import org.apache.syncope.core.persistence.beans.AbstractAttr;
+import org.apache.syncope.core.persistence.beans.AbstractAttrValue;
+import org.apache.syncope.core.persistence.beans.AbstractAttributable;
+import org.apache.syncope.core.persistence.beans.AbstractDerAttr;
+import org.apache.syncope.core.persistence.beans.AbstractDerSchema;
+import org.apache.syncope.core.persistence.beans.AbstractSchema;
+import org.apache.syncope.core.persistence.beans.AbstractVirAttr;
+import org.apache.syncope.core.persistence.beans.AbstractVirSchema;
+import org.apache.syncope.core.persistence.beans.ExternalResource;
+import org.apache.syncope.core.persistence.beans.SchemaMapping;
+import org.apache.syncope.core.persistence.dao.AttrDAO;
+import org.apache.syncope.core.persistence.dao.AttrValueDAO;
+import org.apache.syncope.core.persistence.dao.ConfDAO;
+import org.apache.syncope.core.persistence.dao.DerAttrDAO;
+import org.apache.syncope.core.persistence.dao.DerSchemaDAO;
+import org.apache.syncope.core.persistence.dao.MembershipDAO;
+import org.apache.syncope.core.persistence.dao.PolicyDAO;
+import org.apache.syncope.core.persistence.dao.ResourceDAO;
+import org.apache.syncope.core.persistence.dao.RoleDAO;
+import org.apache.syncope.core.persistence.dao.SchemaDAO;
+import org.apache.syncope.core.persistence.dao.UserDAO;
+import org.apache.syncope.core.persistence.dao.VirAttrDAO;
+import org.apache.syncope.core.persistence.dao.VirSchemaDAO;
+import org.apache.syncope.core.propagation.PropagationByResource;
+import org.apache.syncope.core.util.AttributableUtil;
+import org.apache.syncope.core.util.JexlUtil;
+import org.apache.syncope.types.AttributableType;
+import org.apache.syncope.types.PropagationOperation;
+import org.apache.syncope.types.SyncopeClientExceptionType;
 
 public abstract class AbstractAttributableDataBinder {
 

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ConfigurationDataBinder.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/ConfigurationDataBinder.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ConfigurationDataBinder.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ConfigurationDataBinder.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/ConfigurationDataBinder.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/ConfigurationDataBinder.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ConfigurationDataBinder.java Wed Apr 18 15:52:29 2012
@@ -16,11 +16,11 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.data;
+package org.apache.syncope.core.rest.data;
 
 import org.springframework.stereotype.Component;
-import org.syncope.client.to.ConfigurationTO;
-import org.syncope.core.persistence.beans.SyncopeConf;
+import org.apache.syncope.client.to.ConfigurationTO;
+import org.apache.syncope.core.persistence.beans.SyncopeConf;
 
 @Component
 public class ConfigurationDataBinder {

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ConnInstanceDataBinder.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/ConnInstanceDataBinder.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ConnInstanceDataBinder.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ConnInstanceDataBinder.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/ConnInstanceDataBinder.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/ConnInstanceDataBinder.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ConnInstanceDataBinder.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.data;
+package org.apache.syncope.core.rest.data;
 
 import java.util.Map;
 import javassist.NotFoundException;
@@ -26,15 +26,15 @@ import org.springframework.beans.BeanUti
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.http.HttpStatus;
 import org.springframework.stereotype.Component;
-import org.syncope.client.to.ConnInstanceTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.client.validation.SyncopeClientException;
-import org.syncope.core.persistence.beans.ConnInstance;
-import org.syncope.core.persistence.dao.ConnInstanceDAO;
-import org.syncope.core.util.ConnBundleManager;
-import org.syncope.types.ConnConfPropSchema;
-import org.syncope.types.ConnConfProperty;
-import org.syncope.types.SyncopeClientExceptionType;
+import org.apache.syncope.client.to.ConnInstanceTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.client.validation.SyncopeClientException;
+import org.apache.syncope.core.persistence.beans.ConnInstance;
+import org.apache.syncope.core.persistence.dao.ConnInstanceDAO;
+import org.apache.syncope.core.util.ConnBundleManager;
+import org.apache.syncope.types.ConnConfPropSchema;
+import org.apache.syncope.types.ConnConfProperty;
+import org.apache.syncope.types.SyncopeClientExceptionType;
 
 @Component
 public class ConnInstanceDataBinder {

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/DerivedSchemaDataBinder.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/DerivedSchemaDataBinder.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/DerivedSchemaDataBinder.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/DerivedSchemaDataBinder.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/DerivedSchemaDataBinder.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/DerivedSchemaDataBinder.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/DerivedSchemaDataBinder.java Wed Apr 18 15:52:29 2012
@@ -16,19 +16,19 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.data;
+package org.apache.syncope.core.rest.data;
 
 import org.springframework.beans.BeanUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.http.HttpStatus;
 import org.springframework.stereotype.Component;
-import org.syncope.client.to.DerivedSchemaTO;
-import org.syncope.client.validation.SyncopeClientCompositeErrorException;
-import org.syncope.client.validation.SyncopeClientException;
-import org.syncope.core.persistence.beans.AbstractDerSchema;
-import org.syncope.core.persistence.beans.AbstractSchema;
-import org.syncope.core.util.JexlUtil;
-import org.syncope.types.SyncopeClientExceptionType;
+import org.apache.syncope.client.to.DerivedSchemaTO;
+import org.apache.syncope.client.validation.SyncopeClientCompositeErrorException;
+import org.apache.syncope.client.validation.SyncopeClientException;
+import org.apache.syncope.core.persistence.beans.AbstractDerSchema;
+import org.apache.syncope.core.persistence.beans.AbstractSchema;
+import org.apache.syncope.core.util.JexlUtil;
+import org.apache.syncope.types.SyncopeClientExceptionType;
 
 @Component
 public class DerivedSchemaDataBinder {

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/NotificationDataBinder.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/NotificationDataBinder.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/NotificationDataBinder.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/NotificationDataBinder.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/NotificationDataBinder.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/NotificationDataBinder.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/NotificationDataBinder.java Wed Apr 18 15:52:29 2012
@@ -16,12 +16,12 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.data;
+package org.apache.syncope.core.rest.data;
 
 import org.springframework.beans.BeanUtils;
 import org.springframework.stereotype.Component;
-import org.syncope.client.to.NotificationTO;
-import org.syncope.core.persistence.beans.Notification;
+import org.apache.syncope.client.to.NotificationTO;
+import org.apache.syncope.core.persistence.beans.Notification;
 
 @Component
 public class NotificationDataBinder {

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/PolicyDataBinder.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/PolicyDataBinder.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/PolicyDataBinder.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/PolicyDataBinder.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/PolicyDataBinder.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/PolicyDataBinder.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/PolicyDataBinder.java Wed Apr 18 15:52:29 2012
@@ -16,20 +16,20 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.data;
+package org.apache.syncope.core.rest.data;
 
 import org.springframework.stereotype.Component;
-import org.syncope.client.to.AccountPolicyTO;
-import org.syncope.client.to.PasswordPolicyTO;
-import org.syncope.client.to.PolicyTO;
-import org.syncope.client.to.SyncPolicyTO;
-import org.syncope.core.persistence.beans.AccountPolicy;
-import org.syncope.core.persistence.beans.PasswordPolicy;
-import org.syncope.core.persistence.beans.Policy;
-import org.syncope.core.persistence.beans.SyncPolicy;
-import org.syncope.types.AccountPolicySpec;
-import org.syncope.types.PasswordPolicySpec;
-import org.syncope.types.SyncPolicySpec;
+import org.apache.syncope.client.to.AccountPolicyTO;
+import org.apache.syncope.client.to.PasswordPolicyTO;
+import org.apache.syncope.client.to.PolicyTO;
+import org.apache.syncope.client.to.SyncPolicyTO;
+import org.apache.syncope.core.persistence.beans.AccountPolicy;
+import org.apache.syncope.core.persistence.beans.PasswordPolicy;
+import org.apache.syncope.core.persistence.beans.Policy;
+import org.apache.syncope.core.persistence.beans.SyncPolicy;
+import org.apache.syncope.types.AccountPolicySpec;
+import org.apache.syncope.types.PasswordPolicySpec;
+import org.apache.syncope.types.SyncPolicySpec;
 
 @Component
 public class PolicyDataBinder {

Copied: incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ReportDataBinder.java (from r1327523, incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/ReportDataBinder.java)
URL: http://svn.apache.org/viewvc/incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ReportDataBinder.java?p2=incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ReportDataBinder.java&p1=incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/ReportDataBinder.java&r1=1327523&r2=1327551&rev=1327551&view=diff
==============================================================================
--- incubator/syncope/trunk/core/src/main/java/org/syncope/core/rest/data/ReportDataBinder.java (original)
+++ incubator/syncope/trunk/core/src/main/java/org/apache/syncope/core/rest/data/ReportDataBinder.java Wed Apr 18 15:52:29 2012
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.syncope.core.rest.data;
+package org.apache.syncope.core.rest.data;
 
 import java.util.HashSet;
 import java.util.Set;
@@ -30,16 +30,16 @@ import org.springframework.beans.factory
 import org.springframework.scheduling.quartz.SchedulerFactoryBean;
 import org.springframework.stereotype.Component;
 import org.springframework.util.ClassUtils;
-import org.syncope.client.report.ReportletConf;
-import org.syncope.client.to.ReportExecTO;
-import org.syncope.client.to.ReportTO;
-import org.syncope.core.init.ImplementationClassNamesLoader;
-import org.syncope.core.init.JobInstanceLoader;
-import org.syncope.core.persistence.beans.Report;
-import org.syncope.core.persistence.beans.ReportExec;
-import org.syncope.core.persistence.dao.ReportExecDAO;
-import org.syncope.core.report.Reportlet;
-import org.syncope.core.report.ReportletConfClass;
+import org.apache.syncope.client.report.ReportletConf;
+import org.apache.syncope.client.to.ReportExecTO;
+import org.apache.syncope.client.to.ReportTO;
+import org.apache.syncope.core.init.ImplementationClassNamesLoader;
+import org.apache.syncope.core.init.JobInstanceLoader;
+import org.apache.syncope.core.persistence.beans.Report;
+import org.apache.syncope.core.persistence.beans.ReportExec;
+import org.apache.syncope.core.persistence.dao.ReportExecDAO;
+import org.apache.syncope.core.report.Reportlet;
+import org.apache.syncope.core.report.ReportletConfClass;
 
 @Component
 public class ReportDataBinder {