001
014
015 package com.liferay.portlet.asset.service.persistence.impl;
016
017 import com.liferay.portal.kernel.bean.BeanReference;
018 import com.liferay.portal.service.persistence.impl.BasePersistenceImpl;
019
020 import com.liferay.portlet.asset.model.AssetVocabulary;
021 import com.liferay.portlet.asset.service.persistence.AssetVocabularyPersistence;
022
023 import java.util.Set;
024
025
029 public class AssetVocabularyFinderBaseImpl extends BasePersistenceImpl<AssetVocabulary> {
030 @Override
031 public Set<String> getBadColumnNames() {
032 return getAssetVocabularyPersistence().getBadColumnNames();
033 }
034
035
040 public AssetVocabularyPersistence getAssetVocabularyPersistence() {
041 return assetVocabularyPersistence;
042 }
043
044
049 public void setAssetVocabularyPersistence(
050 AssetVocabularyPersistence assetVocabularyPersistence) {
051 this.assetVocabularyPersistence = assetVocabularyPersistence;
052 }
053
054 @BeanReference(type = AssetVocabularyPersistence.class)
055 protected AssetVocabularyPersistence assetVocabularyPersistence;
056 }