Created
May 6, 2015 07:31
Initial LibraryFinderImpl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package me.rkg.plugins.service.persistence; | |
import java.util.List; | |
import com.liferay.portal.kernel.log.Log; | |
import com.liferay.portal.kernel.log.LogFactoryUtil; | |
import com.liferay.portal.service.persistence.impl.BasePersistenceImpl; | |
public class LibraryFinderImpl extends BasePersistenceImpl{ | |
public List<Object[]> findByAuthorAndTitle(String authorName, String title, int begin, int end){ | |
return null; | |
} | |
private static final Log LOGGER = LogFactoryUtil.getLog(LibraryFinderImpl.class); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment