[Beepcore-java-commits] CVS: beepcore-java/src/org/beepcore/beep/core Session.java,1.17,1.18
Status: Beta
Brought to you by:
huston
|
From: Huston F. <hu...@us...> - 2001-11-10 03:58:48
|
Update of /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core
In directory usw-pr-cvs1:/tmp/cvs-serv23193/src/org/beepcore/beep/core
Modified Files:
Session.java
Log Message:
Changed getPeerSupportedProfiles to return a collection of URIs intead of Elements
Index: Session.java
===================================================================
RCS file: /cvsroot/beepcore-java/beepcore-java/src/org/beepcore/beep/core/Session.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** Session.java 2001/11/08 05:51:34 1.17
--- Session.java 2001/11/10 03:58:45 1.18
***************
*** 24,27 ****
--- 24,28 ----
import java.util.Iterator;
import java.util.Collection;
+ import java.util.Collections;
import java.util.LinkedList;
***************
*** 146,150 ****
private SessionCredential localCredential, peerCredential;
private SessionTuningProperties tuningProperties = null;
! private Collection peerSupportedProfiles;
private boolean overflow;
private boolean allowChannelWindowUpdates;
--- 147,151 ----
private SessionCredential localCredential, peerCredential;
private SessionTuningProperties tuningProperties = null;
! private Collection peerSupportedProfiles = null;
private boolean overflow;
private boolean allowChannelWindowUpdates;
***************
*** 1542,1549 ****
}
! profileList.add(i, profile);
}
! Session.this.peerSupportedProfiles = profileList;
}
--- 1543,1551 ----
}
! profileList.add(i, uri);
}
! Session.this.peerSupportedProfiles =
! Collections.unmodifiableCollection(profileList);
}
|