Tidy up [skip ci]

This commit is contained in:
alandavis
2022-08-03 11:56:12 +01:00
parent 8075a1edd6
commit 5a856a0018
4 changed files with 5 additions and 14 deletions

View File

@@ -36,9 +36,7 @@ import javax.servlet.http.HttpServletResponse;
import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; import org.springframework.web.servlet.handler.HandlerInterceptorAdapter;
/** /**
* TransformInterceptor * Cleans up temporary files in transform requests that upload the content and download the result.
* <br/>
* Handles ThreadLocal Log entries for each request.
*/ */
public class TransformInterceptor extends HandlerInterceptorAdapter public class TransformInterceptor extends HandlerInterceptorAdapter
{ {

View File

@@ -44,8 +44,8 @@ import javax.jms.Message;
import javax.jms.Session; import javax.jms.Session;
/** /**
* TODO: Duplicated from the Router * Copied from the t-router. We would need to create a common dependency between t-engine base and t-router that
* Custom wrapper over MappingJackson2MessageConverter for T-Request/T-Reply objects. * knows about jms to remove this duplication.
* *
* @author Cezar Leahu * @author Cezar Leahu
*/ */

View File

@@ -36,10 +36,8 @@ import org.springframework.jms.core.JmsTemplate;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
/** /**
* TODO: Duplicated from the Router * Copied from the t-router. We would need to create a common dependency between t-engine base and t-router that
* TransformReplySender Bean * knows about jms to remove this duplication.
* <p/>
* JMS message sender/publisher
* *
* @author Cezar Leahu * @author Cezar Leahu
*/ */

View File

@@ -225,11 +225,6 @@ public abstract class AbstractMetadataExtractorEmbedder implements CustomTransfo
return Collections.unmodifiableMap(extractMapping.get()); return Collections.unmodifiableMap(extractMapping.get());
} }
public Map<String, Set<String>> getEmbedMapping()
{
return Collections.unmodifiableMap(embedMapping);
}
/** /**
* Based on AbstractMappingMetadataExtracter#getDefaultMapping. * Based on AbstractMappingMetadataExtracter#getDefaultMapping.
* *