
com.liferay.knowledge.base.service.persistence.impl.KBFolderFinderBaseImpl Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.knowledge.base.service.persistence.impl;
import com.liferay.knowledge.base.model.KBFolder;
import com.liferay.knowledge.base.service.persistence.KBFolderPersistence;
import com.liferay.portal.kernel.bean.BeanReference;
import com.liferay.portal.kernel.service.persistence.impl.BasePersistenceImpl;
import java.util.Set;
/**
* @author Brian Wing Shun Chan
* @generated
*/
public class KBFolderFinderBaseImpl extends BasePersistenceImpl {
@Override
public Set getBadColumnNames() {
return getKBFolderPersistence().getBadColumnNames();
}
/**
* Returns the k b folder persistence.
*
* @return the k b folder persistence
*/
public KBFolderPersistence getKBFolderPersistence() {
return kbFolderPersistence;
}
/**
* Sets the k b folder persistence.
*
* @param kbFolderPersistence the k b folder persistence
*/
public void setKBFolderPersistence(KBFolderPersistence kbFolderPersistence) {
this.kbFolderPersistence = kbFolderPersistence;
}
@BeanReference(type = KBFolderPersistence.class)
protected KBFolderPersistence kbFolderPersistence;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy