be.personify.iam.frontend.wicket.model.common.ResourcesModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-frontend Show documentation
Show all versions of personify-frontend Show documentation
frontend library for different usages
package be.personify.iam.frontend.wicket.model.common;
import org.apache.wicket.injection.Injector;
import org.apache.wicket.model.util.ListModel;
public abstract class ResourcesModel extends ListModel {
private static final long serialVersionUID = -3640634378534872269L;
private String href = null;
public ResourcesModel() {
super();
Injector.get().inject(this);
}
public void setHref( String href ){
this.href = href;
}
public String getHref() {
return href;
}
public int getCount() {
return getObject().size();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy