Home
last modified time | relevance | path

Searched refs:iLifetime (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libslp/javalib/com/sun/slp/
H A DServiceURL.java111 public ServiceURL(String URL, int iLifetime) in ServiceURL() argument
116 if ((iLifetime > LIFETIME_MAXIMUM) || in ServiceURL()
117 (iLifetime < LIFETIME_PERMANENT)) { in ServiceURL()
127 if (iLifetime == LIFETIME_PERMANENT) { in ServiceURL()
129 iLifetime = LIFETIME_MAXIMUM; in ServiceURL()
133 lifetime = iLifetime; in ServiceURL()
H A DServiceURLV1.java49 ServiceURLV1(String URL, int iLifetime) throws IllegalArgumentException { in ServiceURLV1() argument
50 super(URL, iLifetime); in ServiceURLV1()