com.opentext.ia.sdk.dto.Row Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infoarchive-sdk-core Show documentation
Show all versions of infoarchive-sdk-core Show documentation
A library that makes it quick and easy to create SIPs in InfoArchive
/*
* Copyright (c) 2016-2017 by OpenText Corporation. All Rights Reserved.
*/
package com.opentext.ia.sdk.dto;
import java.util.ArrayList;
import java.util.List;
import com.opentext.ia.sdk.support.JavaBean;
public class Row extends JavaBean {
private String id;
private List columns;
public Row() {
setColumns(new ArrayList());
}
public String getId() {
return id;
}
public final void setId(String id) {
this.id = id;
}
public List getColumns() {
return columns;
}
public final void setColumns(List columns) {
this.columns = new ArrayList<>(columns.size());
this.columns.addAll(columns);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy