Java tutorial
/* * Copyright (c) 2008-2016 Haulmont. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ package com.haulmont.cuba.core.entity; import com.haulmont.chile.core.annotations.NamePattern; import com.haulmont.cuba.core.entity.annotation.SystemLevel; import com.haulmont.cuba.core.global.AppBeans; import com.haulmont.cuba.core.global.Metadata; import com.haulmont.cuba.core.global.UuidProvider; import org.apache.commons.lang.StringUtils; import javax.persistence.Column; import javax.persistence.Table; import java.util.Date; @javax.persistence.Entity(name = "sys$FileDescriptor") @Table(name = "SYS_FILE") @NamePattern("%s (%s)|name,createDate,extension") @SystemLevel public class FileDescriptor extends StandardEntity { private static final long serialVersionUID = 564683944299730504L; @Column(name = "NAME", length = 500, nullable = false) private String name; @Column(name = "EXT", length = 20) private String extension; @Column(name = "FILE_SIZE") private Long size; @Column(name = "CREATE_DATE") private Date createDate; /** * @return file uploading timestamp */ public Date getCreateDate() { return createDate; } public void setCreateDate(Date createDate) { this.createDate = createDate; } /** * @return file name including extension */ public String getName() { return name; } public void setName(String name) { this.name = name; } /** * @return file extension, i.e. the part of name after the last dot */ public String getExtension() { return extension; } public void setExtension(String extension) { this.extension = StringUtils.substring(extension, 0, 20); } /** * @return file size in bytes */ public Long getSize() { return size; } public void setSize(Long size) { this.size = size; } /** * Used by the framework to transfer file between application tiers. */ public String toUrlParam() { StringBuilder strBuilder = new StringBuilder().append(id).append(",").append(extension).append(",") .append(createDate.getTime()); if (size != null) { strBuilder.append(",").append(size); } return strBuilder.toString(); } /** * Used by the framework to transfer file between application tiers. */ public static FileDescriptor fromUrlParam(String urlParam) { String[] parts = urlParam.split(","); if (parts.length != 3 && parts.length != 4) { throw new IllegalArgumentException("Invalid FileDescriptor format"); } Metadata metadata = AppBeans.get(Metadata.NAME); FileDescriptor fd = metadata.create(FileDescriptor.class); fd.setId(UuidProvider.fromString(parts[0])); fd.setExtension(parts[1]); fd.setCreateDate(new Date(Long.parseLong(parts[2]))); if (parts.length == 4) { fd.setSize(Long.parseLong(parts[3])); } return fd; } }