当前位置: 首页>>代码示例>>Java>>正文


Java DLFileEntry.getUuid方法代码示例

本文整理汇总了Java中com.liferay.portlet.documentlibrary.model.DLFileEntry.getUuid方法的典型用法代码示例。如果您正苦于以下问题:Java DLFileEntry.getUuid方法的具体用法?Java DLFileEntry.getUuid怎么用?Java DLFileEntry.getUuid使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.liferay.portlet.documentlibrary.model.DLFileEntry的用法示例。


在下文中一共展示了DLFileEntry.getUuid方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getIconURL

import com.liferay.portlet.documentlibrary.model.DLFileEntry; //导入方法依赖的package包/类
public String getIconURL(long applicationId) throws Exception {
		String result = "";		
		try {
//			_log.debug("getIconURL(applicationId " + applicationId + ")");	
			Application application = applicationLocalService.getApplication(applicationId);
			if (application.getLogoImageId() != 0) {
				DLFileEntry fe = DLFileEntryLocalServiceUtil.getDLFileEntry(application.getLogoImageId());
				result = "http://localhost/documents/10180/0/" + 
						HttpUtil.encodeURL(HtmlUtil.unescape(fe.getTitle())) + 
						StringPool.SLASH + 
						fe.getUuid() +
						"?version=" + fe.getVersion() +
						"&t=" + fe.getModifiedDate().getTime() +
						"&imageThumbnail=1";				
			}
					
		} catch (SystemException se) {
			_log.error("applicationId: " + applicationId);				
			_log.error(se.getMessage());		
		} catch (PortalException pe) {
			_log.error("applicationId: " + applicationId);				
			_log.error(pe.getMessage());				
		}
		return result;		
	}
 
开发者ID:fraunhoferfokus,项目名称:govapps,代码行数:26,代码来源:ApplicationServiceImpl.java

示例2: getExternIconURL

import com.liferay.portlet.documentlibrary.model.DLFileEntry; //导入方法依赖的package包/类
private String getExternIconURL(Application application) throws Exception {
	String result = "";		
	try {
		if (application.getLogoImageId() != 0) {
			DLFileEntry fe = DLFileEntryLocalServiceUtil.getDLFileEntry(application.getLogoImageId());
			result = "http://" +  AppConstants.COMPANY_VIRTUAL_HOST + "/documents/10180/0/" + 
					HttpUtil.encodeURL(HtmlUtil.unescape(fe.getTitle())) + 
					StringPool.SLASH + 
					fe.getUuid() +
					"?version=" + fe.getVersion() +
					"&t=" + fe.getModifiedDate().getTime() +
					"&imageThumbnail=1";				
		}
				
	} catch (SystemException se) {
		_log.error(se.getMessage());				
	} catch (PortalException pe) {
		_log.error(pe.getMessage());				
	}
	return result;		
}
 
开发者ID:fraunhoferfokus,项目名称:govapps,代码行数:22,代码来源:ApplicationServiceImpl.java

示例3: getUploadList

import com.liferay.portlet.documentlibrary.model.DLFileEntry; //导入方法依赖的package包/类
public List<ResultItem> getUploadList(Long id) {

		List<FieldResult> fieldResults = formController.getFieldResults(id);
		List<ResultItem> resultItems = new ArrayList<ResultItem>();

		for (FieldResult fieldResult : fieldResults) {

			if (fieldResult.getContent() != null && !fieldResult.getContent().isEmpty()) {

				Date date = fieldResult.getResult().getCreated();
				List<ResultItem> items = new ArrayList<ResultItem>();

				for (String fileEntryId : fieldResult.getContent().split("\\,")) {

					try {
						DLFileEntry dlFileEntry = DLFileEntryLocalServiceUtil.getDLFileEntry(new Long(fileEntryId));

						String name = dlFileEntry.getTitle();
						String content = "/../documents/" + dlFileEntry.getGroupId() + "/" + dlFileEntry.getFolderId() + "/" + URLEncoder.encode(dlFileEntry.getTitle(), "UTF-8") + "/" + dlFileEntry.getUuid();

						items.add(new ResultItem(name, content));
					} catch (Exception e) {
						e.printStackTrace();
					}
				}

				resultItems.add(new ResultItem(date, items));
			}
		}

		return resultItems;
	}
 
开发者ID:mahytom,项目名称:liferay-webforms,代码行数:33,代码来源:GraphicBean.java

示例4: getNewApplications

