/* * Copyright 2015 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * 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 org.jbpm.services.task.impl.model.xml; import java.util.Date; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import org.jbpm.services.task.impl.model.xml.InternalJaxbWrapper.GetterUser; import org.kie.api.task.model.Attachment; import org.kie.api.task.model.User; import com.fasterxml.jackson.annotation.JsonAutoDetect; @XmlType(name="attachment") @XmlAccessorType(XmlAccessType.FIELD) @JsonAutoDetect(getterVisibility=JsonAutoDetect.Visibility.NONE, setterVisibility=JsonAutoDetect.Visibility.NONE, fieldVisibility=JsonAutoDetect.Visibility.ANY) public class JaxbAttachment extends AbstractJaxbTaskObject<Attachment> implements Attachment { @XmlElement @XmlSchemaType(name = "long") private Long id; @XmlElement @XmlSchemaType(name = "string") private String name; @XmlElement @XmlSchemaType(name = "string") private String contentType; @XmlElement @XmlSchemaType(name = "dateTime") private Date attachedAt; @XmlElement(name="attached-by") @XmlSchemaType(name = "string") private String attachedBy; @XmlElement @XmlSchemaType(name = "int") private Integer size; @XmlElement(name="attachment-content-id") @XmlSchemaType(name = "long") private Long attachmentContentId; public JaxbAttachment() { super(Attachment.class); } public JaxbAttachment(Attachment attachment) { super(attachment, Attachment.class); User attacher = attachment.getAttachedBy(); if( attacher != null ) { this.attachedBy = attacher.getId(); } } @Override public Long getId() { return id; } @Override public String getName() { return name; } @Override public String getContentType() { return contentType; } @Override public Date getAttachedAt() { return attachedAt; } @Override public User getAttachedBy() { return new GetterUser(this.attachedBy); } public String getAttachedById() { return this.attachedBy; } @Override public int getSize() { return whenNull(size, -1); } @Override public long getAttachmentContentId() { return whenNull(attachmentContentId, -1l); } }