Example usage for org.apache.shiro.realm.jdbc JdbcRealm subclass-usage

List of usage examples for org.apache.shiro.realm.jdbc JdbcRealm subclass-usage

Introduction

In this page you can find the example usage for org.apache.shiro.realm.jdbc JdbcRealm subclass-usage.

Usage

From source file me.buom.shiro.realm.jdbc.JndiJdbcRealm.java

/**
 * Created by buom on 1/23/14.
 */
public class JndiJdbcRealm extends JdbcRealm {

    private static final Logger log = LoggerFactory.getLogger(JndiJdbcRealm.class);

From source file msme.ir.authmsme.realm.HibernateRealm.java

/**
 *
 * @author jeus
 */
public class HibernateRealm extends JdbcRealm {

From source file name.brucephillips.rolesecurity.dao.RoleSecurityJdbcRealm.java

/**
 * Sub-class of JdbcRealm that defines
 * the Data Source the JdbcRealm should
 * use
 * The configuration specified in web.xml
 * will cause an object of this class to 

From source file net.kr9ly.thinfw.authentication.realm.LoginRealm.java

/**
 * Copyright 2015 kr9ly
 * <br />
 * 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

From source file org.killbill.billing.server.security.KillbillJdbcRealm.java

/**
 * @see {shiro.ini}
 */
public class KillbillJdbcRealm extends JdbcRealm {

    private static final String KILLBILL_AUTHENTICATION_QUERY = "select api_secret, api_salt from tenants where api_key = ?";

From source file org.killbill.billing.server.security.KillbillJdbcTenantRealm.java

/**
 * @see {shiro.ini}
 */
public class KillbillJdbcTenantRealm extends JdbcRealm {

    private static final String KILLBILL_AUTHENTICATION_QUERY = "select api_secret, api_salt from tenants where api_key = ?";

From source file org.killbill.billing.util.security.shiro.realm.KillBillJdbcRealm.java

public class KillBillJdbcRealm extends JdbcRealm {

    protected static final String KILLBILL_SALTED_AUTHENTICATION_QUERY = "select password, password_salt from users where username = ? and is_active";
    protected static final String KILLBILL_USER_ROLES_QUERY = "select role_name from user_roles where username = ? and is_active";
    protected static final String KILLBILL_PERMISSIONS_QUERY = "select permission from roles_permissions where role_name = ? and is_active";

From source file org.mpavel.app.security.ApplicationSecurityRealm.java

/**
 * I...
 *
 * @author mpavel
 *
 */

From source file org.obiba.onyx.webapp.authentication.OnyxRealm.java

public class OnyxRealm extends JdbcRealm {

    /**
     * The default query used to retrieve account status for the user.
     */
    protected static final String USER_PROPERTIES_QUERY = "select status,language from user where login = ? and deleted = 0";

From source file org.ohdsi.webapi.shiro.JdbcAuthRealm.java

public class JdbcAuthRealm extends JdbcRealm {

    private static final Log log = LogFactory.getLog(JdbcAuthRealm.class);
    private BCryptPasswordEncoder bCryptPasswordEncoder = new BCryptPasswordEncoder();

    public JdbcAuthRealm(DataSource dataSource, String authenticationQuery) {