Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

public class Main {
    public static boolean isBeyondOneWeek(long timestamp) {
        return Math.abs((getServerTime() - timestamp)) > 7 * 24 * 60 * 60 * 1000;
    }

    public static long getServerTime() {
        return System.currentTimeMillis();
    }
}