All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.chen0040.sparkml.recommender.FriendLinkRecommendation Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.github.chen0040.sparkml.recommender;


import lombok.Getter;
import lombok.Setter;

import java.util.HashSet;
import java.util.Set;


/**
 * Created by xschen on 6/6/2017.
 */
@Getter
@Setter
public class FriendLinkRecommendation {
   private String person1;
   private String person2;
   private Set commonFriends = new HashSet<>();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy