From 54f5d39a1ef284923a3d129fbcc189774c22bf77 Mon Sep 17 00:00:00 2001 From: Brian Chan Date: Fri, 25 Jul 2008 06:24:39 +0000 Subject: [PATCH] LEP-6872 git-svn-id: svn://svn.liferay.com/repos/public/plugins/trunk@18573 05bdf26c-840f-0410-9ced-eb539d925f36 --- build-common-plugin.xml | 1 + build-common-plugins.xml | 22 +++++ .../src/META-INF/data-source-spring.xml | 1 - .../WEB-INF/src/META-INF/misc-spring.xml | 15 +++ .../WEB-INF/src/META-INF/portlet-spring.xml | 92 ++++++++++++++++--- .../service/InterestGroupLocalService.java | 6 ++ .../InterestGroupLocalServiceUtil.java | 14 +++ .../iweb/service/PostEntryLocalService.java | 5 + .../service/PostEntryLocalServiceUtil.java | 14 +++ .../service/SemanticsElementLocalService.java | 6 ++ .../SemanticsElementLocalServiceUtil.java | 14 +++ .../service/SemanticsFileLocalService.java | 6 ++ .../SemanticsFileLocalServiceUtil.java | 14 +++ .../base/CallBackLocalServiceBaseImpl.java | 5 +- .../CrossContainerLocalServiceBaseImpl.java | 6 +- .../base/IWebLocalServiceBaseImpl.java | 7 +- .../InterestGroupLocalServiceBaseImpl.java | 14 ++- .../base/PostEntryLocalServiceBaseImpl.java | 14 ++- .../SemanticsElementLocalServiceBaseImpl.java | 14 ++- .../SemanticsFileLocalServiceBaseImpl.java | 14 ++- .../InterestGroupPersistenceImpl.java | 5 +- .../persistence/PostEntryPersistenceImpl.java | 5 +- .../SemanticsElementPersistenceImpl.java | 5 +- .../SemanticsFilePersistenceImpl.java | 5 +- .../docroot/WEB-INF/src/service.properties | 4 +- webs/iweb-web/docroot/WEB-INF/web.xml | 2 +- .../src/META-INF/data-source-spring.xml | 1 - .../WEB-INF/src/META-INF/misc-spring.xml | 15 +++ .../WEB-INF/src/META-INF/portlet-spring.xml | 40 ++++++++ .../liferay/ruon/model/PresenceStatus.java | 19 +--- .../ruon/model/PresenceStatusModel.java | 19 +--- .../ruon/model/PresenceStatusSoap.java | 19 +--- .../com/liferay/ruon/model/PresenceUser.java | 19 +--- .../liferay/ruon/model/PresenceUserModel.java | 19 +--- .../liferay/ruon/model/PresenceUserSoap.java | 19 +--- .../model/impl/PresenceStatusModelImpl.java | 19 +--- .../model/impl/PresenceUserModelImpl.java | 19 +--- .../service/CommunicationLocalService.java | 19 +--- .../CommunicationLocalServiceFactory.java | 19 +--- .../CommunicationLocalServiceUtil.java | 19 +--- .../ruon/service/PresenceLocalService.java | 19 +--- .../service/PresenceLocalServiceFactory.java | 19 +--- .../service/PresenceLocalServiceUtil.java | 19 +--- .../service/PresenceStatusLocalService.java | 19 +--- .../PresenceStatusLocalServiceFactory.java | 19 +--- .../PresenceStatusLocalServiceUtil.java | 19 +--- .../service/PresenceUserLocalService.java | 19 +--- .../PresenceUserLocalServiceFactory.java | 19 +--- .../service/PresenceUserLocalServiceUtil.java | 19 +--- .../CommunicationLocalServiceBaseImpl.java | 19 +--- .../base/PresenceLocalServiceBaseImpl.java | 19 +--- .../PresenceStatusLocalServiceBaseImpl.java | 19 +--- .../PresenceUserLocalServiceBaseImpl.java | 19 +--- .../PresenceStatusPersistence.java | 19 +--- .../PresenceStatusPersistenceImpl.java | 19 +--- .../persistence/PresenceStatusUtil.java | 19 +--- .../persistence/PresenceUserPersistence.java | 19 +--- .../PresenceUserPersistenceImpl.java | 19 +--- .../service/persistence/PresenceUserUtil.java | 19 +--- .../docroot/WEB-INF/src/service.properties | 4 +- webs/ruon-web/docroot/WEB-INF/web.xml | 12 +-- 61 files changed, 366 insertions(+), 586 deletions(-) create mode 100644 webs/iweb-web/docroot/WEB-INF/src/META-INF/misc-spring.xml create mode 100644 webs/ruon-web/docroot/WEB-INF/src/META-INF/misc-spring.xml diff --git a/build-common-plugin.xml b/build-common-plugin.xml index 13b99b0f59e..f8606354e86 100644 --- a/build-common-plugin.xml +++ b/build-common-plugin.xml @@ -342,6 +342,7 @@ + diff --git a/build-common-plugins.xml b/build-common-plugins.xml index d248bfc5555..5d2edb40d58 100644 --- a/build-common-plugins.xml +++ b/build-common-plugins.xml @@ -43,6 +43,28 @@ + + + + + + + + + + + + + + + + + + + diff --git a/webs/iweb-web/docroot/WEB-INF/src/META-INF/data-source-spring.xml b/webs/iweb-web/docroot/WEB-INF/src/META-INF/data-source-spring.xml index 73367685781..d0105fa96bc 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/META-INF/data-source-spring.xml +++ b/webs/iweb-web/docroot/WEB-INF/src/META-INF/data-source-spring.xml @@ -2,7 +2,6 @@ - diff --git a/webs/iweb-web/docroot/WEB-INF/src/META-INF/misc-spring.xml b/webs/iweb-web/docroot/WEB-INF/src/META-INF/misc-spring.xml new file mode 100644 index 00000000000..70c36c9d1a5 --- /dev/null +++ b/webs/iweb-web/docroot/WEB-INF/src/META-INF/misc-spring.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + true + + + \ No newline at end of file diff --git a/webs/iweb-web/docroot/WEB-INF/src/META-INF/portlet-spring.xml b/webs/iweb-web/docroot/WEB-INF/src/META-INF/portlet-spring.xml index 76497292aa7..5d8661cbd5a 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/META-INF/portlet-spring.xml +++ b/webs/iweb-web/docroot/WEB-INF/src/META-INF/portlet-spring.xml @@ -2,7 +2,7 @@ - + @@ -22,12 +22,22 @@ + + + + velocityServiceInterceptor + + + + + + - + @@ -47,12 +57,22 @@ + + + + velocityServiceInterceptor + + + + + + - + @@ -72,12 +92,22 @@ + + + + velocityServiceInterceptor + + + + + + - + @@ -106,7 +136,7 @@ - + @@ -126,12 +156,22 @@ + + + + velocityServiceInterceptor + + + + + + - + @@ -151,12 +191,22 @@ + + + + velocityServiceInterceptor + + + + + + - + @@ -185,7 +235,7 @@ - + @@ -205,12 +255,22 @@ + + + + velocityServiceInterceptor + + + + + + - + @@ -239,7 +299,7 @@ - + @@ -259,12 +319,22 @@ + + + + velocityServiceInterceptor + + + + + + - + diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/InterestGroupLocalService.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/InterestGroupLocalService.java index 6ed3bb58cf9..b68443f769a 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/InterestGroupLocalService.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/InterestGroupLocalService.java @@ -53,6 +53,12 @@ public com.liferay.iweb.model.InterestGroup getInterestGroup(long cid) throws com.liferay.portal.SystemException, com.liferay.portal.PortalException; + public java.util.List getInterestGroups( + int start, int end) throws com.liferay.portal.SystemException; + + public int getInterestGroupsCount() + throws com.liferay.portal.SystemException; + public com.liferay.iweb.model.InterestGroup updateInterestGroup( com.liferay.iweb.model.InterestGroup interestGroup) throws com.liferay.portal.SystemException; diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/InterestGroupLocalServiceUtil.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/InterestGroupLocalServiceUtil.java index e73b0631f3d..d83099170ad 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/InterestGroupLocalServiceUtil.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/InterestGroupLocalServiceUtil.java @@ -78,6 +78,20 @@ public static com.liferay.iweb.model.InterestGroup getInterestGroup( return interestGroupLocalService.getInterestGroup(cid); } + public static java.util.List getInterestGroups( + int start, int end) throws com.liferay.portal.SystemException { + InterestGroupLocalService interestGroupLocalService = InterestGroupLocalServiceFactory.getService(); + + return interestGroupLocalService.getInterestGroups(start, end); + } + + public static int getInterestGroupsCount() + throws com.liferay.portal.SystemException { + InterestGroupLocalService interestGroupLocalService = InterestGroupLocalServiceFactory.getService(); + + return interestGroupLocalService.getInterestGroupsCount(); + } + public static com.liferay.iweb.model.InterestGroup updateInterestGroup( com.liferay.iweb.model.InterestGroup interestGroup) throws com.liferay.portal.SystemException { diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/PostEntryLocalService.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/PostEntryLocalService.java index da9856211da..227fed029d2 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/PostEntryLocalService.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/PostEntryLocalService.java @@ -52,6 +52,11 @@ public com.liferay.iweb.model.PostEntry getPostEntry(long uid) throws com.liferay.portal.SystemException, com.liferay.portal.PortalException; + public java.util.List getPostEntries( + int start, int end) throws com.liferay.portal.SystemException; + + public int getPostEntriesCount() throws com.liferay.portal.SystemException; + public com.liferay.iweb.model.PostEntry updatePostEntry( com.liferay.iweb.model.PostEntry postEntry) throws com.liferay.portal.SystemException; diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/PostEntryLocalServiceUtil.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/PostEntryLocalServiceUtil.java index 149ce47de10..af408ce1d3d 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/PostEntryLocalServiceUtil.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/PostEntryLocalServiceUtil.java @@ -77,6 +77,20 @@ public static com.liferay.iweb.model.PostEntry getPostEntry(long uid) return postEntryLocalService.getPostEntry(uid); } + public static java.util.List getPostEntries( + int start, int end) throws com.liferay.portal.SystemException { + PostEntryLocalService postEntryLocalService = PostEntryLocalServiceFactory.getService(); + + return postEntryLocalService.getPostEntries(start, end); + } + + public static int getPostEntriesCount() + throws com.liferay.portal.SystemException { + PostEntryLocalService postEntryLocalService = PostEntryLocalServiceFactory.getService(); + + return postEntryLocalService.getPostEntriesCount(); + } + public static com.liferay.iweb.model.PostEntry updatePostEntry( com.liferay.iweb.model.PostEntry postEntry) throws com.liferay.portal.SystemException { diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsElementLocalService.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsElementLocalService.java index ae71c95b250..9aad5efe69b 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsElementLocalService.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsElementLocalService.java @@ -54,6 +54,12 @@ public com.liferay.iweb.model.SemanticsElement getSemanticsElement( throws com.liferay.portal.SystemException, com.liferay.portal.PortalException; + public java.util.List getSemanticsElements( + int start, int end) throws com.liferay.portal.SystemException; + + public int getSemanticsElementsCount() + throws com.liferay.portal.SystemException; + public com.liferay.iweb.model.SemanticsElement updateSemanticsElement( com.liferay.iweb.model.SemanticsElement semanticsElement) throws com.liferay.portal.SystemException; diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsElementLocalServiceUtil.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsElementLocalServiceUtil.java index f6e585ea6ec..60d26f9450f 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsElementLocalServiceUtil.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsElementLocalServiceUtil.java @@ -79,6 +79,20 @@ public static com.liferay.iweb.model.SemanticsElement getSemanticsElement( return semanticsElementLocalService.getSemanticsElement(elementURI); } + public static java.util.List getSemanticsElements( + int start, int end) throws com.liferay.portal.SystemException { + SemanticsElementLocalService semanticsElementLocalService = SemanticsElementLocalServiceFactory.getService(); + + return semanticsElementLocalService.getSemanticsElements(start, end); + } + + public static int getSemanticsElementsCount() + throws com.liferay.portal.SystemException { + SemanticsElementLocalService semanticsElementLocalService = SemanticsElementLocalServiceFactory.getService(); + + return semanticsElementLocalService.getSemanticsElementsCount(); + } + public static com.liferay.iweb.model.SemanticsElement updateSemanticsElement( com.liferay.iweb.model.SemanticsElement semanticsElement) throws com.liferay.portal.SystemException { diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsFileLocalService.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsFileLocalService.java index 23116ae14fc..63b45abb0cc 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsFileLocalService.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsFileLocalService.java @@ -54,6 +54,12 @@ public com.liferay.iweb.model.SemanticsFile getSemanticsFile( throws com.liferay.portal.SystemException, com.liferay.portal.PortalException; + public java.util.List getSemanticsFiles( + int start, int end) throws com.liferay.portal.SystemException; + + public int getSemanticsFilesCount() + throws com.liferay.portal.SystemException; + public com.liferay.iweb.model.SemanticsFile updateSemanticsFile( com.liferay.iweb.model.SemanticsFile semanticsFile) throws com.liferay.portal.SystemException; diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsFileLocalServiceUtil.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsFileLocalServiceUtil.java index 473fecd2207..9e1f6138320 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsFileLocalServiceUtil.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/SemanticsFileLocalServiceUtil.java @@ -78,6 +78,20 @@ public static com.liferay.iweb.model.SemanticsFile getSemanticsFile( return semanticsFileLocalService.getSemanticsFile(semanticsURI); } + public static java.util.List getSemanticsFiles( + int start, int end) throws com.liferay.portal.SystemException { + SemanticsFileLocalService semanticsFileLocalService = SemanticsFileLocalServiceFactory.getService(); + + return semanticsFileLocalService.getSemanticsFiles(start, end); + } + + public static int getSemanticsFilesCount() + throws com.liferay.portal.SystemException { + SemanticsFileLocalService semanticsFileLocalService = SemanticsFileLocalServiceFactory.getService(); + + return semanticsFileLocalService.getSemanticsFilesCount(); + } + public static com.liferay.iweb.model.SemanticsFile updateSemanticsFile( com.liferay.iweb.model.SemanticsFile semanticsFile) throws com.liferay.portal.SystemException { diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/CallBackLocalServiceBaseImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/CallBackLocalServiceBaseImpl.java index d4b981ad110..1b52df32334 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/CallBackLocalServiceBaseImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/CallBackLocalServiceBaseImpl.java @@ -44,6 +44,7 @@ import com.liferay.iweb.service.persistence.SemanticsFilePersistence; import com.liferay.iweb.service.persistence.SemanticsFileUtil; +import com.liferay.portal.kernel.bean.InitializingBean; import com.liferay.portal.service.GroupLocalService; import com.liferay.portal.service.GroupLocalServiceFactory; import com.liferay.portal.service.GroupService; @@ -83,7 +84,7 @@ * */ public abstract class CallBackLocalServiceBaseImpl - implements CallBackLocalService { + implements CallBackLocalService, InitializingBean { public CrossContainerLocalService getCrossContainerLocalService() { return crossContainerLocalService; } @@ -297,7 +298,7 @@ public void setUserPersistence(UserPersistence userPersistence) { this.userPersistence = userPersistence; } - protected void init() { + public void afterPropertiesSet() { if (crossContainerLocalService == null) { crossContainerLocalService = CrossContainerLocalServiceFactory.getImpl(); } diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/CrossContainerLocalServiceBaseImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/CrossContainerLocalServiceBaseImpl.java index c1b70d2093c..2a7e6f991fb 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/CrossContainerLocalServiceBaseImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/CrossContainerLocalServiceBaseImpl.java @@ -44,6 +44,8 @@ import com.liferay.iweb.service.persistence.SemanticsFilePersistence; import com.liferay.iweb.service.persistence.SemanticsFileUtil; +import com.liferay.portal.kernel.bean.InitializingBean; + /** * View Source * @@ -51,7 +53,7 @@ * */ public abstract class CrossContainerLocalServiceBaseImpl - implements CrossContainerLocalService { + implements CrossContainerLocalService, InitializingBean { public CallBackLocalService getCallBackLocalService() { return callBackLocalService; } @@ -141,7 +143,7 @@ public void setSemanticsFilePersistence( this.semanticsFilePersistence = semanticsFilePersistence; } - protected void init() { + public void afterPropertiesSet() { if (callBackLocalService == null) { callBackLocalService = CallBackLocalServiceFactory.getImpl(); } diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/IWebLocalServiceBaseImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/IWebLocalServiceBaseImpl.java index 54d330bedd8..24cc3f1af32 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/IWebLocalServiceBaseImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/IWebLocalServiceBaseImpl.java @@ -44,13 +44,16 @@ import com.liferay.iweb.service.persistence.SemanticsFilePersistence; import com.liferay.iweb.service.persistence.SemanticsFileUtil; +import com.liferay.portal.kernel.bean.InitializingBean; + /** * View Source * * @author Brian Wing Shun Chan * */ -public abstract class IWebLocalServiceBaseImpl implements IWebLocalService { +public abstract class IWebLocalServiceBaseImpl implements IWebLocalService, + InitializingBean { public CallBackLocalService getCallBackLocalService() { return callBackLocalService; } @@ -141,7 +144,7 @@ public void setSemanticsFilePersistence( this.semanticsFilePersistence = semanticsFilePersistence; } - protected void init() { + public void afterPropertiesSet() { if (callBackLocalService == null) { callBackLocalService = CallBackLocalServiceFactory.getImpl(); } diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/InterestGroupLocalServiceBaseImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/InterestGroupLocalServiceBaseImpl.java index b6fdd82e697..94a46229a50 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/InterestGroupLocalServiceBaseImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/InterestGroupLocalServiceBaseImpl.java @@ -47,6 +47,7 @@ import com.liferay.portal.PortalException; import com.liferay.portal.SystemException; +import com.liferay.portal.kernel.bean.InitializingBean; import com.liferay.portal.kernel.dao.orm.DynamicQuery; import java.util.List; @@ -58,7 +59,7 @@ * */ public abstract class InterestGroupLocalServiceBaseImpl - implements InterestGroupLocalService { + implements InterestGroupLocalService, InitializingBean { public InterestGroup addInterestGroup(InterestGroup interestGroup) throws SystemException { interestGroup.setNew(true); @@ -92,6 +93,15 @@ public InterestGroup getInterestGroup(long cid) return interestGroupPersistence.findByPrimaryKey(cid); } + public List getInterestGroups(int start, int end) + throws SystemException { + return interestGroupPersistence.findAll(start, end); + } + + public int getInterestGroupsCount() throws SystemException { + return interestGroupPersistence.countAll(); + } + public InterestGroup updateInterestGroup(InterestGroup interestGroup) throws SystemException { interestGroup.setNew(false); @@ -188,7 +198,7 @@ public void setSemanticsFilePersistence( this.semanticsFilePersistence = semanticsFilePersistence; } - protected void init() { + public void afterPropertiesSet() { if (callBackLocalService == null) { callBackLocalService = CallBackLocalServiceFactory.getImpl(); } diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/PostEntryLocalServiceBaseImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/PostEntryLocalServiceBaseImpl.java index 94f88dbaddb..7d06fb6ac66 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/PostEntryLocalServiceBaseImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/PostEntryLocalServiceBaseImpl.java @@ -52,6 +52,7 @@ import com.liferay.portal.PortalException; import com.liferay.portal.SystemException; +import com.liferay.portal.kernel.bean.InitializingBean; import com.liferay.portal.kernel.dao.orm.DynamicQuery; import java.util.List; @@ -63,7 +64,7 @@ * */ public abstract class PostEntryLocalServiceBaseImpl - implements PostEntryLocalService { + implements PostEntryLocalService, InitializingBean { public PostEntry addPostEntry(PostEntry postEntry) throws SystemException { postEntry.setNew(true); @@ -96,6 +97,15 @@ public PostEntry getPostEntry(long uid) return postEntryPersistence.findByPrimaryKey(uid); } + public List getPostEntries(int start, int end) + throws SystemException { + return postEntryPersistence.findAll(start, end); + } + + public int getPostEntriesCount() throws SystemException { + return postEntryPersistence.countAll(); + } + public PostEntry updatePostEntry(PostEntry postEntry) throws SystemException { postEntry.setNew(false); @@ -208,7 +218,7 @@ public void setCounterService(CounterService counterService) { this.counterService = counterService; } - protected void init() { + public void afterPropertiesSet() { if (callBackLocalService == null) { callBackLocalService = CallBackLocalServiceFactory.getImpl(); } diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/SemanticsElementLocalServiceBaseImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/SemanticsElementLocalServiceBaseImpl.java index 612d5c7a916..1d29afcd00b 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/SemanticsElementLocalServiceBaseImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/SemanticsElementLocalServiceBaseImpl.java @@ -47,6 +47,7 @@ import com.liferay.portal.PortalException; import com.liferay.portal.SystemException; +import com.liferay.portal.kernel.bean.InitializingBean; import com.liferay.portal.kernel.dao.orm.DynamicQuery; import java.util.List; @@ -58,7 +59,7 @@ * */ public abstract class SemanticsElementLocalServiceBaseImpl - implements SemanticsElementLocalService { + implements SemanticsElementLocalService, InitializingBean { public SemanticsElement addSemanticsElement( SemanticsElement semanticsElement) throws SystemException { semanticsElement.setNew(true); @@ -92,6 +93,15 @@ public SemanticsElement getSemanticsElement(String elementURI) return semanticsElementPersistence.findByPrimaryKey(elementURI); } + public List getSemanticsElements(int start, int end) + throws SystemException { + return semanticsElementPersistence.findAll(start, end); + } + + public int getSemanticsElementsCount() throws SystemException { + return semanticsElementPersistence.countAll(); + } + public SemanticsElement updateSemanticsElement( SemanticsElement semanticsElement) throws SystemException { semanticsElement.setNew(false); @@ -188,7 +198,7 @@ public void setSemanticsFilePersistence( this.semanticsFilePersistence = semanticsFilePersistence; } - protected void init() { + public void afterPropertiesSet() { if (callBackLocalService == null) { callBackLocalService = CallBackLocalServiceFactory.getImpl(); } diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/SemanticsFileLocalServiceBaseImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/SemanticsFileLocalServiceBaseImpl.java index 3d7c37cc677..73177e61991 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/SemanticsFileLocalServiceBaseImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/base/SemanticsFileLocalServiceBaseImpl.java @@ -47,6 +47,7 @@ import com.liferay.portal.PortalException; import com.liferay.portal.SystemException; +import com.liferay.portal.kernel.bean.InitializingBean; import com.liferay.portal.kernel.dao.orm.DynamicQuery; import java.util.List; @@ -58,7 +59,7 @@ * */ public abstract class SemanticsFileLocalServiceBaseImpl - implements SemanticsFileLocalService { + implements SemanticsFileLocalService, InitializingBean { public SemanticsFile addSemanticsFile(SemanticsFile semanticsFile) throws SystemException { semanticsFile.setNew(true); @@ -92,6 +93,15 @@ public SemanticsFile getSemanticsFile(String semanticsURI) return semanticsFilePersistence.findByPrimaryKey(semanticsURI); } + public List getSemanticsFiles(int start, int end) + throws SystemException { + return semanticsFilePersistence.findAll(start, end); + } + + public int getSemanticsFilesCount() throws SystemException { + return semanticsFilePersistence.countAll(); + } + public SemanticsFile updateSemanticsFile(SemanticsFile semanticsFile) throws SystemException { semanticsFile.setNew(false); @@ -188,7 +198,7 @@ public void setSemanticsFilePersistence( this.semanticsFilePersistence = semanticsFilePersistence; } - protected void init() { + public void afterPropertiesSet() { if (callBackLocalService == null) { callBackLocalService = CallBackLocalServiceFactory.getImpl(); } diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/InterestGroupPersistenceImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/InterestGroupPersistenceImpl.java index 33ae5551d5f..7d1d65fe5c5 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/InterestGroupPersistenceImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/InterestGroupPersistenceImpl.java @@ -28,6 +28,7 @@ import com.liferay.iweb.model.impl.InterestGroupModelImpl; import com.liferay.portal.SystemException; +import com.liferay.portal.kernel.bean.InitializingBean; import com.liferay.portal.kernel.dao.jdbc.MappingSqlQuery; import com.liferay.portal.kernel.dao.jdbc.MappingSqlQueryFactoryUtil; import com.liferay.portal.kernel.dao.jdbc.RowMapper; @@ -65,7 +66,7 @@ * */ public class InterestGroupPersistenceImpl extends BasePersistenceImpl - implements InterestGroupPersistence { + implements InterestGroupPersistence, InitializingBean { public InterestGroup create(long cid) { InterestGroup interestGroup = new InterestGroupImpl(); @@ -810,7 +811,7 @@ public void unregisterListener(ModelListener listener) { _listeners = listeners.toArray(new ModelListener[listeners.size()]); } - protected void init() { + public void afterPropertiesSet() { String[] listenerClassNames = StringUtil.split(GetterUtil.getString( com.liferay.util.service.ServiceProps.get( "value.object.listener.com.liferay.iweb.model.InterestGroup"))); diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/PostEntryPersistenceImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/PostEntryPersistenceImpl.java index 3f6d880459b..ed4c6fe932a 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/PostEntryPersistenceImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/PostEntryPersistenceImpl.java @@ -28,6 +28,7 @@ import com.liferay.iweb.model.impl.PostEntryModelImpl; import com.liferay.portal.SystemException; +import com.liferay.portal.kernel.bean.InitializingBean; import com.liferay.portal.kernel.dao.jdbc.MappingSqlQuery; import com.liferay.portal.kernel.dao.jdbc.MappingSqlQueryFactoryUtil; import com.liferay.portal.kernel.dao.jdbc.RowMapper; @@ -66,7 +67,7 @@ * */ public class PostEntryPersistenceImpl extends BasePersistenceImpl - implements PostEntryPersistence { + implements PostEntryPersistence, InitializingBean { public PostEntry create(long uid) { PostEntry postEntry = new PostEntryImpl(); @@ -1002,7 +1003,7 @@ public void unregisterListener(ModelListener listener) { _listeners = listeners.toArray(new ModelListener[listeners.size()]); } - protected void init() { + public void afterPropertiesSet() { String[] listenerClassNames = StringUtil.split(GetterUtil.getString( com.liferay.util.service.ServiceProps.get( "value.object.listener.com.liferay.iweb.model.PostEntry"))); diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/SemanticsElementPersistenceImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/SemanticsElementPersistenceImpl.java index 798e3d272df..916fd44b6d6 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/SemanticsElementPersistenceImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/SemanticsElementPersistenceImpl.java @@ -28,6 +28,7 @@ import com.liferay.iweb.model.impl.SemanticsElementModelImpl; import com.liferay.portal.SystemException; +import com.liferay.portal.kernel.bean.InitializingBean; import com.liferay.portal.kernel.dao.jdbc.MappingSqlQuery; import com.liferay.portal.kernel.dao.jdbc.MappingSqlQueryFactoryUtil; import com.liferay.portal.kernel.dao.jdbc.RowMapper; @@ -65,7 +66,7 @@ * */ public class SemanticsElementPersistenceImpl extends BasePersistenceImpl - implements SemanticsElementPersistence { + implements SemanticsElementPersistence, InitializingBean { public SemanticsElement create(String elementURI) { SemanticsElement semanticsElement = new SemanticsElementImpl(); @@ -811,7 +812,7 @@ public void unregisterListener(ModelListener listener) { _listeners = listeners.toArray(new ModelListener[listeners.size()]); } - protected void init() { + public void afterPropertiesSet() { String[] listenerClassNames = StringUtil.split(GetterUtil.getString( com.liferay.util.service.ServiceProps.get( "value.object.listener.com.liferay.iweb.model.SemanticsElement"))); diff --git a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/SemanticsFilePersistenceImpl.java b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/SemanticsFilePersistenceImpl.java index 56bcf39fc2e..08ed9cf7657 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/SemanticsFilePersistenceImpl.java +++ b/webs/iweb-web/docroot/WEB-INF/src/com/liferay/iweb/service/persistence/SemanticsFilePersistenceImpl.java @@ -28,6 +28,7 @@ import com.liferay.iweb.model.impl.SemanticsFileModelImpl; import com.liferay.portal.SystemException; +import com.liferay.portal.kernel.bean.InitializingBean; import com.liferay.portal.kernel.dao.jdbc.MappingSqlQuery; import com.liferay.portal.kernel.dao.jdbc.MappingSqlQueryFactoryUtil; import com.liferay.portal.kernel.dao.jdbc.RowMapper; @@ -66,7 +67,7 @@ * */ public class SemanticsFilePersistenceImpl extends BasePersistenceImpl - implements SemanticsFilePersistence { + implements SemanticsFilePersistence, InitializingBean { public SemanticsFile create(String semanticsURI) { SemanticsFile semanticsFile = new SemanticsFileImpl(); @@ -1116,7 +1117,7 @@ public void unregisterListener(ModelListener listener) { _listeners = listeners.toArray(new ModelListener[listeners.size()]); } - protected void init() { + public void afterPropertiesSet() { String[] listenerClassNames = StringUtil.split(GetterUtil.getString( com.liferay.util.service.ServiceProps.get( "value.object.listener.com.liferay.iweb.model.SemanticsFile"))); diff --git a/webs/iweb-web/docroot/WEB-INF/src/service.properties b/webs/iweb-web/docroot/WEB-INF/src/service.properties index cfe814bf743..8e9cb73dc2f 100644 --- a/webs/iweb-web/docroot/WEB-INF/src/service.properties +++ b/webs/iweb-web/docroot/WEB-INF/src/service.properties @@ -13,5 +13,5 @@ ## build.namespace=IWEB - build.number=10 - build.date=1216828290484 \ No newline at end of file + build.number=11 + build.date=1216966695858 \ No newline at end of file diff --git a/webs/iweb-web/docroot/WEB-INF/web.xml b/webs/iweb-web/docroot/WEB-INF/web.xml index f9f366d14e8..a1c5a25a87b 100644 --- a/webs/iweb-web/docroot/WEB-INF/web.xml +++ b/webs/iweb-web/docroot/WEB-INF/web.xml @@ -8,7 +8,7 @@ contextConfigLocation - WEB-INF/classes/META-INF/data-source-spring.xml,WEB-INF/classes/META-INF/portlet-spring.xml,WEB-INF/classes/META-INF/ext-spring.xml + WEB-INF/classes/META-INF/data-source-spring.xml,WEB-INF/classes/META-INF/misc-spring.xml,WEB-INF/classes/META-INF/portlet-spring.xml,WEB-INF/classes/META-INF/ext-spring.xml com.liferay.portal.kernel.spring.context.PortletContextLoaderListener diff --git a/webs/ruon-web/docroot/WEB-INF/src/META-INF/data-source-spring.xml b/webs/ruon-web/docroot/WEB-INF/src/META-INF/data-source-spring.xml index 73367685781..d0105fa96bc 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/META-INF/data-source-spring.xml +++ b/webs/ruon-web/docroot/WEB-INF/src/META-INF/data-source-spring.xml @@ -2,7 +2,6 @@ - diff --git a/webs/ruon-web/docroot/WEB-INF/src/META-INF/misc-spring.xml b/webs/ruon-web/docroot/WEB-INF/src/META-INF/misc-spring.xml new file mode 100644 index 00000000000..70c36c9d1a5 --- /dev/null +++ b/webs/ruon-web/docroot/WEB-INF/src/META-INF/misc-spring.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + true + + + \ No newline at end of file diff --git a/webs/ruon-web/docroot/WEB-INF/src/META-INF/portlet-spring.xml b/webs/ruon-web/docroot/WEB-INF/src/META-INF/portlet-spring.xml index 558feddedea..8168dec1388 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/META-INF/portlet-spring.xml +++ b/webs/ruon-web/docroot/WEB-INF/src/META-INF/portlet-spring.xml @@ -22,6 +22,16 @@ + + + + velocityServiceInterceptor + + + + + + @@ -47,6 +57,16 @@ + + + + velocityServiceInterceptor + + + + + + @@ -72,6 +92,16 @@ + + + + velocityServiceInterceptor + + + + + + @@ -126,6 +156,16 @@ + + + + velocityServiceInterceptor + + + + + + diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatus.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatus.java index 90ea8d15e90..b968eb8ba60 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatus.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatus.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.model; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatusModel.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatusModel.java index f5d1a6bfd81..d5dea35b872 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatusModel.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatusModel.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.model; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatusSoap.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatusSoap.java index 333ebd14a03..6bbc63fab16 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatusSoap.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceStatusSoap.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.model; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUser.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUser.java index f8ce1695efe..1ea1914bb82 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUser.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUser.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.model; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUserModel.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUserModel.java index bcac89ca8bb..800639577ba 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUserModel.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUserModel.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.model; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUserSoap.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUserSoap.java index f919dcdcbeb..d3a0d551c38 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUserSoap.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/PresenceUserSoap.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.model; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/impl/PresenceStatusModelImpl.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/impl/PresenceStatusModelImpl.java index 03989319ce3..0a88f00ce26 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/impl/PresenceStatusModelImpl.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/impl/PresenceStatusModelImpl.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.model.impl; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/impl/PresenceUserModelImpl.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/impl/PresenceUserModelImpl.java index c9c36935de6..fa1c2e30565 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/impl/PresenceUserModelImpl.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/model/impl/PresenceUserModelImpl.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.model.impl; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalService.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalService.java index 69bf46d3d3b..3ef95ca9764 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalService.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalService.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalServiceFactory.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalServiceFactory.java index e343fcde8d7..048e3d67418 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalServiceFactory.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalServiceFactory.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalServiceUtil.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalServiceUtil.java index 01be16fdb90..697c55b6392 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalServiceUtil.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/CommunicationLocalServiceUtil.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalService.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalService.java index bf7d14bc835..bc327ccedfa 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalService.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalService.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalServiceFactory.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalServiceFactory.java index ab3154a77a0..f6622c7674d 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalServiceFactory.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalServiceFactory.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalServiceUtil.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalServiceUtil.java index b6c02352ab9..91119d8aede 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalServiceUtil.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceLocalServiceUtil.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalService.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalService.java index 8a2b4c0f139..eee6e99ef31 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalService.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalService.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalServiceFactory.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalServiceFactory.java index af750f0fdd5..d0190b560f4 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalServiceFactory.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalServiceFactory.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalServiceUtil.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalServiceUtil.java index 6e025314fa3..d5bfe9d6ff4 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalServiceUtil.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceStatusLocalServiceUtil.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalService.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalService.java index 71fa5a67b14..3f767af0db0 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalService.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalService.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalServiceFactory.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalServiceFactory.java index 3a40564f6e4..0aea120e665 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalServiceFactory.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalServiceFactory.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalServiceUtil.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalServiceUtil.java index 9f29ec0173b..59430e83828 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalServiceUtil.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/PresenceUserLocalServiceUtil.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/CommunicationLocalServiceBaseImpl.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/CommunicationLocalServiceBaseImpl.java index 03a889c6b9f..7345a585732 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/CommunicationLocalServiceBaseImpl.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/CommunicationLocalServiceBaseImpl.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service.base; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceLocalServiceBaseImpl.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceLocalServiceBaseImpl.java index 107e7b92a51..f0fcc6a5c8d 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceLocalServiceBaseImpl.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceLocalServiceBaseImpl.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service.base; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceStatusLocalServiceBaseImpl.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceStatusLocalServiceBaseImpl.java index b23e0954894..929f2f8f741 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceStatusLocalServiceBaseImpl.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceStatusLocalServiceBaseImpl.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service.base; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceUserLocalServiceBaseImpl.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceUserLocalServiceBaseImpl.java index c4fafb621ec..c2ecda41396 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceUserLocalServiceBaseImpl.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/base/PresenceUserLocalServiceBaseImpl.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service.base; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusPersistence.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusPersistence.java index c24ebb41c69..245b051f824 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusPersistence.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusPersistence.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service.persistence; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusPersistenceImpl.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusPersistenceImpl.java index d243267651a..15d08275d34 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusPersistenceImpl.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusPersistenceImpl.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service.persistence; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusUtil.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusUtil.java index 039211debe7..059acb32cca 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusUtil.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceStatusUtil.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service.persistence; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserPersistence.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserPersistence.java index edf1c06dcc0..69146780043 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserPersistence.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserPersistence.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service.persistence; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserPersistenceImpl.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserPersistenceImpl.java index bc01542d0f6..8dc9ac6f62e 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserPersistenceImpl.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserPersistenceImpl.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service.persistence; diff --git a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserUtil.java b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserUtil.java index f404377e92f..ee04c487f18 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserUtil.java +++ b/webs/ruon-web/docroot/WEB-INF/src/com/liferay/ruon/service/persistence/PresenceUserUtil.java @@ -18,24 +18,7 @@ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. - - * The contents of this file are subject to the terms of the Common Development - * and Distribution License (the License). You may not use this file except in - * compliance with the License. - * - * You can obtain a copy of the License at http://www.sun.com/cddl/cddl.html and - * legal/CDDLv1.0.txt. See the License for the specific language governing - * permission and limitations under the License. - * - * When distributing Covered Code, include this CDDL Header Notice in each file - * and include the License file at legal/CDDLv1.0.txt. - * - * If applicable, add the following below the CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * - * Copyright 2008 Sun Microsystems Inc. All rights reserved. - **/ + */ package com.liferay.ruon.service.persistence; diff --git a/webs/ruon-web/docroot/WEB-INF/src/service.properties b/webs/ruon-web/docroot/WEB-INF/src/service.properties index a75f99e8e3a..67b8a7d44d5 100644 --- a/webs/ruon-web/docroot/WEB-INF/src/service.properties +++ b/webs/ruon-web/docroot/WEB-INF/src/service.properties @@ -13,5 +13,5 @@ ## build.namespace=Ruon - build.number=23 - build.date=1216896064984 \ No newline at end of file + build.number=24 + build.date=1216966701233 \ No newline at end of file diff --git a/webs/ruon-web/docroot/WEB-INF/web.xml b/webs/ruon-web/docroot/WEB-INF/web.xml index 81f340f3344..a9c2ab80884 100644 --- a/webs/ruon-web/docroot/WEB-INF/web.xml +++ b/webs/ruon-web/docroot/WEB-INF/web.xml @@ -1,9 +1,9 @@