Skip to content

Commit

Permalink
LPS-56660 Regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellustavares authored and brianchandotcom committed Jul 2, 2015
1 parent 4b2334f commit dcaceed
Show file tree
Hide file tree
Showing 29 changed files with 824 additions and 2,783 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,19 +188,6 @@ public static List<DLFileEntryType> toModels(
public static final boolean FINDER_CACHE_ENABLED_DLFILEENTRYTYPES_DLFOLDERS = GetterUtil.getBoolean(com.liferay.portal.util.PropsUtil.get(
"value.object.finder.cache.enabled.DLFileEntryTypes_DLFolders"),
true);
public static final String MAPPING_TABLE_DLFILEENTRYTYPES_DDMSTRUCTURES_NAME =
"DLFileEntryTypes_DDMStructures";
public static final Object[][] MAPPING_TABLE_DLFILEENTRYTYPES_DDMSTRUCTURES_COLUMNS =
{
{ "fileEntryTypeId", Types.BIGINT },
{ "structureId", Types.BIGINT }
};
public static final String MAPPING_TABLE_DLFILEENTRYTYPES_DDMSTRUCTURES_SQL_CREATE =
"create table DLFileEntryTypes_DDMStructures (structureId LONG not null,fileEntryTypeId LONG not null,primary key (structureId, fileEntryTypeId))";
public static final boolean FINDER_CACHE_ENABLED_DLFILEENTRYTYPES_DDMSTRUCTURES =
GetterUtil.getBoolean(com.liferay.portal.util.PropsUtil.get(
"value.object.finder.cache.enabled.DLFileEntryTypes_DDMStructures"),
true);
public static final long LOCK_EXPIRATION_TIME = GetterUtil.getLong(com.liferay.portal.util.PropsUtil.get(
"lock.expiration.time.com.liferay.portlet.documentlibrary.model.DLFileEntryType"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,6 @@
import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
import com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence;
import com.liferay.portlet.exportimport.lar.ExportImportHelperUtil;
Expand Down Expand Up @@ -1244,81 +1242,6 @@ public void setDLAppHelperLocalService(
this.dlAppHelperLocalService = dlAppHelperLocalService;
}

/**
* Returns the d d m structure local service.
*
* @return the d d m structure local service
*/
public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
return ddmStructureLocalService;
}

/**
* Sets the d d m structure local service.
*
* @param ddmStructureLocalService the d d m structure local service
*/
public void setDDMStructureLocalService(
com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
this.ddmStructureLocalService = ddmStructureLocalService;
}

/**
* Returns the d d m structure remote service.
*
* @return the d d m structure remote service
*/
public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
return ddmStructureService;
}

/**
* Sets the d d m structure remote service.
*
* @param ddmStructureService the d d m structure remote service
*/
public void setDDMStructureService(
com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
this.ddmStructureService = ddmStructureService;
}

/**
* Returns the d d m structure persistence.
*
* @return the d d m structure persistence
*/
public DDMStructurePersistence getDDMStructurePersistence() {
return ddmStructurePersistence;
}

/**
* Sets the d d m structure persistence.
*
* @param ddmStructurePersistence the d d m structure persistence
*/
public void setDDMStructurePersistence(
DDMStructurePersistence ddmStructurePersistence) {
this.ddmStructurePersistence = ddmStructurePersistence;
}

/**
* Returns the d d m structure finder.
*
* @return the d d m structure finder
*/
public DDMStructureFinder getDDMStructureFinder() {
return ddmStructureFinder;
}

/**
* Sets the d d m structure finder.
*
* @param ddmStructureFinder the d d m structure finder
*/
public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
this.ddmStructureFinder = ddmStructureFinder;
}

/**
* Returns the expando row local service.
*
Expand Down Expand Up @@ -1862,14 +1785,6 @@ protected void runSQL(String sql) {
protected AssetTagFinder assetTagFinder;
@BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
@BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
@BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
@BeanReference(type = DDMStructurePersistence.class)
protected DDMStructurePersistence ddmStructurePersistence;
@BeanReference(type = DDMStructureFinder.class)
protected DDMStructureFinder ddmStructureFinder;
@BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
@BeanReference(type = ExpandoRowPersistence.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryMetadataPersistence;
import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypeFinder;
import com.liferay.portlet.documentlibrary.service.persistence.DLFileEntryTypePersistence;
import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureLinkPersistence;

import java.io.Serializable;

Expand Down Expand Up @@ -439,44 +438,6 @@ public void setClassNamePersistence(
this.classNamePersistence = classNamePersistence;
}

/**
* Returns the d d m structure link local service.
*
* @return the d d m structure link local service
*/
public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLinkLocalService getDDMStructureLinkLocalService() {
return ddmStructureLinkLocalService;
}

/**
* Sets the d d m structure link local service.
*
* @param ddmStructureLinkLocalService the d d m structure link local service
*/
public void setDDMStructureLinkLocalService(
com.liferay.portlet.dynamicdatamapping.service.DDMStructureLinkLocalService ddmStructureLinkLocalService) {
this.ddmStructureLinkLocalService = ddmStructureLinkLocalService;
}

