Here you can find the source of getFiveMinuteCronByHostId(long hostId)
public static String getFiveMinuteCronByHostId(long hostId)
//package com.java2s; //License from project: Apache License public class Main { public static String getFiveMinuteCronByHostId(long hostId) { String baseCron = (hostId % 50) + " 0/5 * ? * *"; return baseCron; }/*from w w w .jav a 2 s . c om*/ }