EquipmentConfig.java
/*
* @ Copyright 2001 FA Software;
* All right reserved. No part of this program may be reproduced or
* transmitted in any form or by any means, electronic or
* mechanical, including photocopying, recording, or by any
* information storage or retrieval system without written
* permission from FA Software, except for inclusion of brief
* quotations in a review.
*/
package com.mycim.valueobject.ems;
import com.mycim.valueobject.bas.NamedObject;
public class EquipmentConfig extends NamedObject {
// --------------------------------------------------------- Instance Variables
private String deviceId;
private String portType;
private Integer numberOfPorts;
private String storkerOutputPortId;
private Integer numberOfChambers;
private Integer efemBufferQty;
private String ipAddressLocal;
private String ipPortLocal;
private String ipAddressRemote;
private String ipPortRemote;
private String serialPortId;
private Integer baudRate;
private Integer retryLimit;
private Long t1Timeout;
private Long t2Timeout;
private Long t3Timeout;
private Long t4Timeout;
private Long t5Timeout;
private Long t6Timeout;
private Long t7Timeout;
private Long t8Timeout;
// --------------------------------------------------------- Properties
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getPortType() {
return this.portType;
}
public void setPortType(String portType) {
this.portType = portType;
}
public Integer getNumberOfPorts() {
return this.numberOfPorts;
}
public void setNumberOfPorts(Integer numberOfPorts) {
this.numberOfPorts = numberOfPorts;
}
public String getStorkerOutputPortId() {
return this.storkerOutputPortId;
}
public void setStorkerOutputPortId(String storkerOutputPortId) {
this.storkerOutputPortId = storkerOutputPortId;
}
public Integer getNumberOfChambers() {
return this.numberOfChambers;
}
public void setNumberOfChambers(Integer numberOfChambers) {
this.numberOfChambers = numberOfChambers;
}
public Integer getEfemBufferQty() {
return this.efemBufferQty;
}
public void setEfemBufferQty(Integer efemBufferQty) {
this.efemBufferQty = efemBufferQty;
}
public String getIpAddressLocal() {
return this.ipAddressLocal;
}
public void setIpAddressLocal(String ipAddressLocal) {
this.ipAddressLocal = ipAddressLocal;
}
public String getIpPortLocal() {
return this.ipPortLocal;
}
public void setIpPortLocal(String ipPortLocal) {
this.ipPortLocal = ipPortLocal;
}
public String getIpAddressRemote() {
return this.ipAddressRemote;
}
public void setIpAddressRemote(String ipAddressRemote) {
this.ipAddressRemote = ipAddressRemote;
}
public String getIpPortRemote() {
return this.ipPortRemote;
}
public void setIpPortRemote(String ipPortRemote) {
this.ipPortRemote = ipPortRemote;
}
public String getSerialPortId() {
return this.serialPortId;
}
public void setSerialPortId(String serialPortId) {
this.serialPortId = serialPortId;
}
public Integer getBaudRate() {
return this.baudRate;
}
public void setBaudRate(Integer baudRate) {
this.baudRate = baudRate;
}
public Integer getRetryLimit() {
return this.retryLimit;
}
public void setRetryLimit(Integer retryLimit) {
this.retryLimit = retryLimit;
}
public Long getT1Timeout() {
return this.t1Timeout;
}
public void setT1Timeout(Long t1Timeout) {
this.t1Timeout = t1Timeout;
}
public Long getT2Timeout() {
return this.t2Timeout;
}
public void setT2Timeout(Long t2Timeout) {
this.t2Timeout = t2Timeout;
}
public Long getT3Timeout() {
return this.t3Timeout;
}
public void setT3Timeout(Long t3Timeout) {
this.t3Timeout = t3Timeout;
}
public Long getT4Timeout() {
return this.t4Timeout;
}
public void setT4Timeout(Long t4Timeout) {
this.t4Timeout = t4Timeout;
}
public Long getT5Timeout() {
return this.t5Timeout;
}
public void setT5Timeout(Long t5Timeout) {
this.t5Timeout = t5Timeout;
}
public Long getT6Timeout() {
return this.t6Timeout;
}
public void setT6Timeout(Long t6Timeout) {
this.t6Timeout = t6Timeout;
}
public Long getT7Timeout() {
return this.t7Timeout;
}
public void setT7Timeout(Long t7Timeout) {
this.t7Timeout = t7Timeout;
}
public Long getT8Timeout() {
return this.t8Timeout;
}
public void setT8Timeout(Long t8Timeout) {
this.t8Timeout = t8Timeout;
}
}
/*
* Modification Log Log No : Name : Modified Date: Description :
*/