blob: 4366d963a7aeff8dffe7cf94723c345381c42b67 [file] [log] [blame]
/*
* 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.myfaces.flow;
import javax.faces.flow.ViewNode;
/**
*
* @since 2.2
* @author Leonardo Uribe
*/
public class ViewNodeImpl extends ViewNode implements Freezable
{
private String _vdlDocumentId;
private String _id;
private boolean _initialized;
public ViewNodeImpl(String id, String vdlDocumentId)
{
this._vdlDocumentId = vdlDocumentId;
this._id = id;
}
@Override
public String getVdlDocumentId()
{
return _vdlDocumentId;
}
@Override
public String getId()
{
return _id;
}
@Override
public void freeze()
{
_initialized = true;
}
private void checkInitialized() throws IllegalStateException
{
if (_initialized)
{
throw new IllegalStateException("Flow is inmutable once initialized");
}
}
public void setVdlDocumentId(String vdlDocumentId)
{
checkInitialized();
this._vdlDocumentId = vdlDocumentId;
}
public void setId(String id)
{
checkInitialized();
this._id = id;
}
}