import com.liferay.portlet.documentlibrary.model.DLFileEntry; //导入方法依赖的package包/类
public List<List> getNewApplications(long companyId, int year, int month, int day, int count) throws SystemException {	

	List<List> result  = new ArrayList<List>();
	
	Date modifiedDate = PortalUtil.getDate(month, day, year);
	Date now = new Date();

	List<Application> applications = applicationPersistence.findAll();
	List<Application> applications2 = new ArrayList<Application>();
	for (Application app: applications) {
		applications2.add(app);
	}
	
	OrderByComparator orderByComparator = CustomComparatorUtil.getApplicationOrderByComparator("modifiedDate",  "desc");
	
       Collections.sort(applications2, orderByComparator);
       applications2 = applications2.subList(0, count);
	
	for (Application application: applications2) {
		if (application.getLifeCycleStatus() >= 4) {
			List toAdd = new ArrayList();
			toAdd.add(application);
					
			DLFileEntry fe;
			try {
				fe = DLFileEntryLocalServiceUtil.getDLFileEntry(application.getLogoImageId());
				String iconUrl = "http://localhost/documents/10180/0/" + 
					HttpUtil.encodeURL(HtmlUtil.unescape(fe.getTitle())) + 
					StringPool.SLASH + 
					fe.getUuid() +
					"?version=" + fe.getVersion() +
					"&t=" + fe.getModifiedDate().getTime() +
					"&imageThumbnail=1";
						
				toAdd.add(iconUrl);
			} catch (PortalException e) {
				_log.error(e.getMessage());
			}
					
			result.add(toAdd);				
		}
	}			
	return result;		
}
 
开发者ID:fraunhoferfokus,项目名称:govapps,代码行数:45,代码来源:ApplicationLocalServiceImpl.java

示例5: getNewApplications

import com.liferay.portlet.documentlibrary.model.DLFileEntry; //导入方法依赖的package包/类
public List<List> getNewApplications(long companyId, int year, int month, int day, int count) throws SystemException {	
	_log.debug("getNewApplications2: ");
	List<List> result  = new ArrayList<List>();
	try {
		Date modifiedDate = PortalUtil.getDate(month, day, year);
		Date now = new Date();
		
		DynamicQuery dynamicQuery = DynamicQueryFactoryUtil.forClass(Application.class);
		Criterion criterion = null;
		
		criterion = RestrictionsFactoryUtil.between("modifiedDate",modifiedDate,now);

		dynamicQuery.add(criterion);
		dynamicQuery.add(PropertyFactoryUtil.forName("lifeCycleStatus").eq(E_Stati.APPLICATION_STATUS_VERIFIED.getIntStatus()));
		
		Order defaultOrder = OrderFactoryUtil.desc("modifiedDate");
		dynamicQuery.addOrder(defaultOrder); 
				
		dynamicQuery.setLimit(0, count);
		
		List<Application> applications = ApplicationLocalServiceUtil.dynamicQuery(dynamicQuery);
		
	
		for (Application application: applications) {
			List toAdd = new ArrayList();
			toAdd.add(application);
						
			if (application.getLogoImageId() != 0) {
				DLFileEntry fe;
				fe = DLFileEntryLocalServiceUtil.getDLFileEntry(application.getLogoImageId());
							//String iconUrl = "http://localhost/documents/10180/0/" + HttpUtil.encodeURL(fe.getTitle(), true);
				String iconUrl = "http://localhost/documents/10180/0/" + 
					HttpUtil.encodeURL(HtmlUtil.unescape(fe.getTitle())) + 
					StringPool.SLASH + 
					fe.getUuid() +
					"?version=" + fe.getVersion() +
					"&t=" + fe.getModifiedDate().getTime() +
					"&imageThumbnail=1";
								
				toAdd.add(iconUrl);
			}
					
			result.add(toAdd);				
		}
	} catch (Exception e) {
		_log.error(e.getMessage());
		e.printStackTrace();
	}
	return result;		
}
 
开发者ID:fraunhoferfokus,项目名称:govapps,代码行数:51,代码来源:ApplicationServiceImpl.java

示例6: usePreviewImage

import com.liferay.portlet.documentlibrary.model.DLFileEntry; //导入方法依赖的package包/类
public void usePreviewImage(Field field) throws NumberFormatException, PortalException, SystemException, UnsupportedEncodingException {

		DLFileEntry dlFileEntry = DLFileEntryLocalServiceUtil.getDLFileEntry(new Long(this.tempDocument.getId()));
		String url = "/../documents/" + dlFileEntry.getGroupId() + "/" + dlFileEntry.getFolderId() + "/" + URLEncoder.encode(dlFileEntry.getTitle(), "UTF-8") + "/" + dlFileEntry.getUuid();

		field.getValue().setContent(url);

	}
 
开发者ID:mahytom,项目名称:liferay-webforms,代码行数:9,代码来源:WebFormControlBean.java


注:本文中的com.liferay.portlet.documentlibrary.model.DLFileEntry.getUuid方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。