Author: thomas.heute(a)jboss.com
Date: 2008-02-26 08:54:30 -0500 (Tue, 26 Feb 2008)
New Revision: 10119
Modified:
branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/impl/model/instance/InstanceContextImpl.java
Log:
API change
Modified:
branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/impl/model/instance/InstanceContextImpl.java
===================================================================
---
branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/impl/model/instance/InstanceContextImpl.java 2008-02-26
12:05:03 UTC (rev 10118)
+++
branches/JBoss_Portal_Branch_2_7/core/src/main/org/jboss/portal/core/impl/model/instance/InstanceContextImpl.java 2008-02-26
13:54:30 UTC (rev 10119)
@@ -80,12 +80,12 @@
public void onStateEvent(StateEvent event)
{
- StateEvent.StateEventType type = event.getType();
- if (StateEvent.PORTLET_CLONED_EVENT.equals(type))
+ StateEvent.Type type = event.getType();
+ if (StateEvent.Type.PORTLET_CLONED_EVENT.equals(type))
{
clonedContext = event.getPortletContext();
}
- else if (StateEvent.PORTLET_MODIFIED_EVENT.equals(type))
+ else if (StateEvent.Type.PORTLET_MODIFIED_EVENT.equals(type))
{
modifiedContext = event.getPortletContext();
}