blob: c4f14b1ae3a2c69f8105e139dc63d36339e47cbd [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) 2018 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.api;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.eclipse.openk.common.mapper.generic.annotations.MapDbModelClass;
import org.eclipse.openk.common.mapper.generic.annotations.MapDbModelField;
import org.eclipse.openk.db.model.TblDocuments;
@MapDbModelClass(classType = TblDocuments.class)
public class Document {
@JsonProperty
@MapDbModelField
private Integer id;
@JsonProperty
@MapDbModelField
private String documentName;
private String data;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getDocumentName() {
return documentName;
}
public void setDocumentName(String documentName) {
this.documentName = documentName;
}
public String getData() {
return data;
}
public void setData(String data) {
this.data = data;
}
}