All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wicketstuff.ki.KiSubjectModel Maven / Gradle / Ivy

There is a newer version: 1.4.11
Show newest version
package org.wicketstuff.ki;

import org.apache.wicket.model.AbstractReadOnlyModel;
import org.apache.wicket.model.IModel;
import org.jsecurity.SecurityUtils;
import org.jsecurity.subject.Subject;

/**
 * A simple wrapper for to access {@link SecurityUtils#getSubject()}
 * as an {@link IModel}
 */
public class KiSubjectModel extends AbstractReadOnlyModel
{
  @Override
  public Subject getObject() {
    return SecurityUtils.getSubject();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy