示例#1
0
 /**
  * Send the user's startup plugin
  *
  * @param source the user
  */
 private void getStartupPlugin(ObjectConnection oc, String source) {
   try {
     UserConcept user = store.getUserStore().getUser(source);
     oc.write(user.getStartupPlugin());
   } catch (Exception e) {
   }
 }