com.alachisoft.ncache.licensing.ExpirationStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-activate Show documentation
Show all versions of nc-activate Show documentation
internal package of Alachisoft.
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.alachisoft.ncache.licensing;
/**
* @author usama_tariq
*/
public enum ExpirationStatus
{
InEvaluation,
Licensed,
InGracePeriod,
Expired,
ServerOnly;
public int getValue()
{
return this.ordinal();
}
public static ExpirationStatus forValue(int value)
{
return values()[value];
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy