Setting Up Your Environment

You can use the IntelliJ IDEA to create a custom operator for Team Studio. Prepare the development environment to hold your project.

Perform this task in IntelliJ on your development computer.

Prerequisites

  • You must have installed all required tools and sample operator files for your version.
  • You must have installed the IntelliJ IDEA to hold your custom operator development project.

Procedure

  1. Open the PluginTemplateProject in IntelliJ.
  2. Create a package in PluginTemplateProject/src/main/scala to hold your operator code.

    Use your company's naming scheme for packages if you have one. We called our package com.mycompany.plugins.

  3. Within the new package, create a Scala file called MyColumnFilter.
    Note: No two operators can have the same class path: that is, the same package name + class name. Be sure that you and your team use distinct naming for each operator to avoid conflicts.

    Your code should look like this so far:

    package com.mycompany.plugins
     
    class MyColumnFilter {
     
    }