Package com.alibaba.otter.manager.web.common.model

Examples of com.alibaba.otter.manager.web.common.model.SeniorChannel


            for (Pipeline pipeline : pipelines) {
                if (processStatService.listRealtimeProcessStat(channel.getId(), pipeline.getId()).isEmpty()) {
                    processEmpty = true;
                }
            }
            SeniorChannel seniorChannel = new SeniorChannel();
            seniorChannel.setId(channel.getId());
            seniorChannel.setName(channel.getName());
            seniorChannel.setParameters(channel.getParameters());
            seniorChannel.setPipelines(channel.getPipelines());
            seniorChannel.setStatus(channel.getStatus());
            seniorChannel.setDescription(channel.getDescription());
            seniorChannel.setGmtCreate(channel.getGmtCreate());
            seniorChannel.setGmtModified(channel.getGmtModified());
            seniorChannel.setProcessEmpty(processEmpty);
            seniorChannels.add(seniorChannel);
        }

        context.put("channels", seniorChannels);
        context.put("paginator", paginator);
View Full Code Here


            for (Pipeline pipeline : pipelines) {
                if (processStatService.listRealtimeProcessStat(channel.getId(), pipeline.getId()).isEmpty()) {
                    processEmpty = true;
                }
            }
            SeniorChannel seniorChannel = new SeniorChannel();
            seniorChannel.setId(channel.getId());
            seniorChannel.setName(channel.getName());
            seniorChannel.setParameters(channel.getParameters());
            seniorChannel.setPipelines(channel.getPipelines());
            seniorChannel.setStatus(channel.getStatus());
            seniorChannel.setDescription(channel.getDescription());
            seniorChannel.setGmtCreate(channel.getGmtCreate());
            seniorChannel.setGmtModified(channel.getGmtModified());
            seniorChannel.setProcessEmpty(processEmpty);
            seniorChannels.add(seniorChannel);
        }

        context.put("channels", seniorChannels);
        context.put("paginator", paginator);
View Full Code Here

TOP

Related Classes of com.alibaba.otter.manager.web.common.model.SeniorChannel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.