1 5 package org.exoplatform.services.organization.impl; 6 7 import java.util.Collection ; 8 14 public class UserBackupData { 15 private UserImpl user ; 16 private UserProfileImpl userProfile ; 17 private Collection memberships ; 18 19 public UserBackupData(UserImpl u, UserProfileImpl up, Collection mbs) { 20 user = u ; 21 userProfile = up ; 22 memberships = mbs ; 23 } 24 25 public UserImpl getUser() { return user ; } 26 27 public UserProfileImpl getUserProfile() { return userProfile ; } 28 29 public Collection getMemberships() { return memberships ;} 30 } | Popular Tags |