Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Current »

The primary task when creating a genOSLC integration is to provide an implementation for the IToolAdapter java interface. An example implementation is provided see genOSLC Example Application for more details.

The implementation of the IToolAdapter must be a Spring Boot Bean.

For example:

@Service // a Spring Boot Service is one type of Bean
public class ExampleToolAdapter implements IToolAdapter {
   
    @Autowired
    public ExampleToolAdapter(final Environment environment) {
    }

// ... 
}

Implementing IToolAdapter interface requires the creation of various kinds of Tool Adapter Objects (or TAOs). These TAOs represent various kinds of OSLC objects: service providers, components, local configurations.

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.