Class StorageFormatUserRewriter.RewriteResult
- java.lang.Object
-
- com.atlassian.confluence.importexport.impl.StorageFormatUserRewriter.RewriteResult
-
- Enclosing class:
- StorageFormatUserRewriter
public static class StorageFormatUserRewriter.RewriteResult extends Object
Represents the results of the content rewrite operation.
-
-
Constructor Summary
Constructors Constructor Description RewriteResult(String rewrittenContent, Map<com.atlassian.sal.api.user.UserKey,com.atlassian.sal.api.user.UserKey> userKeyTranslations)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<com.atlassian.sal.api.user.UserKey>
getOriginalUserKeys()
String
getRewrittenContent()
Set<com.atlassian.sal.api.user.UserKey>
getUntranslatedUserKeys()
boolean
wasUserKeyTranslated(com.atlassian.sal.api.user.UserKey userKey)
boolean
wereAnyUserKeysNotTranslated()
boolean
wereAnyUserKeysTranslated()
-
-
-
Method Detail
-
getUntranslatedUserKeys
public Set<com.atlassian.sal.api.user.UserKey> getUntranslatedUserKeys()
-
wereAnyUserKeysTranslated
public boolean wereAnyUserKeysTranslated()
-
wereAnyUserKeysNotTranslated
public boolean wereAnyUserKeysNotTranslated()
-
getOriginalUserKeys
public Set<com.atlassian.sal.api.user.UserKey> getOriginalUserKeys()
-
wasUserKeyTranslated
public boolean wasUserKeyTranslated(com.atlassian.sal.api.user.UserKey userKey)
-
getRewrittenContent
public String getRewrittenContent()
-
-