Package edu.indiana.extreme.lead.workflow_tracking.common

Examples of edu.indiana.extreme.lead.workflow_tracking.common.ConstructorProps


     */
    private ServiceNotificationSender(SoapUtil soapFragrance,
            LeadContextHeader leadContext) {
        this.soapFragrance = soapFragrance;

        ConstructorProps props = MessageUtil
                .createConstructorPropsFromLeadContext(leadContext);
        this.notifier = NotifierFactory.createNotifier(props);

        URI workflowID = leadContext.getWorkflowId();
        String serviceIDString = leadContext.getServiceId();
View Full Code Here


    public void test() {
        WsaEndpointReference brokerEPR = WseClientAPI.createEndpointReference(
                this.configuration.getBrokerURL().toString(),
                this.configuration.getTopic());

        ConstructorProps props = ConstructorProps.newProps();
        props.set(ConstructorConsts.BROKER_EPR, XMLUtil
                .xmlElementToString(brokerEPR));
        Notifier notifier = NotifierFactory.createNotifier(props);

        URI initiatorWorkflowID = URI.create("Workflow");
        URI initiatorServiceID = URI.create("Adder_add");
View Full Code Here

    public void test() {
        WsaEndpointReference brokerEPR = WseClientAPI.createEndpointReference(
                this.configuration.getBrokerURL().toString(),
                this.configuration.getTopic());

        ConstructorProps props = ConstructorProps.newProps();
        props.set(ConstructorConsts.BROKER_EPR, brokerEPR);
        Notifier notifier = NotifierFactory.createNotifier(props);

        InvocationEntity entity = notifier.createEntity(URI
                .create("workflowID"), URI.create("serviceID"),
                "workflowNodeID", new Integer(1) /* step */);
 
View Full Code Here

     * @param leadContext
     */
    public NotificationHandler(LeadContextHeader leadContext) {
        super(NotificationHandler.class.getName());
        this.leadContext = leadContext;
        ConstructorProps props = MessageUtil
                .createConstructorPropsFromLeadContext(leadContext);
        this.notifier = NotifierFactory.createNotifier(props);
    }
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.lead.workflow_tracking.common.ConstructorProps

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.