Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix creation of TMs
Browse files Browse the repository at this point in the history
  • Loading branch information
seanf committed Aug 16, 2013
1 parent b2fb264 commit 6fdf99f
Showing 1 changed file with 2 additions and 3 deletions.
Expand Up @@ -58,7 +58,6 @@
@Name("translationMemoryAction")
@Restrict("#{s:hasRole('admin')}")
@Slf4j
@Scope(ScopeType.PAGE)
public class TranslationMemoryAction extends EntityHome<TransMemory>
{
@In
Expand All @@ -78,13 +77,13 @@ public class TranslationMemoryAction extends EntityHome<TransMemory>
/**
* Stores the last process handle, in page scope (ie for this user).
*/
@In(scope=ScopeType.PAGE, required=false)
@Out(scope=ScopeType.PAGE, required=false)
private ProcessHandle myProcessHandle;

/**
* Stores the last process error, but only for the duration of the event.
*/
@In(scope=ScopeType.EVENT, required=false)
@Out(scope=ScopeType.EVENT, required=false)
private String myProcessError;

public List<TransMemory> getAllTranslationMemories()
Expand Down

0 comments on commit 6fdf99f

Please sign in to comment.