| | |
| | | package com.vci.web.util; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Iterator; |
| | | import java.util.List; |
| | | |
| | | import com.vci.corba.portal.data.PLPageDefination; |
| | | import com.vci.client.common.providers.ClientServiceProvider; |
| | | import com.vci.common.portal.constants.PLDefinationConstants; |
| | | import com.vci.common.portal.constants.PRMConstants; |
| | | import com.vci.corba.portal.PortalServicePrx; |
| | | import com.vci.model.PLDefination; |
| | | import com.vci.model.PRMDO; |
| | | import com.vci.model.PRMItemDO; |
| | |
| | | import org.dom4j.DocumentHelper; |
| | | import org.dom4j.Element; |
| | | |
| | | import com.vci.client.common.providers.ClientServiceProvider; |
| | | import com.vci.common.portal.constants.PLDefinationConstants; |
| | | import com.vci.common.portal.constants.PRMConstants; |
| | | import com.vci.corba.portal.PortalServicePrx; |
| | | import java.util.ArrayList; |
| | | import java.util.Iterator; |
| | | import java.util.List; |
| | | |
| | | |
| | | /** |
| | |
| | | node = rootNode.addElement(PLDefinationConstants.QUERYTEMPLATENAME); |
| | | node.setText(obj.getQueryTemplateName()); |
| | | |
| | | node = rootNode.addElement(PLDefinationConstants.QUERYTEMPLATENAME); |
| | | node.setText(obj.getBsCustQueryCLsOrUrl()); |
| | | |
| | | node = rootNode.addElement(PLDefinationConstants.QUERYTEMPLATENAME); |
| | | node.setText(obj.getCsCustQueryCLsOrUrl()); |
| | | |
| | | node = rootNode.addElement(PLDefinationConstants.SUBUIOBJTYPE); |
| | | node.setText(obj.getSubUiObjType()); |
| | | |
| | |
| | | elementText = root.elementText(PLDefinationConstants.QUERYTEMPLATENAME); |
| | | obj.setQueryTemplateName(elementText == null ? "" : elementText); |
| | | |
| | | elementText = root.elementText(PLDefinationConstants.BSCUSTQUERYCLSORURL); |
| | | obj.setBsCustQueryCLsOrUrl(elementText == null ? "" : elementText); |
| | | |
| | | elementText = root.elementText(PLDefinationConstants.CSCUSTQUERYCLSORURL); |
| | | obj.setCsCustQueryCLsOrUrl(elementText == null ? "" : elementText); |
| | | |
| | | elementText = root.elementText(PLDefinationConstants.SUBUILAYOUT); |
| | | obj.setSubUILayout(elementText == null ? "" : elementText); |
| | | } |