com.wadpam.oauth2.service.FactoryService 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!
/*
* INSERT COPYRIGHT HERE
*/
package com.wadpam.oauth2.service;
import com.wadpam.oauth2.dao.DFactoryDao;
import com.wadpam.oauth2.domain.DFactory;
import com.wadpam.open.mvc.MardaoCrudService;
import org.springframework.beans.factory.annotation.Autowired;
/**
*
* @author sosandstrom
*/
public class FactoryService extends MardaoCrudService {
@Autowired
public void setDFactoryDao(DFactoryDao dFactoryDao) {
this.dao = dFactoryDao;
}
}