[JBoss Seam] - Re: Remoting problem: object as param not passed
by lcoetzee
Interestingly enough I can make it work when I change my JavaBean into an Entity:
| @Entity //this makes it work !!!!
| @Name("person")
| public class Person implements Serializable{
| ..
|
results in this:
| 15:16:30,024 INFO [STDOUT] Received value: dummyvalue
| 15:16:30,024 INFO [STDOUT] Received from xhtml page pietie petoors
|
and
| Thu Jan 25 2007 14:50:35 GMT+0200 (SAST): Request packet:
| <envelope><header><context></context></header><body><call component="helloAction" method="setPerson" id="0">
| <params><param><str>dummyvalue</str></param><param><ref id="0"/></param></params><refs><ref id="0"><bean type="person">
| <member name="id"><number>25</number></member>
| <member name="name"><str>pietie</str></member>
| <member name="surname"><str>petoors</str></member>
| </bean></ref></refs></call></body></envelope>
Seems there is some problem with normal POJO's (JavaBeans) which are not Entities.
L
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4006339#4006339
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4006339
19 years, 2 months
[JBoss Seam] - Re: (Solved by extending EntityHome?) Object cached when pag
by fabio.ita04
When debugging the error, I noticed that even if EntityHome id was changed (via page params), EntityHome was always getting the last entity returned by getInstance. So, I extended EntityHome and called clearDirty inside getInstance method. The problem looks like to be solved. Is it reazonable?
| @Override
| @Transactional
| public T getInstance() {
| if (instance==null || clearDirty())
| initInstance();
| return instance;
| }
|
Maybe another way to solve the problem is using explicit conversation id (section 6.6 in Seam 1.1.0 reference). This way I can be sure the desired conversation (and thus the desired state) is loaded. But in some cases (when using EntityHome components, so I can't use annotations) I have to declare it via pages.xml:
| <page view-id="/edit.xhtml">
| <param name="id" value="#{userManager.id}" />
| <begin-conversation nested="true" id="somealias#{id}" />
| </page>
|
Is it possible?
Thanx,
Fábio.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4006333#4006333
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4006333
19 years, 2 months
[JBoss Seam] - How to postpone validation?
by toni
Hi,
I'm trying to set the values of an enity bean of which one value has to be chosen/set from a different page. The user gets to the page by clicking on a link whose link text displays the current value. The link is contained inside the same form, which contains the other input fields and the save button to persist the entiy.
The problem I ran into is that all the other values get validated, when the user clicks on the link. The result is that the current page is redisplayed with error messages showing on the invalid input fields.
Instead, I would like the user to be able to fill out the form of which some values are constrained (ie have to be valid). Then the user may click on the link to setup this special value, without his current input being validated and thereby lost, even if it's partly invalid.
After picking the special value from the other page he gets sent back to page from which he came and should see (as mentioned above) all the other values of which some may be invalid.
The page should only be redisplayed, if the user entered invalid input AND clicks on the Save button to persist the entity. Otherwise he should be forwarded to the page to set the special value an the current input should be displayed, after he is done.
I tried to set immediate="true" on the the link, which one has to click to setup this one special value. If I do so, then the user can proceed to the other page, but all the values which the user had entered previously are lost, when the original page is redisplayed.
I haven't figured out how to do this. Is it possible at all?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4006325#4006325
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4006325
19 years, 2 months
[JBoss Portal] - problem when deploying many pages
by PMN
I got the following traces in server.log when deploying a war file. I 'd pasted here the traces starting from the last HQL request to the ERROR "Transaction is not active".
Thanks to looking into it.
anonymous wrote : 2007-01-25 12:32:15,475 DEBUG [org.jboss.portal.core.impl.model.portal.ObjectNode] Creating child of 'Test.Evo.Wiki.Detail' with id 'Test.Evo.Wiki.Detail.UserWindow'
| 2007-01-25 12:32:15,475 DEBUG [org.hibernate.jdbc.AbstractBatcher] about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
| 2007-01-25 12:32:15,475 DEBUG [org.hibernate.jdbc.ConnectionManager] opening JDBC connection
| 2007-01-25 12:32:15,475 DEBUG [org.hibernate.SQL] select nextval ('portal_seq')
| 2007-01-25 12:32:15,475 DEBUG [org.hibernate.id.SequenceGenerator] Sequence identifier generated: 5090
| 2007-01-25 12:32:15,475 DEBUG [org.hibernate.jdbc.AbstractBatcher] about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
| 2007-01-25 12:32:15,475 DEBUG [org.hibernate.jdbc.ConnectionManager] aggressively releasing JDBC connection
| 2007-01-25 12:32:15,475 DEBUG [org.hibernate.jdbc.ConnectionManager] releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
| 2007-01-25 12:32:15,475 DEBUG [org.hibernate.event.def.AbstractSaveEventListener] generated identifier: 5090, using strategy: org.hibernate.id.SequenceGenerator
| 2007-01-25 12:32:15,475 DEBUG [org.hibernate.event.def.AbstractSaveEventListener] generated identifier: 5090, using strategy: org.hibernate.id.ForeignGenerator
| 2007-01-25 12:32:15,475 DEBUG [org.hibernate.event.def.AbstractFlushingEventListener] processing flush-time cascades
| 2007-01-25 12:32:15,490 DEBUG [org.hibernate.event.def.AbstractFlushingEventListener] dirty checking collections
| 2007-01-25 12:32:15,506 WARN [org.jboss.tm.TransactionImpl] Transaction TransactionImpl:XidImpl[FormatId=257, GlobalId=pmn/51, BranchQual=, localId=51] timed out. status=STATUS_ACTIVE
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.CollectionEntry] Collection dirty: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#5087]
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.CollectionEntry] Collection dirty: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#5089]
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#1], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#1] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#1], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#1] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#1], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#1] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#395], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#395] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#395], was: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#395] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#395], was: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#395] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#395], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#395] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#395], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#395] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#2], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#2] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#2], was: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#2] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#2], was: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#2] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#2], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#2] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#2], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#2] (uninitialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4367], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4367] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4367], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4367] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4367], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4367] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#4367], was: [org.jboss.portal.core.impl.model.portal.PortalImpl.modes#4367] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#4367], was: [org.jboss.portal.core.impl.model.portal.PortalImpl.windowStates#4367] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#626], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#626] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4368], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4368] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4368], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4368] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4368], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4368] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#627], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#627] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4369], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4369] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4369], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4369] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4369], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4369] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#628], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#628] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4370], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4370] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4370], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4370] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4370], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4370] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4371], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4371] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4371], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4371] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4371], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4371] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#629], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#629] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4372], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4372] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4372], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4372] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4372], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4372] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4373], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4373] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4373], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4373] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4373], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4373] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4374], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4374] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4374], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4374] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4374], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4374] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4375], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4375] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4375], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4375] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4375], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4375] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4376], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4376] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4376], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4376] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4376], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4376] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4377], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4377] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4377], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4377] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4377], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4377] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4378], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4378] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4378], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4378] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4378], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4378] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4379], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4379] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4379], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4379] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4379], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4379] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4380], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4380] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4380], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4380] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4380], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4380] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4381], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4381] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4381], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4381] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4381], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4381] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4382], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4382] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4382], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4382] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4382], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4382] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#630], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#630] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4383], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4383] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4383], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4383] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4383], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4383] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4384], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4384] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4384], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4384] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4384], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4384] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4385], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4385] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4385], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4385] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4385], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4385] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4386], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4386] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4386], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4386] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4386], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4386] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4387], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4387] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4387], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4387] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4387], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4387] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4388], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4388] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4388], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4388] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4388], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4388] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4389], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4389] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4389], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4389] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4389], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4389] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4390], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4390] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4390], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4390] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4390], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4390] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4391], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4391] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4391], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4391] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4391], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4391] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4392], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4392] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4392], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4392] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4392], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4392] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4393], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4393] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4393], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4393] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4393], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4393] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4394], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4394] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4394], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4394] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4394], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4394] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4395], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4395] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4395], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4395] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4395], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4395] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4396], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4396] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4396], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4396] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4396], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4396] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4397], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4397] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4397], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4397] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4397], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4397] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#631], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#631] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4398], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4398] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4398], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4398] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4398], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4398] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4399], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4399] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4399], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4399] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4399], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4399] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#632], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#632] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4400], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4400] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4400], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4400] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4400], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4400] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4401], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4401] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4401], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4401] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4401], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4401] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4402], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4402] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4402], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4402] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4402], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4402] (initialized)
| 2007-01-25 12:32:15,506 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4403], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4403] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4403], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4403] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4403], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4403] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4404], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4404] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4404], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4404] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4404], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4404] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4405], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4405] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4405], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4405] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4405], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4405] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4406], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4406] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4406], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4406] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4406], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4406] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4407], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4407] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4407], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4407] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4407], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4407] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4408], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4408] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4408], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4408] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4408], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4408] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4409], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4409] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4409], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4409] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4409], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4409] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4410], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4410] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4410], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4410] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4410], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4410] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#633], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#633] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4411], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4411] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4411], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4411] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4411], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4411] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4412], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4412] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4412], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4412] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4412], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4412] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4413], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4413] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4413], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4413] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4413], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4413] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4414], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4414] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4414], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4414] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4414], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4414] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4415], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4415] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4415], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4415] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4415], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4415] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4416], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4416] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4416], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4416] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4416], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4416] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4417], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4417] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4417], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4417] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4417], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4417] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4418], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4418] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4418], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4418] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4418], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4418] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4419], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4419] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4419], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4419] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4419], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4419] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4420], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4420] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4420], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4420] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4420], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4420] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4421], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4421] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4421], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4421] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4421], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4421] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4422], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4422] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4422], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4422] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4422], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4422] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4423], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4423] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4423], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4423] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4423], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4423] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4424], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4424] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4424], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4424] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4424], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4424] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4425], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4425] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4425], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4425] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4425], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4425] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4426], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4426] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4426], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4426] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4426], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4426] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#634], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#634] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4427], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4427] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4427], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4427] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4427], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4427] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#635], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#635] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4428], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4428] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4428], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4428] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4428], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4428] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4429], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4429] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4429], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4429] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4429], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4429] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4430], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4430] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4430], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4430] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4430], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4430] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4431], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4431] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4431], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4431] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4431], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4431] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4432], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4432] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4432], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4432] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4432], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4432] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4433], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4433] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4433], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4433] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4433], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4433] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4434], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4434] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4434], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4434] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4434], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4434] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4435], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4435] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4435], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4435] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4435], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4435] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4436], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4436] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4436], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4436] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4436], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4436] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4437], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4437] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4437], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4437] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4437], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4437] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4438], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4438] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4438], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4438] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4438], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4438] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4439], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4439] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4439], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4439] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4439], was: [org.jboss.portal.core.impl.model.portal.PortalObjectImpl.declaredProperties#4439] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#636], was: [org.jboss.portal.core.impl.model.portal.ObjectNodeSecurityConstraint.actions#636] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4440], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.children#4440] (initialized)
| 2007-01-25 12:32:15,521 DEBUG [org.hibernate.engine.Collections] Collection found: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4440], was: [org.jboss.portal.core.impl.model.portal.ObjectNode.securityConstraints#4440] (initialized)
| 200
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4006321#4006321
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4006321
19 years, 2 months