com.wadpam.oauth2.dao.DConnectionDaoBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oauth2-client Show documentation
Show all versions of oauth2-client Show documentation
Implements OAuth2 authentication on top of Open-Server security
The newest version!
package com.wadpam.oauth2.dao;
import com.wadpam.oauth2.domain.DConnection;
/**
* Implementation of Business Methods related to entity DConnection.
* This (empty) class is generated by mardao, but edited by developers.
* It is not overwritten by the generator once it exists.
*
* Generated on 2013-02-19T16:14:31.437+0700.
* @author mardao DAO generator (net.sf.mardao.plugin.ProcessDomainMojo)
*/
public class DConnectionDaoBean
extends GeneratedDConnectionDaoImpl
implements DConnectionDao
{
@Override
public Iterable queryByProviderIdProviderUserId(String providerId, String providerUserId) {
return queryIterable(false, 0, -1, null, null,
null, false, null, false,
createEqualsFilter(COLUMN_NAME_PROVIDERID, providerId),
createEqualsFilter(COLUMN_NAME_PROVIDERUSERID, providerUserId));
}
}