All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.enterprise.deployment.TimeoutValueDescriptor Maven / Gradle / Ivy

There is a newer version: 10.0-b28
Show newest version
package com.sun.enterprise.deployment;

import java.util.concurrent.TimeUnit;

public class TimeoutValueDescriptor extends Descriptor {


    private long value;
    private TimeUnit unit;

    public void setValue(long l) {
        value = l;
    }

    public void setUnit(TimeUnit t) {
        unit = t;
    }

    public long getValue() {
        return value;
    }

    public TimeUnit getUnit() {
        return unit;
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy