Workflow. Summary. Prerequisites. Getting your module ready. Create a new module

Size: px
Start display at page:

Download "Workflow. Summary. Prerequisites. Getting your module ready. Create a new module"

Transcription

1 Workflow Summary Prerequisites Getting your module ready Create a new module Module dependencies Defining the workflow Create a new process Custom workitems Add workitem Publication steps Process parameters Configure the workflow Workitem handlers Implementing a workitem handler Configuring a workitem handler Test the workflow Define the workitem handler Update the workitem handler configuration Update the workitem handler implementation Mail template configuration Create a freemarker template Configure the template Configure the mailcommand and mailtemplate Summary This tutorial shows how to create a simple workflow in Magnolia 5.3.x or 5.4.x or 5.5.x with Eclipse Luna. If you have any problems with this tutorial please comment at the bottom. Prerequisites Magnolia EE 5.3.x or 5.4.x or 5.5.x Workflow is an enterprise edtion feature. Eclipse Luna Service Release 1 (4.4.1). You are free to work with an IDE of your choice. However, for this particular implementation we recommend working with Eclipse to ensure that that implementation is successful. See Working with Eclipse and Git. BPMN modeler plugin (1.1.5) for Eclipse (or similar): Maven: Git: Getting your module ready Create a new module Set up your module with Maven and use archetype: magnolia-module-archetype (An archetype to create basic Magnolia modules)

2 Module creation input example $ mvn archetype:generate -DarchetypeCatalog= [...] Confirm properties configuration: groupid: org.mydomain.workflow artifactid: mycompany-module-myproject-workflow version: 1.0-SNAPSHOT package: org.mydomain.workflow magnolia-version: module-class-name: MyProjectWorkflowModule module-name: myproject-workflow Y: Import the module into your IDE Module dependencies Ensure that the pom file contains all of the necessary dependencies. As workflow is part of the Enterprise Edition, un-comment the repository at the end of the file. mycompany-module-myproject-workflow pom [...] <dependency> <groupid>info.magnolia.workflow</groupid> <artifactid>magnolia-module-workflow-jbpm</artifactid> </dependency> <dependency> <groupid>info.magnolia</groupid> <artifactid>magnolia-modul </artifactid> </dependency> [...] In this case I'm letting the parent pom manage the versions. For Magnolia we are using magnolia-module-workflow-jbpm and magnoli a-modul

3 Update your module descriptor located under src/main/resources/meta-inf/magnolia/myproject-workflow.xml. myproject-workflow.xml [...] <dependency> <name>workflow-jbpm</name> <version>5.5/*</version> </dependency> <dependency> <name>mail</name> <version>5.3/*</version> </dependency> [...] Defining the workflow Create a new process 1. Create a new jbpm Process Diagram.

4 2. Save the MyPublication.bpmn2 file under /src/main/resources. 3. You will now have an empty process file in your module. Custom workitems To create custom workitems you have to create two files inside the META-INF folder of your project. The two files are not used at runtime, but are necessary for modeling your process 1. drools.rulebase.conf file contains a drools.workdefinitions property which points to a space-separated list of workitem definition file. drools.rulebase.conf drools.workdefinitions = MyDefinitions.wid 2. Inside the *.wid files is where you define your workitems. In this case we create a workitem and define the parameters used to send the . MyDefinitions.wid import org.drools.process.core.datatype.impl.type.stringdatatype [ // the notification work item [ "name" : " ", "parameters" : [ "subject" : new StringDataType(), "body" : new StringDataType(), "recipient" : new StringDataType() ],

5 ] ] "displayname" : " Notification" Add workitem 1. If your MyPublication.bpmn2 file was open when you added the drools.rulebase.conf and MyDefinitions.wid files then close it and reopen it. This should trigger the workitem that was defined in the previous step to appear in the Custom Tasks drawer of the modeler's palette Add the newly added Notification workitem from the palette into your process. Connect the Start Event to the Notification by: a. b. c. hovering over the Start Event. clicking the arrow icon. dragging the arrow to point to the Notification Add an End Event. Connect the Notification to the End Event. Publication steps To add the publication steps we call Magnolia's Publication process from within our custom process. (This involves a 'Reusable Process' or 'Call Activity' Le arn more). Because we are targeting the jbpm runtime we do not need to explicitly import our process definition from the external file. Just add the process ID to the Called Activity field of the Call Activity. The jbpm runtime will resolve the IDs at runtime or throw a runtime exception if the called process is not available.

6 1. Under the Sub Processes drawer you will find a Reusable Process. Drag the Reusable Process into your process before the Notifi cation. ( Note: In other versions of Eclipse you may find this under Activities > Call Activity) 2. Double-click the Call Activity to set a Name and Called Activity. info.magnolia.workflow.publication will be the Called Activity at this step. If you are using Magnolia 5.4 then use info.magnolia.workflow.reviewforpublication for the Called Activity. Process parameters Magnolia's standard publication process depends on parameters aggregated from various steps before the workflow starts. These parameters hold a map identified as mgnldata. To ensure that these parameters are properly passed to the publication process you need to set input and output parameters. To access the mgnldata map throughout the process, define a variable and add a type import at the process level. 1. Add an import for our parameters map. Click on the process background and select the Properties tab from the bottom window. Click Definitions from the side menu of the Properties tab. Expand Imports and add java.util.map using the green plus button. (Note: If the Properties tab doesn't show when you click the process background then enable it through the Window menu of Eclipse) 2. Define a process variable mgnldata 3. Create variables for taskid and commandname 4. Create a mapping for mgnldata input and output parameters inside the Call Activity.

7 5. Create additional input mappings for taskid and commandname

8 6. To access the parameters in our workitem, create input mappings in the custom task. First map the subject. 7. Map the remaining parameters body, recipient, and mgnldata. Configure the workflow Configuring the workflow is done by registering a workflows folder in your custom module. Here I've registered the mypublication workflow within my custom module.

9 Workitem handlers When you have customized your workflow, the next step is to integrate the workflow design into your project. This is achieved using workitemhandlers. Implementing a workitem handler A workitemhandler takes care of executing or aborting workitems. Start by implementing the erface. org.kie.api.runtime.process.workitemhandler int WorkItemHandler.java package org.mydomain.workflow.workitems; import org.kie.api.runtime.process.workitem; import org.kie.api.runtime.process.workitemhandler; import org.kie.api.runtime.process.workitemmanager; public class WorkItemHandler implements WorkItemHandler { private static final Logger log = public void executeworkitem(workitem workitem, WorkItemManager manager) { // read data from our work items parameters String subject = String.valueOf(workItem.getParameter("subject")); String body = String.valueOf(workItem.getParameter("body")); String recipient = String.valueOf(workItem.getParameter("recipient")); // read data from mgnldata parameter map Map<String, Object> data = (Map<String, Object>) workitem.getparameter("mgnldata"); String path = (String) data.get("path"); body = String.format(body, path); log.warn("sending to " + recipient); log.warn("subject: " + subject); log.warn("body: " + public void abortworkitem(workitem workitem, WorkItemManager manager) {

10 Configuring a workitem handler Configuring the workitemhandler is done by registering a workitemhandlers folder in your custom module. Here I've registered my workitemhandler within my custom module myproject-workflow. Test the workflow Now you test your workflow configuration and make sure everything is in place correctly. 1. Change the property /modules/workflow/commands/workflow/activate/activate@workflow to point to your workflow Set up a subscriber configuration to point to a test public instance. Activate a page from the pages app and verify in the log that you see a successful activation and the log messages from the workitemhandler. Define the workitem handler Create an workitem handler definition that will allow for configuration of the mail template and the command to be used when sending the mail. package org.mydomain.workflow.workitems; import info.magnolia.module.workflow.jbpm.workitem.handler.definition.configuredworkitemhandlerdefinition; public class WorkItemHandlerDefinition extends ConfiguredWorkItemHandlerDefinition { private String mailcommand; private String mailtemplate; public WorkItemHandlerDefinition() { setimplementationclass( workitemhandler.class);

11 public String getmailtemplate() { return mailtemplate; public String getmailcommand() { return mailcommand; public void setmailtemplate(string mailtemplate) { this.mailtemplate = mailtemplate; public void setmailcommand(string mailcommand) { this.mailcommand = mailcommand; Update the workitem handler configuration Update the configuration to use the new definition class. Update the workitem handler implementation Now that we have a definition class we can get the configured template and command for use in the workitem handler implementation. package org.mydomain.workflow.workitems; import info.magnolia.commands.commandsmanager; import java.util.hashmap; import java.util.map; import javax.inject.inject; import org.kie.api.runtime.process.workitem; import org.kie.api.runtime.process.workitemhandler; import org.kie.api.runtime.process.workitemmanager; import org.slf4j.logger; import org.slf4j.loggerfactory; public class WorkItemHandler implements WorkItemHandler { private static final Logger log = LoggerFactory.getLogger( WorkItemHandler.class); private static final String TEMPLATE_PARAMETER_NAME= "mailtemplate"; private static final String DATA_PARAMETER_NAME= "mgnldata"; private final WorkItemHandlerDefinition definition; private final CommandsManager public WorkItemHandler( WorkItemHandlerDefinition definition, CommandsManager commandsmanager) { this.definition = definition; this.commandsmanager = public void executeworkitem(workitem workitem, WorkItemManager manager) { Map<String, Object> mailparameters = new HashMap<String, Object>();

12 mailparameters.put(template_parameter_name, definition.getmailtemplate()); mailparameters.put(data_parameter_name, workitem.getparameter(data_parameter_name)); try { commandsmanager.executecommand(definition.getmailcommand(), mailparameters); catch (Exception e) { log.error("sending failed.", e); manager.completeworkitem(workitem.getid(), public void abortworkitem(workitem workitem, WorkItemManager manager) { Mail template configuration Create a freemarker template Create a Freemarker template in your module's class path. (For example in src/main/resources/myproject-workflow/ /mypublication. ftl). The template will dump the whole mgnldata map. <html> <head> My Publication </head> <body> <dl> [#list mgnldata?keys as key] <dt>${key</dt> [#if mgnldata[key]?is_string] <dd>${mgnldata[key]</dd> [#else] <dd>value not a string</dd> [/#if] [/#list] </dl> </body> </html> Configure the template Configure the template within the mail module.

13 Configure the mailcommand and mailtemplate Create properties for the mailcommand and mailtemplate on the workitemhandler definition.

MAVEN INTERVIEW QUESTIONS

MAVEN INTERVIEW QUESTIONS MAVEN INTERVIEW QUESTIONS http://www.tutorialspoint.com/maven/maven_interview_questions.htm Copyright tutorialspoint.com Dear readers, these Maven Interview Questions have been designed specially to get

More information

BUILDING EXPERIENCE MANAGER COMPONENTS USING GRANITE/CORAL RESOURCE TYPES

BUILDING EXPERIENCE MANAGER COMPONENTS USING GRANITE/CORAL RESOURCE TYPES Adobe Systems BUILDING EXPERIENCE MANAGER COMPONENTS USING GRANITE/CORAL RESOURCE TYPES MARCH 1, 2018 Presented by: Scott MacDonald Contents Introduction 4 What you will learn about 4 Key Takeaways 4 Prerequisites

More information

Maven POM project modelversion groupid artifactid packaging version name

Maven POM project modelversion groupid artifactid packaging version name Maven The goal of this document is to introduce the Maven tool. This document just shows some of the functionalities of Maven. A complete guide about Maven can be found in http://maven.apache.org/. Maven

More information

JBPM Course Content. Module-1 JBPM overview, Drools overview

JBPM Course Content. Module-1 JBPM overview, Drools overview JBPM Course Content Module-1 JBPM overview, Drools overview JBPM overview Drools overview Community projects Vs Enterprise projects Eclipse integration JBPM console JBPM components Getting started Downloads

More information

JBPM5 - QUICK GUIDE JBPM5 - OVERVIEW

JBPM5 - QUICK GUIDE JBPM5 - OVERVIEW JBPM5 - QUICK GUIDE http://www.tutorialspoint.com/jbpm5/jbpm5_quick_guide.htm Copyright tutorialspoint.com JBPM5 - OVERVIEW JBPM stands for "Java Business Process Management". It is a JBoss product which

More information

Jahia Studio JAHIA DOCUMENTION

Jahia Studio JAHIA DOCUMENTION JAHIA DOCUMENTION Jahia Studio Rooted in Open Source CMS, Jahia s Digital Industrialization paradigm is about streamlining Enterprise digital projects across channels to truly control time-to-market and

More information

sites</distribsiteroot>

sites</distribsiteroot> Maven Parent POMs What is this? We have several parent poms. They pre-configure a whole array of things, from plugin versions to deployment on our infrastructure. They should be used: By all public and

More information

FreeMarker in Spring Web. Marin Kalapać

FreeMarker in Spring Web. Marin Kalapać FreeMarker in Spring Web Marin Kalapać Agenda Spring MVC view resolving in general FreeMarker what is it and basics Configure Spring MVC to use Freemarker as view engine instead of jsp Commonly used components

More information

vrealize Code Stream Plug-In SDK Development Guide

vrealize Code Stream Plug-In SDK Development Guide vrealize Code Stream Plug-In SDK Development Guide vrealize Code Stream 2.2 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

TestingofScout Application. Ludwigsburg,

TestingofScout Application. Ludwigsburg, TestingofScout Application Ludwigsburg, 27.10.2014 The Tools approach The Testing Theory approach Unit testing White box testing Black box testing Integration testing Functional testing System testing

More information

Content. Development Tools 2(57)

Content. Development Tools 2(57) Development Tools Content Project management and build, Maven Unit testing, Arquillian Code coverage, JaCoCo Profiling, NetBeans Static Analyzer, NetBeans Continuous integration, Hudson Development Tools

More information

The Actual Real World at EclipseCon/ALM

The Actual Real World at EclipseCon/ALM Tycho The Actual Real World at EclipseCon/ALM Raise your Hand if you are Sure Addressing the Issues Real World: Tycho Issues World Wide Distributed Teams India, China, Europe, Argentina, United States

More information

Maven. INF5750/ Lecture 2 (Part II)

Maven. INF5750/ Lecture 2 (Part II) Maven INF5750/9750 - Lecture 2 (Part II) Problem! Large software projects usually contain tens or even hundreds of projects/modules Very different teams may work on different modules Will become messy

More information

SOA-14: Continuous Integration in SOA Projects Andreas Gies

SOA-14: Continuous Integration in SOA Projects Andreas Gies Tooling for Service Mix 4 Principal Architect http://www.fusesource.com http://open-source-adventures.blogspot.com About the Author Principal Architect PROGRESS - Open Source Center of Competence Degree

More information

Struts 2 Maven Archetypes

Struts 2 Maven Archetypes Struts 2 Maven Archetypes DEPRECATED: moved to http://struts.apache.org/maven-archetypes/ Struts 2 provides several Maven archetypes that create a starting point for our own applications. Contents 1 DEPRECATED:

More information

What s new in IBM Operational Decision Manager 8.9 Standard Edition

What s new in IBM Operational Decision Manager 8.9 Standard Edition What s new in IBM Operational Decision Manager 8.9 Standard Edition Release themes User empowerment in the Business Console Improved development and operations (DevOps) features Easier integration with

More information

Red Hat Developer Studio 12.0

Red Hat Developer Studio 12.0 Red Hat Developer Studio 12.0 Getting Started with Developer Studio Tools Introduction to Using Red Hat Developer Studio Tools Last Updated: 2018-07-16 Red Hat Developer Studio 12.0 Getting Started with

More information

Contents. Enterprise Systems Maven and Log4j. Maven. What is maven?

Contents. Enterprise Systems Maven and Log4j. Maven. What is maven? Contents Enterprise Systems Maven and Log4j Behzad Bordbar Lecture 4 Maven What is maven Terminology Demo Log4j and slf4j What is logging Advantages Architecture 1 2 Maven What is maven? How does it work?

More information

Topics covered. Introduction to Maven Maven for Dependency Management Maven Lifecycles and Plugins Hands on session. Maven 2

Topics covered. Introduction to Maven Maven for Dependency Management Maven Lifecycles and Plugins Hands on session. Maven 2 Maven Maven 1 Topics covered Introduction to Maven Maven for Dependency Management Maven Lifecycles and Plugins Hands on session Maven 2 Introduction to Maven Maven 3 What is Maven? A Java project management

More information

Skyway Builder 6.3 Spring Web Flow Tutorial

Skyway Builder 6.3 Spring Web Flow Tutorial Skyway Builder 6.3 Spring Web Flow Tutorial 6.3.0.0-07/21/2009 Skyway Software Skyway Builder 6.3 - Spring MVC Tutorial: 6.3.0.0-07/21/2009 Skyway Software Published Copyright 2008 Skyway Software Abstract

More information

Action Developers Guide

Action Developers Guide Operations Orchestration Software Version: 10.70 Windows and Linux Operating Systems Action Developers Guide Document Release Date: November 2016 Software Release Date: November 2016 HPE Operations Orchestration

More information

Application prerequisites

Application prerequisites How to start developing Spark applications in Eclipse By Marko Bonaći In this article, you will learn to write Spark applications using Eclipse, the most widely used development environment for JVM-based

More information

Red Hat JBoss BPM Suite 6.4

Red Hat JBoss BPM Suite 6.4 Red Hat JBoss BPM Suite 6.4 User Guide The User Guide for Red Hat JBoss BPM Suite Last Updated: 2018-01-10 Red Hat JBoss BPM Suite 6.4 User Guide The User Guide for Red Hat JBoss BPM Suite Red Customer

More information

Hello Maven. TestNG, Eclipse, IntelliJ IDEA. Óbuda University, Java Enterprise Edition John von Neumann Faculty of Informatics Lab 2.

Hello Maven. TestNG, Eclipse, IntelliJ IDEA. Óbuda University, Java Enterprise Edition John von Neumann Faculty of Informatics Lab 2. Hello Maven TestNG, Eclipse, IntelliJ IDEA Óbuda University, Java Enterprise Edition John von Neumann Faculty of Informatics Lab 2 Dávid Bedők 2017.09.19. v0.1 Dávid Bedők (UNI-OBUDA) Hello JavaEE 2017.09.19.

More information

Maven Plugin Guide OpenL Tablets BRMS Release 5.16

Maven Plugin Guide OpenL Tablets BRMS Release 5.16 OpenL Tablets BRMS Release 5.16 OpenL Tablets Documentation is licensed under a Creative Commons Attribution 3.0 United States License. Table of Contents 1 Preface... 4 1.1 Related Information... 4 1.2

More information

Cheat Sheet: Wildfly Swarm

Cheat Sheet: Wildfly Swarm Cheat Sheet: Wildfly Swarm Table of Contents 1. Introduction 1 5.A Java System Properties 5 2. Three ways to Create a 5.B Command Line 6 Swarm Application 1 5.C Project Stages 6 2.A Developing a Swarm

More information

Web Architecture and Development

Web Architecture and Development Web Architecture and Development SWEN-261 Introduction to Software Engineering Department of Software Engineering Rochester Institute of Technology HTTP is the protocol of the world-wide-web. The Hypertext

More information

Red Hat JBoss Developer Studio 10.3 Getting Started with JBoss Developer Studio Tools

Red Hat JBoss Developer Studio 10.3 Getting Started with JBoss Developer Studio Tools Red Hat JBoss Developer Studio 10.3 Getting Started with JBoss Developer Studio Tools Introduction to Using Red Hat JBoss Developer Studio Tools Misha Husnain Ali Supriya Bharadwaj Red Hat Developer Group

More information

What is Maven? Apache Maven is a software project management and comprehension tool (build, test, packaging, reporting, site, deploy).

What is Maven? Apache Maven is a software project management and comprehension tool (build, test, packaging, reporting, site, deploy). Plan What is Maven? Links : mvn command line tool POM : 1 pom.xml = 1 artifact POM POM Inheritance Standard Directory Layout Demo on JMMC projects Plugins Conclusion What is Maven? Apache Maven is a software

More information

Red Hat JBoss Developer Studio 11.3

Red Hat JBoss Developer Studio 11.3 Red Hat JBoss Developer Studio 11.3 Getting Started with JBoss Developer Studio Tools Introduction to Using Red Hat JBoss Developer Studio Tools Last Updated: 2018-06-08 Red Hat JBoss Developer Studio

More information

Snapshot Best Practices: Continuous Integration

Snapshot Best Practices: Continuous Integration Snapshot Best Practices: Continuous Integration Snapshot provides sophisticated and flexible tools for continuously keeping Salesforce accounts, developer projects, and content repositories synchronized.

More information

Perceptive Connect Runtime

Perceptive Connect Runtime Perceptive Connect Runtime Developer's Guide Version: 1.4.x Written by: Product Knowledge, R&D Date: August 2016 2016 Lexmark. All rights reserved. Lexmark is a trademark of Lexmark International, Inc.,

More information

DevOps and Maven. Eamonn de Leastar Dr. Siobhán Drohan Produced by:

DevOps and Maven. Eamonn de Leastar Dr. Siobhán Drohan Produced by: DevOps and Maven Produced by: Eamonn de Leastar (edeleastar@wit.ie) Dr. Siobhán Drohan (sdrohan@wit.ie) Department of Computing and Mathematics http://www.wit.ie/ Dev team created a solution for production.

More information

An Introduction to Eclipse Che Lets build a custom cloud IDE. October 2015 Tyler Jewell, Eclipse Che Project

An Introduction to Eclipse Che Lets build a custom cloud IDE. October 2015 Tyler Jewell, Eclipse Che Project An Introduction to Eclipse Che Lets build a custom cloud IDE October 2015 Tyler Jewell, Eclipse Che Project Lead @TylerJewell Goal Let anyone contribute to any project anywhere at any time. no pre-installation

More information

Web Architecture and Development

Web Architecture and Development Web Architecture and Development SWEN-261 Introduction to Software Engineering Department of Software Engineering Rochester Institute of Technology Here's the agenda for this lecture. 1. Fundamentals of

More information

Component based Development. Table of Contents. Notes. Notes. Notes. Web Application Development. Zsolt Tóth

Component based Development. Table of Contents. Notes. Notes. Notes. Web Application Development. Zsolt Tóth Component based Development Web Application Development Zsolt Tóth University of Miskolc 2017 Zsolt Tóth (University of Miskolc) Component based Development 2017 1 / 30 Table of Contents 1 2 3 4 Zsolt

More information

HP Operations Orchestration

HP Operations Orchestration HP Operations Orchestration Software Version: 10.22 Windows and Linux Operating Systems Action Developers Guide Document Release Date: July 2015 Software Release Date: July 2015 Legal Notices Warranty

More information

Developing with VMware vcenter Orchestrator. vrealize Orchestrator 5.5.1

Developing with VMware vcenter Orchestrator. vrealize Orchestrator 5.5.1 Developing with VMware vcenter Orchestrator vrealize Orchestrator 5.5.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments

More information

Lab 5: Configuring Custom Notifications for Significant Enterprise Events

Lab 5: Configuring Custom Notifications for Significant Enterprise Events Lab 5: Configuring Custom Notifications for Significant Enterprise Events Contents Lab 5: Configuring Custom Notifications for Significant Enterprise Events... 1 1. Introduction... 1 2. Content... 2 2.1.

More information

Bootstrapping website development with Sling Models and HTL using Core Components Vlad Băilescu*, Burkhard Pauli, Richard Hand, Radu Cotescu

Bootstrapping website development with Sling Models and HTL using Core Components Vlad Băilescu*, Burkhard Pauli, Richard Hand, Radu Cotescu APACHE SLING & FRIENDS TECH MEETUP 10-12 SEPTEMBER 2018 Bootstrapping website development with Sling Models and HTL using Core Components Vlad Băilescu*, Burkhard Pauli, Richard Hand, Radu Cotescu WHAT

More information

Simplified Build Management with Maven

Simplified Build Management with Maven Simplified Build Management with Maven Trasys Greece Kostis Kapelonis 11/06/2010 Menu Kitchen says hi!(motivation) Starters (Maven sample pom) Soup (Maven philosophy) Main dish (Library management) Side

More information

JBOSS TOOLS INSTALLATION IN ECLIPSE February 2013 Level: By : Feri Djuandi Beginner Intermediate Expert Platform : Eclipse Juno, JBoss AS

JBOSS TOOLS INSTALLATION IN ECLIPSE February 2013 Level: By : Feri Djuandi Beginner Intermediate Expert Platform : Eclipse Juno, JBoss AS JBOSS TOOLS INSTALLATION IN ECLIPSE February 2013 Level: By : Feri Djuandi Beginner Intermediate Expert Platform : Eclipse Juno, JBoss AS 7.1.1. JBoss Tools are plugins developed for Eclipse (the Java

More information

Oracle Code Day Hands On Labs (HOL) (Install, Repository, Local Deploy, DevCS, OACCS)

Oracle Code Day Hands On Labs (HOL) (Install, Repository, Local Deploy, DevCS, OACCS) Oracle Code Day Hands On Labs (HOL) (Install, Repository, Local Deploy, DevCS, OACCS) Table of Contents Getting Started...2 Overview...2 Learning Objectives...2 Prerequisites...2 Software for HOL Lab Session...2

More information

Tutorial 1: Simple Parameterized Mapping

Tutorial 1: Simple Parameterized Mapping Tutorial 1: Simple Parameterized Mapping 1993-2015 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

Deliverable: D 1.2 Specification of Traceability concepts

Deliverable: D 1.2 Specification of Traceability concepts (ITEA 2 13017) Enabling of Results from AMALTHEA and others for Transfer into Application and building Community around Deliverable: D 1.2 Specification of Traceability concepts Work Package: 1 Continuous

More information

End-User Reference Guide El Camino College Compton Center

End-User Reference Guide El Camino College Compton Center End-User Reference Guide El Camino College Compton Center OU Campus Version 10 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA 93012 OmniUpdate, Inc. 1320 Flynn Road, Suite 100 Camarillo, CA

More information

JSF Tools Reference Guide. Version: M5

JSF Tools Reference Guide. Version: M5 JSF Tools Reference Guide Version: 3.3.0.M5 1. Introduction... 1 1.1. Key Features of JSF Tools... 1 2. 3. 4. 5. 1.2. Other relevant resources on the topic... 2 JavaServer Faces Support... 3 2.1. Facelets

More information

Overview & General Navigation

Overview & General Navigation User Guide Contents Overview & General Navigation... 3 Application Terminology... 3 Groups... 3 Text Formatting Menu Bar... 3 Logging into the Application... 3 Dashboard... 4 My Profile... 5 Administrator

More information

Release Notes June 15, Date: 15-Jun :49 URL:

Release Notes June 15, Date: 15-Jun :49 URL: Release Notes 2.7.0 June 15, 2017 Date: 15-Jun-2017 14:49 URL: https://esito-conf.inmeta.com/display/rn/release+notes+2.7.0 Table of Contents 1 News and Changes 3 1.1 The Dialog Editor Palette 3 1.2 Fast

More information

Checking Out and Building Felix with NetBeans

Checking Out and Building Felix with NetBeans Checking Out and Building Felix with NetBeans Checking out and building Felix with NetBeans In this how-to we describe the process of checking out and building Felix from source using the NetBeans IDE.

More information

Sonatype CLM - IDE User Guide. Sonatype CLM - IDE User Guide

Sonatype CLM - IDE User Guide. Sonatype CLM - IDE User Guide Sonatype CLM - IDE User Guide i Sonatype CLM - IDE User Guide Sonatype CLM - IDE User Guide ii Contents 1 Introduction 1 2 Installing Sonatype CLM for Eclipse 2 3 Configuring Sonatype CLM for Eclipse 5

More information

SharePoint General Instructions

SharePoint General Instructions SharePoint General Instructions Table of Content What is GC Drive?... 2 Access GC Drive... 2 Navigate GC Drive... 2 View and Edit My Profile... 3 OneDrive for Business... 3 What is OneDrive for Business...

More information

OpenSplice Gateway v1.3.x User Guide

OpenSplice Gateway v1.3.x User Guide OpenSplice Gateway v1.3.x User Guide Table of Contents 1 Introduction...2 2 Apache Maven archetypes for your Gateway projects...4 3 The Camel OpenSplice DDS component (camel-ospl)...7 3.1 Maven configuration...7

More information

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal

BEAWebLogic. Portal. Tutorials Getting Started with WebLogic Portal BEAWebLogic Portal Tutorials Getting Started with WebLogic Portal Version 10.2 February 2008 Contents 1. Introduction Introduction............................................................ 1-1 2. Setting

More information

Some Virgo Repositories. steve powell -

Some Virgo Repositories. steve powell - Some Virgo Repositories steve powell - spowell@vmware.com artifact-repository only one project (bundle) org.eclipse.virgo.repository exporting packages: org.eclipse.virgo.repository org.eclipse.virgo.repository.builder

More information

MAVEN MOCK TEST MAVEN MOCK TEST III

MAVEN MOCK TEST MAVEN MOCK TEST III http://www.tutorialspoint.com MAVEN MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to Maven. You can download these sample mock tests at your local machine

More information

SAP S/4HANA CLOUD SDK: EXTEND YOUR CLOUD FOUNDRY APPLICATION WITH TENANT-AWARE PERSISTENCY

SAP S/4HANA CLOUD SDK: EXTEND YOUR CLOUD FOUNDRY APPLICATION WITH TENANT-AWARE PERSISTENCY SAP S/4HANA CLOUD SDK: EXTEND YOUR CLOUD FOUNDRY APPLICATION WITH TENANT-AWARE PERSISTENCY DECEMBER 21, 2017 KAUSTUBH SATPUTE LEAVE A COMMENT EDIT S/4HANA Cloud SDK When you build a side-by-side extension

More information

CSE 332: Data Structures and Parallelism Autumn 2017 Setting Up Your CSE 332 Environment In this document, we will provide information for setting up Eclipse for CSE 332. The first s ection covers using

More information

Red Hat Developer Studio 12.0

Red Hat Developer Studio 12.0 Red Hat Developer Studio 12.0 Release Notes and Known Issues Highlighted features in 12.0 Last Updated: 2018-07-18 Red Hat Developer Studio 12.0 Release Notes and Known Issues Highlighted features in

More information

Sample Spark Web-App. Overview. Prerequisites

Sample Spark Web-App. Overview. Prerequisites Sample Spark Web-App Overview Follow along with these instructions using the sample Guessing Game project provided to you. This guide will walk you through setting up your workspace, compiling and running

More information

DOCUMENTUM D2. User Guide

DOCUMENTUM D2. User Guide DOCUMENTUM D2 User Guide Contents 1. Groups... 6 2. Introduction to D2... 7 Access D2... 7 Recommended browsers... 7 Login... 7 First-time login... 7 Installing the Content Transfer Extension... 8 Logout...

More information

Unable To The Artifact From Any Repository Maven-clean-plugin

Unable To The Artifact From Any Repository Maven-clean-plugin Unable To The Artifact From Any Repository Maven-clean-plugin The default behaviour of the plugin is to first resolve the entire dependency tree, Any manually included purge artifacts will be removed from

More information

WFCE - Build and deployment. WFCE - Deployment to Installed Polarion. WFCE - Execution from Workspace. WFCE - Configuration.

WFCE - Build and deployment. WFCE - Deployment to Installed Polarion. WFCE - Execution from Workspace. WFCE - Configuration. Workflow function and condition Example WFCE - Introduction 1 WFCE - Java API Workspace preparation 1 WFCE - Creating project plugin 1 WFCE - Build and deployment 2 WFCE - Deployment to Installed Polarion

More information

S-Drive Installation Guide v1.25

S-Drive Installation Guide v1.25 S-Drive Installation Guide v1.25 Important Note This installation guide contains basic information about S-Drive installation. Refer to the S-Drive Advanced Configuration Guide for advanced installation/configuration

More information

Tutorial - Creating a project template

Tutorial - Creating a project template Tutorial - Creating a project template Applicable: This tutorial applies to JIRA 6.0.7 and later. Note that project template plugins were originally supported in JIRA 6.0 with the project-templa te module.

More information

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release

IBM. IBM WebSphere Application Server Migration Toolkit. WebSphere Application Server. Version 9.0 Release WebSphere Application Server IBM IBM WebSphere Application Server Migration Toolkit Version 9.0 Release 18.0.0.3 Contents Chapter 1. Overview......... 1 Chapter 2. What's new........ 5 Chapter 3. Support..........

More information

Adept 2018 PREP GUIDE

Adept 2018 PREP GUIDE Adept 2018 PREP GUIDE WHY WE WROTE THIS GUIDE We developed the Adept 2018 Prep Guide to make you aware of some important changes to Adept 2018 suite of products that you need to consider when you upgrade

More information

jbpm Tools Reference Guide

jbpm Tools Reference Guide jbpm Tools Reference Guide Version: 3.1.1 Copyright 2007 Red Hat Table of Contents 1. Introduction...1 1.1. Preface...1 2. JBoss jbpm Runtime Installation...2 3. A Guided Tour of JBoss jbpm GPD...4 3.1.

More information

Sonatype CLM Enforcement Points - Nexus. Sonatype CLM Enforcement Points - Nexus

Sonatype CLM Enforcement Points - Nexus. Sonatype CLM Enforcement Points - Nexus Sonatype CLM Enforcement Points - Nexus i Sonatype CLM Enforcement Points - Nexus Sonatype CLM Enforcement Points - Nexus ii Contents 1 Introduction 1 2 Sonatype CLM for Repository Managers 2 3 Nexus Pro

More information

Ocean Wizards and Developers Tools in Visual Studio

Ocean Wizards and Developers Tools in Visual Studio Ocean Wizards and Developers Tools in Visual Studio For Geoscientists and Software Developers Published by Schlumberger Information Solutions, 5599 San Felipe, Houston Texas 77056 Copyright Notice Copyright

More information

The Definitive Guide to. NetBeans Platform 7. Heiko Bock. Apress*

The Definitive Guide to. NetBeans Platform 7. Heiko Bock. Apress* The Definitive Guide to NetBeans Platform 7 Heiko Bock Apress* Contents About the Author About the Translator About the Technical Reviewers Acknowledgments Introduction xiv xiv xv xvi xvii * Part 1: Basics

More information

IBM Proventia Management SiteProtector Policies and Responses Configuration Guide

IBM Proventia Management SiteProtector Policies and Responses Configuration Guide IBM Internet Security Systems IBM Proventia Management SiteProtector Policies and Responses Configuration Guide Version2.0,ServicePack8.1 Note Before using this information and the product it supports,

More information

GENERAL FUND ENTERPRISE BUSINESS SYSTEM. Transaction SBWP IDoc Error Reporting via Business Workplace Job Aid

GENERAL FUND ENTERPRISE BUSINESS SYSTEM. Transaction SBWP IDoc Error Reporting via Business Workplace Job Aid GENERAL FUND ENTERPRISE BUSINESS SYSTEM Transaction SBWP IDoc Error Reporting via Business Workplace Job Aid Version 1.0 Prepared by Accenture August 10, 2009 IDoc Error Reporting via SBWP Job Aid Overview

More information

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Prerequisites...1 Installation...2 Salesforce App Installation... 2 Salesforce Lightning... 2 WordPress Manual Plug-in installation...

More information

Windchill Workflow Tutorial. Release 7.0. November 2003

Windchill Workflow Tutorial. Release 7.0. November 2003 Windchill Workflow Tutorial Release 7.0 November 2003 Introduction This tutorial is designed to demonstrate the creation of a workflow process definition, the initiation of a process instances and the

More information

Define a Java SE class for running/testing your Spring Integration components.

Define a Java SE class for running/testing your Spring Integration components. Lab Exercise Understanding Channels - Lab 1 Channels are an integral part of any Spring Integration application. There are many channels to choose from. Understanding the basic channel types (subscribable

More information

Ge#ng Started Guide New Users and Starter Edi/on

Ge#ng Started Guide New Users and Starter Edi/on Ge#ng Started Guide New Users and Starter Edi/on Goal Thank you for taking the time to use Viewpath as your project management solution. Our goal in providing this guide is to help streamline the process

More information

IBM WebSphere Java Batch Lab

IBM WebSphere Java Batch Lab IBM WebSphere Java Batch Lab What are we going to do? First we are going to set up a development environment on your workstation. Download and install Eclipse IBM WebSphere Developer Tools IBM Liberty

More information

ECM Extensions xcp 2.2 xcelerator Abstract

ECM Extensions xcp 2.2 xcelerator Abstract ECM Extensions xcp 2.2 xcelerator Abstract These release notes outline how to install and use the ECM Extensions xcelerator. October 2015 Version 1.0 Copyright 2015 EMC Corporation. All Rights Reserved.

More information

BUILD AND DEPLOY SOA PROJECTS FROM DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE

BUILD AND DEPLOY SOA PROJECTS FROM DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE BUILD AND DEPLOY SOA PROJECTS FROM DEVELOPER CLOUD SERVICE TO ORACLE SOA CLOUD SERVICE Ashwini Sharma 1 CONTENTS 1. Introduction... 2 2 Prerequisites... 2 3 Patch the SOA Server Installation... 2 4. Use

More information

Training Content Key Terms... 1 How to Run a Report... 2 How to View a Dashboard... 5 How to Modify & Customize Reports... 6

Training Content Key Terms... 1 How to Run a Report... 2 How to View a Dashboard... 5 How to Modify & Customize Reports... 6 Salesforce Reporting Tools Technical Assistance email: support@salesforce.asu.edu Salesforce: http://asu.my.salesforce.com Training Content Key Terms... 1 How to Run a Report... 2 How to View a Dashboard...

More information

Setting up a Maven Project

Setting up a Maven Project Setting up a Maven Project This documentation describes how to set up a Maven project for CaptainCasa. Please use a CaptainCasa version higher than 20180102. There were quite some nice changes which were

More information

Developing with VMware vrealize Orchestrator

Developing with VMware vrealize Orchestrator Developing with VMware vrealize Orchestrator vrealize Orchestrator 7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a

More information

APEX Developer Guide. Sven van der Meer, Liam Fallon, John Keeney. Version SNAPSHOT, T11:44:57Z

APEX Developer Guide. Sven van der Meer, Liam Fallon, John Keeney. Version SNAPSHOT, T11:44:57Z APEX Developer Guide Sven van der Meer, Liam Fallon, John Keeney Version 2.1.0-SNAPSHOT, 2018-11-30T11:44:57Z Table of Contents 1. Build APEX from Source..................................................................................

More information

Getting started with Geomajas. Geomajas Developers and Geosparc

Getting started with Geomajas. Geomajas Developers and Geosparc Getting started with Geomajas Geomajas Developers and Geosparc Getting started with Geomajas by Geomajas Developers and Geosparc 1.12.0-SNAPSHOT Copyright 2010-2014 Geosparc nv Abstract Documentation for

More information

Using Eclipse Che IDE to develop your codebase. Red Hat Developers Documentation Team :54:11 UTC

Using Eclipse Che IDE to develop your codebase. Red Hat Developers Documentation Team :54:11 UTC Using Eclipse Che IDE to develop your codebase Red Hat Developers Documentation Team 2019-02-15 17:54:11 UTC Table of Contents Using Eclipse Che IDE to develop your codebase...............................................

More information

Patterns and Best Practices for dynamic OSGi Applications

Patterns and Best Practices for dynamic OSGi Applications Patterns and Best Practices for dynamic OSGi Applications Kai Tödter, Siemens Corporate Technology Gerd Wütherich, Freelancer Martin Lippert, akquinet it-agile GmbH Agenda» Dynamic OSGi applications» Basics»

More information

Inside JIRA scheme, everything can be configured, and it consists of. This section will guide you through JIRA Issue and it's types.

Inside JIRA scheme, everything can be configured, and it consists of. This section will guide you through JIRA Issue and it's types. JIRA Tutorial What is JIRA? JIRA is a tool developed by Australian Company Atlassian. It is used for bug tracking, issue tracking, and project management. The name "JIRA" is actually inherited from the

More information

Node-RED dashboard User Manual Getting started

Node-RED dashboard User Manual Getting started Node-RED dashboard User Manual Getting started https://nodered.org/ Node-RED is a visual wiring tool for the Internet of Things. A project of the JS Foundation (https://js.foundation/). Node-RED is a programming

More information

Developing with VMware vrealize Orchestrator. vrealize Orchestrator 7.3

Developing with VMware vrealize Orchestrator. vrealize Orchestrator 7.3 Developing with VMware vrealize Orchestrator vrealize Orchestrator 7.3 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

CIS 764 Tutorial: Log-in Application

CIS 764 Tutorial: Log-in Application CIS 764 Tutorial: Log-in Application Javier Ramos Rodriguez Purpose This tutorial shows you how to create a small web application that checks the user name and password. Overview This tutorial will show

More information

Skyway 6.3 How To: Web Services

Skyway 6.3 How To: Web Services Abstract Skyway 6.3 How To: Web Services Build a web user interface around existing Web Services Dave Meurer Copyright 2009 Skyway Software This tutorial details how to generate

More information

Developing Workflow Applications with Red Hat JBoss BPM Suite with exam (JB428)

Developing Workflow Applications with Red Hat JBoss BPM Suite with exam (JB428) Developing Workflow Applications with Red Hat JBoss BPM Suite with exam (JB428) DESCRIPTION: Course Overview Through hands-on labs, the student will learn the architecture and features of Red Hat JBoss

More information

Using Eclipse Che IDE to develop your codebase. Red Hat Developers Documentation Team :15:48 UTC

Using Eclipse Che IDE to develop your codebase. Red Hat Developers Documentation Team :15:48 UTC Using Eclipse Che IDE to develop your codebase Red Hat Developers Documentation Team 2018-12-20 14:15:48 UTC Table of Contents Using Eclipse Che IDE to develop your codebase...............................................

More information

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Table of Contents Lab 3 Using the Worklight Server and Environment Optimizations... 3-4 3.1 Building and Testing on the Android Platform...3-4

More information

DREAMFACTORY SOFTWARE INC. Snapshot User Guide. Product Usage and Best Practices Guide. By Sathyamoorthy Sridhar June 25, 2012

DREAMFACTORY SOFTWARE INC. Snapshot User Guide. Product Usage and Best Practices Guide. By Sathyamoorthy Sridhar June 25, 2012 DREAMFACTORY SOFTWARE INC Snapshot User Guide Product Usage and Best Practices Guide By Sathyamoorthy Sridhar June 25, 2012 This document describes Snapshot s features and provides the reader with notes

More information

Table of Contents. Table of Contents Job Manager for remote execution of QuantumATK scripts. A single remote machine

Table of Contents. Table of Contents Job Manager for remote execution of QuantumATK scripts. A single remote machine Table of Contents Table of Contents Job Manager for remote execution of QuantumATK scripts A single remote machine Settings Environment Resources Notifications Diagnostics Save and test the new machine

More information

TOP Server Client Connectivity Guide for National Instruments' LabVIEW

TOP Server Client Connectivity Guide for National Instruments' LabVIEW TOP Server Client Connectivity Guide for National Instruments' LabVIEW 1 Table of Contents 1. Overview and Requirements... 3 2. Setting TOP Server to Interactive Mode... 3 3. Creating a LabVIEW Project...

More information

Developing with VMware vrealize Orchestrator. vrealize Orchestrator 7.2

Developing with VMware vrealize Orchestrator. vrealize Orchestrator 7.2 Developing with VMware vrealize Orchestrator vrealize Orchestrator 7.2 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have comments about

More information

I Got My Mojo Workin'

I Got My Mojo Workin' I Got My Mojo Workin' Gary Murphy Hilbert Computing, Inc. http://www.hilbertinc.com/ glm@hilbertinc.com Gary Murphy I Got My Mojo Workin' Slide 1 Agenda Quick overview on using Maven 2 Key features and

More information