- Timestamp:
- 06/11/20 16:34:45 (4 years ago)
- Location:
- src/main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/geniusweb/profilesserver/websocket/GetProfileSocket.java
r8 r13 48 48 * the minimum utility bid is included. The other bids are picked at random. 49 49 * This filtering mechanism only works if the profile is {@link LinearAdditive} 50 * space. 50 * space. The reservation bid is passed through unmodified. 51 51 */ 52 52 @ServerEndpoint("/websocket/get/{domain}/{profile}") … … 97 97 } 98 98 99 /** 100 * 101 * @param prof1 102 * @return a filtered profile. If "partial" is not set, this returns the 103 * given profile unmodified. If partial is set, a 104 * DefaultPartialOrdering with the requested number of bids are 105 * selected 106 */ 99 107 private Profile filter(Profile prof1) { 100 108 String partial = params.get("partial"); -
src/main/webapp/domainsrepo/jobs/jobs1.json
r1 r13 115 115 "reservationBid": { 116 116 "issuevalues": { 117 "salary": "3 00",117 "salary": "3500", 118 118 "fte": "0.8", 119 "work from home": " 0",119 "work from home": "1", 120 120 "lease car": "no", 121 "permanent contract": " no",121 "permanent contract": "yes", 122 122 "career development opportunities": "medium" 123 123 } -
src/main/webapp/domainsrepo/jobs/jobs2.json
r1 r13 115 115 "reservationBid": { 116 116 "issuevalues": { 117 "salary": "300 ",117 "salary": "3000", 118 118 "fte": "0.8", 119 119 "work from home": "0",
Note:
See TracChangeset
for help on using the changeset viewer.