/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jetspeed.container.state.impl;
import java.io.Serializable;
import javax.portlet.PortletMode;
import javax.portlet.WindowState;
/**
* PortletWindowBaseNavigationalState
*
* @author <a href="mailto:ate@apache.org">Ate Douma</a>
* @version $Id: PortletWindowBaseNavigationalState.java 516448 2007-03-09 16:25:47Z ate $
*/
public class PortletWindowBaseNavigationalState implements Serializable
{
private String modeName;
private String stateName;
private transient PortletMode portletMode;
private transient WindowState windowState;
public PortletMode getPortletMode()
{
if ( portletMode == null && modeName != null )
{
portletMode = new PortletMode(modeName);
}
return portletMode ;
}
public void setPortletMode(PortletMode portletMode)
{
this.portletMode = portletMode;
this.modeName = portletMode == null ? null : portletMode.toString();
}
public WindowState getWindowState()
{
if ( windowState == null && stateName != null )
{
windowState = new WindowState(stateName);
}
return windowState;
}
public void setWindowState(WindowState windowState)
{
this.windowState = windowState;
this.stateName = windowState == null ? null : windowState.toString();
}
}
|