com.onboard.domain.transform.AttachmentTransform.java Source code

Java tutorial

Introduction

Here is the source code for com.onboard.domain.transform.AttachmentTransform.java

Source

/*******************************************************************************
 * Copyright [2015] [Onboard team of SERC, Peking University]
 *
 * 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.onboard.domain.transform;

import java.util.List;

import org.springframework.beans.BeanUtils;

import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.onboard.domain.model.Attachment;
import com.onboard.dto.AttachmentDTO;
import com.onboard.dto.TagDTO;

public class AttachmentTransform {

    public static final Function<Attachment, AttachmentDTO> ATTACHMENT_TO_ATTACHMENTDTO_FUNCTION = new Function<Attachment, AttachmentDTO>() {
        @Override
        public AttachmentDTO apply(Attachment input) {
            return attachmentToAttachmentDTO(input);
        }
    };
    public static final Function<AttachmentDTO, Attachment> ATTACHMENTDTO_TO_ATTACHMENT_FUNCTION = new Function<AttachmentDTO, Attachment>() {
        @Override
        public Attachment apply(AttachmentDTO input) {
            return attachmentDTOToAttachment(input);
        }
    };

    public static final AttachmentDTO attachmentToAttachmentDTO(Attachment attachment) {
        AttachmentDTO attachmentDTO = new AttachmentDTO();
        BeanUtils.copyProperties(attachment, attachmentDTO);
        if (attachment.getTags() != null) {
            List<TagDTO> tagDtos = Lists.transform(attachment.getTags(), TagTransform.TAG_TO_TAGDTO_FUNCTION);
            attachmentDTO.setTagDtos(tagDtos);
        }
        return attachmentDTO;
    }

    public static final Attachment attachmentDTOToAttachment(AttachmentDTO attachmentDTO) {
        Attachment attachment = new Attachment();
        BeanUtils.copyProperties(attachmentDTO, attachment);
        if (attachmentDTO.getTagDtos() != null) {
            attachment.setTags(Lists.transform(attachmentDTO.getTagDtos(), TagTransform.TAGDTO_TO_TAG_FUNCTION));
        }
        return attachment;
    }

}