Package edu.uga.cs.fluxbuster.clustering

Examples of edu.uga.cs.fluxbuster.clustering.StoredDomainCluster


   * @return this list of clusters
   */
  private List<StoredDomainCluster> getClusters(Date logdate, List<Integer> clusterIds){
    List<StoredDomainCluster> retval = new ArrayList<StoredDomainCluster>();
    for(Integer clusterId : clusterIds){
      StoredDomainCluster cluster = getCluster(logdate, clusterId);
      if(cluster != null){
        retval.add(cluster);
      }
    }
    return retval;
View Full Code Here


   */
  @Override
  public StoredDomainCluster getCluster(Date logdate, int clusterId){
    try {
      List<Double> features = getClusterFeatures(logdate, clusterId);
      return new StoredDomainCluster(clusterId, logdate, getClusterDomains(logdate, clusterId),
          getClusterIps(logdate, clusterId), getClusterClass(logdate, clusterId),
          features.get(0), features.get(1), features.get(2), features.get(3),
          features.get(4), features.get(5));
    } catch (SQLException e) {
      if(log.isErrorEnabled()){
View Full Code Here

TOP

Related Classes of edu.uga.cs.fluxbuster.clustering.StoredDomainCluster

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.