Package org.apache.oozie.client.rest

Examples of org.apache.oozie.client.rest.JMSConnectionInfoBean


            return idx;
        }
    }

    private static JMSConnectionInfoBean createDummyJMSConnectionInfo() {
        JMSConnectionInfoBean jmsBean = new JMSConnectionInfoBean();
        Properties jmsProps = new Properties();
        jmsProps.setProperty("k1", "v1");
        jmsProps.setProperty("k2", "v2");
        jmsBean.setJNDIProperties(jmsProps);
        jmsBean.setTopicPrefix("topicPrefix");
        return jmsBean;
    }
View Full Code Here


        String connectionProperties = conf.get(JMSJobEventListener.JMS_CONNECTION_PROPERTIES);
        if (connectionProperties == null) {
            throw new XServletException(HttpServletResponse.SC_BAD_REQUEST, ErrorCode.E1601,
                    "JMS connection property is not defined");
        }
        JMSConnectionInfoBean jmsBean = new JMSConnectionInfoBean();
        JMSConnectionInfo jmsInfo = new JMSConnectionInfo(connectionProperties);
        Properties jmsInfoProps = jmsInfo.getJNDIProperties();
        jmsInfoProps.remove("java.naming.security.principal");
        jmsBean.setJNDIProperties(jmsInfoProps);
        if (jmsTopicService != null) {
            jmsBean.setTopicPrefix(jmsTopicService.getTopicPrefix());
            jmsBean.setTopicPatternProperties(jmsTopicService.getTopicPatternProperties());
        }
        else {
            throw new XServletException(
                    HttpServletResponse.SC_BAD_REQUEST,
                    ErrorCode.E1601,
View Full Code Here

        String connectionProperties = conf.get(JMSJobEventListener.JMS_CONNECTION_PROPERTIES);
        if (connectionProperties == null) {
            throw new XServletException(HttpServletResponse.SC_BAD_REQUEST, ErrorCode.E1601,
                    "JMS connection property is not defined");
        }
        JMSConnectionInfoBean jmsBean = new JMSConnectionInfoBean();
        JMSConnectionInfo jmsInfo = new JMSConnectionInfo(connectionProperties);
        Properties jmsInfoProps = jmsInfo.getJNDIProperties();
        jmsInfoProps.remove("java.naming.security.principal");
        jmsBean.setJNDIProperties(jmsInfoProps);
        if (jmsTopicService != null) {
            jmsBean.setTopicPrefix(jmsTopicService.getTopicPrefix());
            jmsBean.setTopicPatternProperties(jmsTopicService.getTopicPatternProperties());
        }
        else {
            throw new XServletException(
                    HttpServletResponse.SC_BAD_REQUEST,
                    ErrorCode.E1601,
View Full Code Here

            return idx;
        }
    }

    private static JMSConnectionInfoBean createDummyJMSConnectionInfo() {
        JMSConnectionInfoBean jmsBean = new JMSConnectionInfoBean();
        Properties jmsProps = new Properties();
        jmsProps.setProperty("k1", "v1");
        jmsProps.setProperty("k2", "v2");
        jmsBean.setJNDIProperties(jmsProps);
        jmsBean.setTopicPrefix("topicPrefix");
        return jmsBean;
    }
View Full Code Here

TOP

Related Classes of org.apache.oozie.client.rest.JMSConnectionInfoBean

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.