/**
* Returns the d d m structure link persistence.
*
* @return the d d m structure link persistence
*/
public DDMStructureLinkPersistence getDDMStructureLinkPersistence() {
return ddmStructureLinkPersistence;
}

/**
* Sets the d d m structure link persistence.
*
* @param ddmStructureLinkPersistence the d d m structure link persistence
*/
public void setDDMStructureLinkPersistence(
DDMStructureLinkPersistence ddmStructureLinkPersistence) {
this.ddmStructureLinkPersistence = ddmStructureLinkPersistence;
}

/**
* Returns the document library file entry type local service.
*
Expand Down Expand Up @@ -629,10 +590,6 @@ protected void runSQL(String sql) {
protected com.liferay.portal.service.ClassNameService classNameService;
@BeanReference(type = ClassNamePersistence.class)
protected ClassNamePersistence classNamePersistence;
@BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLinkLocalService.class)
protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLinkLocalService ddmStructureLinkLocalService;
@BeanReference(type = DDMStructureLinkPersistence.class)
protected DDMStructureLinkPersistence ddmStructureLinkPersistence;
@BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService.class)
protected com.liferay.portlet.documentlibrary.service.DLFileEntryTypeLocalService dlFileEntryTypeLocalService;
@BeanReference(type = com.liferay.portlet.documentlibrary.service.DLFileEntryTypeService.class)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@
import com.liferay.portlet.documentlibrary.service.persistence.DLFileVersionPersistence;
import com.liferay.portlet.documentlibrary.service.persistence.DLFolderFinder;
import com.liferay.portlet.documentlibrary.service.persistence.DLFolderPersistence;
import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructureFinder;
import com.liferay.portlet.dynamicdatamapping.service.persistence.DDMStructurePersistence;
import com.liferay.portlet.expando.service.persistence.ExpandoRowPersistence;
import com.liferay.portlet.expando.service.persistence.ExpandoTablePersistence;
import com.liferay.portlet.trash.service.persistence.TrashEntryPersistence;
Expand Down Expand Up @@ -866,81 +864,6 @@ public void setDLAppHelperLocalService(
this.dlAppHelperLocalService = dlAppHelperLocalService;
}

/**
* Returns the d d m structure local service.
*
* @return the d d m structure local service
*/
public com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService getDDMStructureLocalService() {
return ddmStructureLocalService;
}

/**
* Sets the d d m structure local service.
*
* @param ddmStructureLocalService the d d m structure local service
*/
public void setDDMStructureLocalService(
com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService) {
this.ddmStructureLocalService = ddmStructureLocalService;
}

/**
* Returns the d d m structure remote service.
*
* @return the d d m structure remote service
*/
public com.liferay.portlet.dynamicdatamapping.service.DDMStructureService getDDMStructureService() {
return ddmStructureService;
}

/**
* Sets the d d m structure remote service.
*
* @param ddmStructureService the d d m structure remote service
*/
public void setDDMStructureService(
com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService) {
this.ddmStructureService = ddmStructureService;
}

/**
* Returns the d d m structure persistence.
*
* @return the d d m structure persistence
*/
public DDMStructurePersistence getDDMStructurePersistence() {
return ddmStructurePersistence;
}

/**
* Sets the d d m structure persistence.
*
* @param ddmStructurePersistence the d d m structure persistence
*/
public void setDDMStructurePersistence(
DDMStructurePersistence ddmStructurePersistence) {
this.ddmStructurePersistence = ddmStructurePersistence;
}

/**
* Returns the d d m structure finder.
*
* @return the d d m structure finder
*/
public DDMStructureFinder getDDMStructureFinder() {
return ddmStructureFinder;
}

/**
* Sets the d d m structure finder.
*
* @param ddmStructureFinder the d d m structure finder
*/
public void setDDMStructureFinder(DDMStructureFinder ddmStructureFinder) {
this.ddmStructureFinder = ddmStructureFinder;
}

/**
* Returns the expando row local service.
*
Expand Down Expand Up @@ -1480,14 +1403,6 @@ protected void runSQL(String sql) {
protected AssetTagFinder assetTagFinder;
@BeanReference(type = com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService.class)
protected com.liferay.portlet.documentlibrary.service.DLAppHelperLocalService dlAppHelperLocalService;
@BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService.class)
protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureLocalService ddmStructureLocalService;
@BeanReference(type = com.liferay.portlet.dynamicdatamapping.service.DDMStructureService.class)
protected com.liferay.portlet.dynamicdatamapping.service.DDMStructureService ddmStructureService;
@BeanReference(type = DDMStructurePersistence.class)
protected DDMStructurePersistence ddmStructurePersistence;
@BeanReference(type = DDMStructureFinder.class)
protected DDMStructureFinder ddmStructureFinder;
@BeanReference(type = com.liferay.portlet.expando.service.ExpandoRowLocalService.class)
protected com.liferay.portlet.expando.service.ExpandoRowLocalService expandoRowLocalService;
@BeanReference(type = ExpandoRowPersistence.class)
Expand Down
Loading

0 comments on commit dcaceed

Please sign in to comment.