org.wicketopia.domdrides.component.link.ajax.AjaxCreateEntityLink Maven / Gradle / Ivy
/*
* Copyright (c) 2011 Carman Consulting, Inc.
*
* Licensed 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.wicketopia.domdrides.component.link.ajax;
import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.markup.html.form.AjaxSubmitLink;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.markup.html.form.SubmitLink;
import org.apache.wicket.model.IModel;
import org.domdrides.entity.Entity;
import org.domdrides.repository.Repository;
import java.io.Serializable;
/**
* @since 1.0
*/
public abstract class AjaxCreateEntityLink,IdType extends Serializable> extends AjaxSubmitLink
{
//----------------------------------------------------------------------------------------------------------------------
// Fields
//----------------------------------------------------------------------------------------------------------------------
private final Repository repository;
//----------------------------------------------------------------------------------------------------------------------
// Constructors
//----------------------------------------------------------------------------------------------------------------------
public AjaxCreateEntityLink(String id, Repository repository, IModel model)
{
super(id);
setDefaultModel(model);
this.repository = repository;
}
//----------------------------------------------------------------------------------------------------------------------
// Abstract Methods
//----------------------------------------------------------------------------------------------------------------------
protected abstract void afterCreate(EntityType entity, AjaxRequestTarget target);
//----------------------------------------------------------------------------------------------------------------------
// Other Methods
//----------------------------------------------------------------------------------------------------------------------
@Override
@SuppressWarnings("unchecked")
protected void onSubmit(AjaxRequestTarget target, Form> form)
{
EntityType entity = (EntityType)getDefaultModelObject();
entity = repository.add(entity);
afterCreate(entity, target);
}
}