LFPlayerScopeRule lfPlayerScopeRule) {
if (lfPlayerScopeRule instanceof LFPlayerScopeRuleImpl) {
return lfPlayerScopeRule;
}
LFPlayerScopeRuleImpl lfPlayerScopeRuleImpl = new LFPlayerScopeRuleImpl();
lfPlayerScopeRuleImpl.setNew(lfPlayerScopeRule.isNew());
lfPlayerScopeRuleImpl.setPrimaryKey(lfPlayerScopeRule.getPrimaryKey());
lfPlayerScopeRuleImpl.setId(lfPlayerScopeRule.getId());
lfPlayerScopeRuleImpl.setPlayerID(lfPlayerScopeRule.getPlayerID());
lfPlayerScopeRuleImpl.setScope(lfPlayerScopeRule.getScope());
return lfPlayerScopeRuleImpl;
}