package com.vci.server.bof.server; import javax.xml.rpc.holders.LongHolder; import com.vci.corba.omd.data.BusinessObject; import com.vci.corba.omd.data.LinkObject; import com.vci.corba.omd.lcm.TransitionVO; import com.vci.corba.framework.data.UserInfo; /** * 服务端前后置层参数集 * @author lmh * */ public class ServiceParams { private BusinessObject bo = null;//增删改 private LinkObject lo = null; private boolean isRevision = false;//增 private boolean isNewVersion = false;//增 private BusinessObject[] bos = null;//批量新增 private BusinessObject[] createBos = null;//批量新增 private BusinessObject[] updateBos = null;//批量修改 private BusinessObject[] deleteBos = null;//批量删除 private LinkObject[] los = null; private LinkObject[] createLos = null; private LinkObject[] updateLos = null; private LinkObject[] deleteLos = null; private LongHolder ts = null; private String btmName = null;//btmName private String releaseStatus = null; private String[] releaseStatuss = null; private String[] oids = null;//oids private int type = 0;//type private TransitionVO vo = null; private TransitionVO[] vos = null; private UserInfo userInfo = null; private UserInfo[] userList = null; public BusinessObject[] getCreateBos() { return createBos; } public void setCreateBos(BusinessObject[] createBos) { this.createBos = createBos; } public BusinessObject[] getUpdateBos() { return updateBos; } public void setUpdateBos(BusinessObject[] updateBos) { this.updateBos = updateBos; } public BusinessObject[] getDeleteBos() { return deleteBos; } public void setDeleteBos(BusinessObject[] deleteBos) { this.deleteBos = deleteBos; } public LinkObject[] getCreateLos() { return createLos; } public void setCreateLos(LinkObject[] createLos) { this.createLos = createLos; } public LinkObject[] getUpdateLos() { return updateLos; } public void setUpdateLos(LinkObject[] updateLos) { this.updateLos = updateLos; } public LinkObject[] getDeleteLos() { return deleteLos; } public void setDeleteLos(LinkObject[] deleteLos) { this.deleteLos = deleteLos; } public BusinessObject getBo() { return bo; } public void setBo(BusinessObject bo) { this.bo = bo; } public LinkObject getLo() { return lo; } public void setLo(LinkObject lo) { this.lo = lo; } public boolean isRevision() { return isRevision; } public void setRevision(boolean isRevision) { this.isRevision = isRevision; } public boolean isNewVersion() { return isNewVersion; } public void setNewVersion(boolean isNewVersion) { this.isNewVersion = isNewVersion; } public BusinessObject[] getBos() { return bos; } public void setBos(BusinessObject[] bos) { this.bos = bos; } public LinkObject[] getLos() { return los; } public void setLos(LinkObject[] los) { this.los = los; } public LongHolder getTs() { return ts; } public void setTs(LongHolder ts) { this.ts = ts; } public String getBtmName() { return btmName; } public void setBtmName(String btmName) { this.btmName = btmName; } public String getReleaseStatus() { return releaseStatus; } public void setReleaseStatus(String releaseStatus) { this.releaseStatus = releaseStatus; } public String[] getReleaseStatuss() { return releaseStatuss; } public void setReleaseStatuss(String[] releaseStatuss) { this.releaseStatuss = releaseStatuss; } public String[] getOids() { return oids; } public void setOids(String[] oids) { this.oids = oids; } public int getType() { return type; } public void setType(int type) { this.type = type; } public TransitionVO getVo() { return vo; } public void setVo(TransitionVO vo) { this.vo = vo; } public TransitionVO[] getVos() { return vos; } public void setVos(TransitionVO[] vos) { this.vos = vos; } public UserInfo getUserInfo() { return userInfo; } public void setUserInfo(UserInfo userInfo) { this.userInfo = userInfo; } public UserInfo[] getUserList() { return userList; } public void setUserList(UserInfo[] userList) { this.userList = userList; } }