/
IToolAdapter Implementation
IToolAdapter Implementation
The primary task when creating a genOSLC integration is to provide an implementation for the IToolAdapter java interface. An example implementation is provided see https://smartfacts.atlassian.net/wiki/pages/createpage.action?spaceKey=SD&title=genOSLC%20Example%20Application 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) {
}
// ...
}
Ā
Ā
Ā
Related content
genOSLC Java Framework
genOSLC Java Framework
More like this
genOSLC Integration Components
genOSLC Integration Components
More like this
genOSLC Steps to build an Integration
genOSLC Steps to build an Integration
More like this
Tool Adapter Objects
Tool Adapter Objects
More like this
genOSLC Metamodel
genOSLC Metamodel
More like this
Deploying the OSLC Connector for Innovator
Deploying the OSLC Connector for Innovator
More like this