blob: 4569a9fd84782725843a759e6d52818b5d9f209f [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) 2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************
*/
package org.eclipse.openk.elogbook.viewmodel.contactbasedata;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.io.Serializable;
import java.util.Date;
import java.util.UUID;
public class AssignmentModulContactDto implements Serializable {
@JsonProperty("id")
private UUID uuid;
private UUID contactId;
private String modulName;
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
private Date assignmentDate;
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
private Date expiringDate;
@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
private Date deletionLockUntil;
private String assignmentNote;
public UUID getUuid() {
return uuid;
}
public void setUuid(UUID uuid) {
this.uuid = uuid;
}
public UUID getContactId() {
return contactId;
}
public void setContactId(UUID contactId) {
this.contactId = contactId;
}
public String getModulName() {
return modulName;
}
public void setModulName(String modulName) {
this.modulName = modulName;
}
public Date getAssignmentDate() {
return assignmentDate;
}
public void setAssignmentDate(Date assignmentDate) {
this.assignmentDate = assignmentDate;
}
public Date getExpiringDate() {
return expiringDate;
}
public void setExpiringDate(Date expiringDate) {
this.expiringDate = expiringDate;
}
public Date getDeletionLockUntil() {
return deletionLockUntil;
}
public void setDeletionLockUntil(Date deletionLockUntil) {
this.deletionLockUntil = deletionLockUntil;
}
public String getAssignmentNote() {
return assignmentNote;
}
public void setAssignmentNote(String assignmentNote) {
this.assignmentNote = assignmentNote;
}
}