72 lines
1.8 KiB
Java
72 lines
1.8 KiB
Java
// ============================================================================
|
|
//
|
|
// Copyright (C) 2006-2016 Talend Inc. - www.talend.com
|
|
//
|
|
// This source code is available under agreement available at
|
|
// %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt
|
|
//
|
|
// You should have received a copy of the agreement
|
|
// along with this program; if not, write to Talend SA
|
|
// 9 rue Pages 92150 Suresnes, France
|
|
//
|
|
// ============================================================================
|
|
package routines.system;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.LinkedHashMap;
|
|
|
|
/**
|
|
* DOC bchen class global comment. Detailled comment <br/>
|
|
*
|
|
* $Id: talend.epf 55206 2011-02-15 17:32:14Z mhirt $
|
|
*
|
|
*/
|
|
public class TraceDataBean implements TraceBean, Serializable {
|
|
|
|
private static final long serialVersionUID = -4580437449518099406L;
|
|
|
|
private String connectionId;
|
|
|
|
private int nbLine;
|
|
|
|
private LinkedHashMap<String, String> data = new LinkedHashMap<String, String>();
|
|
|
|
public TraceDataBean(String connectionId) {
|
|
this.connectionId = connectionId;
|
|
}
|
|
|
|
public String getConnectionId() {
|
|
return this.connectionId;
|
|
}
|
|
|
|
public void setConnectionId(String connectionId) {
|
|
this.connectionId = connectionId;
|
|
}
|
|
|
|
public int getNbLine() {
|
|
return this.nbLine;
|
|
}
|
|
|
|
public void setNbLine(int nbLine) {
|
|
this.nbLine = nbLine;
|
|
}
|
|
|
|
public LinkedHashMap<String, String> getData() {
|
|
return this.data;
|
|
}
|
|
|
|
public void setData(LinkedHashMap<String, String> data) {
|
|
this.data = data;
|
|
}
|
|
|
|
/*
|
|
* (non-Javadoc)
|
|
*
|
|
* @see routines.system.RunTrace.TraceBean#equals(routines.system.RunTrace.TraceBean)
|
|
*/
|
|
public boolean equals(TraceBean traceBean) {
|
|
// TODO Auto-generated method stub
|
|
return false;
|
|
}
|
|
}
|