Package net.aufdemrand.denizen.flags.FlagManager

Examples of net.aufdemrand.denizen.flags.FlagManager.Flag.expiration()


        // Set flag duration
        if (flag.StillValid() && duration != null && duration.getSeconds() > 0)
            flag.setExpiration(System.currentTimeMillis()
                    + Double.valueOf(duration.getSeconds() * 1000).longValue());

        else if (flag.StillValid() && flag.expiration().getMillis() != 0L) flag.setExpiration(0L);
    }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.