@@ -229,7 +229,6 @@ public static SimpleHttpServer create(final int port, final int backlog) throws
229229 *
230230 * @see HttpContext
231231 * @see #createContext(String, HttpHandler)
232- * @see #createContext(String, SimpleHttpHandler)
233232 * @see #removeContext(String)
234233 * @see #removeContext(HttpContext)
235234 * @since 02.00.00
@@ -249,34 +248,13 @@ public static SimpleHttpServer create(final int port, final int backlog) throws
249248 * @see HttpContext
250249 * @see HttpHandler
251250 * @see #createContext(String)
252- * @see #createContext(String, SimpleHttpHandler)
253251 * @see #removeContext(String)
254252 * @see #removeContext(HttpContext)
255253 * @since 02.00.00
256254 * @author Ktt Development
257255 */
258256 public abstract HttpContext createContext (final String context , final HttpHandler handler );
259257
260- /**
261- * Creates a context mapped to a specific {@link HttpHandler}.
262- *
263- * @param context the context
264- * @param handler the handler
265- * @return the http context associated with the context
266- * @throws IllegalArgumentException if the context is invalid or taken
267- * @throws NullPointerException if the context is null
268- *
269- * @see HttpContext
270- * @see SimpleHttpHandler
271- * @see #createContext(String)
272- * @see #createContext(String, HttpHandler)
273- * @see #removeContext(String)
274- * @see #removeContext(HttpContext)
275- * @since 03.03.00
276- * @author Ktt Development
277- */
278- public abstract HttpContext createContext (final String context , final SimpleHttpHandler handler );
279-
280258 //
281259
282260 /**
@@ -291,7 +269,6 @@ public static SimpleHttpServer create(final int port, final int backlog) throws
291269 * @see HttpContext
292270 * @see Authenticator
293271 * @see #createContext(String, HttpHandler, Authenticator)
294- * @see #createContext(String, SimpleHttpHandler, Authenticator)
295272 * @see #removeContext(String)
296273 * @see #removeContext(HttpContext)
297274 * @since 03.03.00
@@ -313,36 +290,13 @@ public static SimpleHttpServer create(final int port, final int backlog) throws
313290 * @see HttpHandler
314291 * @see Authenticator
315292 * @see #createContext(String, Authenticator)
316- * @see #createContext(String, SimpleHttpHandler, Authenticator)
317293 * @see #removeContext(String)
318294 * @see #removeContext(HttpContext)
319295 * @since 03.03.00
320296 * @author Ktt Development
321297 */
322298 public abstract HttpContext createContext (final String context , final HttpHandler handler , final Authenticator authenticator );
323299
324- /**
325- * Creates a context mapped to a specific {@link HttpContext} with an {@link Authenticator}.
326- *
327- * @param context the context
328- * @param handler the handler
329- * @param authenticator authenticator
330- * @return the http context associated with the context
331- * @throws IllegalArgumentException if the context is invalid or taken
332- * @throws NullPointerException if the context is null
333- *
334- * @see HttpContext
335- * @see SimpleHttpHandler
336- * @see Authenticator
337- * @see #createContext(String, Authenticator)
338- * @see #createContext(String, HttpHandler, Authenticator)
339- * @see #removeContext(String)
340- * @see #removeContext(HttpContext)
341- * @since 03.03.00
342- * @author Ktt Development
343- */
344- public abstract HttpContext createContext (final String context , final SimpleHttpHandler handler , final Authenticator authenticator );
345-
346300//
347301
348302 /**
0 commit comments