Skip to content
Permalink
ff84ec79dd
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
17 lines (13 sloc) 428 Bytes
package com.lmco.spectrum.systemnavigation3d.service;
import org.springframework.stereotype.Service;
@Service
public class TransformationService {
// TODO make functional
// TODO consider types of transformations we need to make
// accept list of transformation options?
// accept GEIA dtos and infer transformations?
// pending
public String transform(String smgXml){
return smgXml;
}
}