[portal-commits] JBoss Portal SVN: r9133 - in branches/presentation: presentation/src/main/org/jboss/portal/presentation/model/state/structural and 1 other directories.
portal-commits at lists.jboss.org
portal-commits at lists.jboss.org
Tue Nov 27 12:00:46 EST 2007
Author: julien at jboss.com
Date: 2007-11-27 12:00:45 -0500 (Tue, 27 Nov 2007)
New Revision: 9133
Modified:
branches/presentation/core-presentation/src/main/org/jboss/portal/core/presentation/model/StructuralStateManagerImpl.java
branches/presentation/presentation/src/main/org/jboss/portal/presentation/model/state/structural/StructuralStateManager.java
branches/presentation/presentation/src/main/org/jboss/portal/presentation/test/model/MockModel.java
Log:
works better with an object id specified :-)
Modified: branches/presentation/core-presentation/src/main/org/jboss/portal/core/presentation/model/StructuralStateManagerImpl.java
===================================================================
--- branches/presentation/core-presentation/src/main/org/jboss/portal/core/presentation/model/StructuralStateManagerImpl.java 2007-11-27 16:59:31 UTC (rev 9132)
+++ branches/presentation/core-presentation/src/main/org/jboss/portal/core/presentation/model/StructuralStateManagerImpl.java 2007-11-27 17:00:45 UTC (rev 9133)
@@ -172,7 +172,7 @@
throw new StateChangeVetoException();
}
- public void update(Map<String, String> properties) throws StateChangeVetoException
+ public void update(String objectId, Map<String, String> properties) throws StateChangeVetoException
{
throw new StateChangeVetoException();
}
Modified: branches/presentation/presentation/src/main/org/jboss/portal/presentation/model/state/structural/StructuralStateManager.java
===================================================================
--- branches/presentation/presentation/src/main/org/jboss/portal/presentation/model/state/structural/StructuralStateManager.java 2007-11-27 16:59:31 UTC (rev 9132)
+++ branches/presentation/presentation/src/main/org/jboss/portal/presentation/model/state/structural/StructuralStateManager.java 2007-11-27 17:00:45 UTC (rev 9133)
@@ -53,6 +53,6 @@
void move(String objectId, String parentId) throws StateChangeVetoException;
- void update(Map<String, String> properties) throws StateChangeVetoException;
+ void update(String objectId, Map<String, String> properties) throws StateChangeVetoException;
}
Modified: branches/presentation/presentation/src/main/org/jboss/portal/presentation/test/model/MockModel.java
===================================================================
--- branches/presentation/presentation/src/main/org/jboss/portal/presentation/test/model/MockModel.java 2007-11-27 16:59:31 UTC (rev 9132)
+++ branches/presentation/presentation/src/main/org/jboss/portal/presentation/test/model/MockModel.java 2007-11-27 17:00:45 UTC (rev 9133)
@@ -195,7 +195,7 @@
throw new StateChangeVetoException();
}
- public void update(Map<String, String> properties) throws StateChangeVetoException
+ public void update(String objectId, Map<String, String> properties) throws StateChangeVetoException
{
throw new StateChangeVetoException();
}
More information about the portal-commits
mailing list