Commit 769200c1 authored by Andy Wilkinson's avatar Andy Wilkinson

Merge branch '1.2.x'

parents 38b06ceb 78a00b16
/* /*
* Copyright 2012-2014 the original author or authors. * Copyright 2012-2015 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -33,14 +33,14 @@ public interface EmbeddedServletContainer { ...@@ -33,14 +33,14 @@ public interface EmbeddedServletContainer {
/** /**
* Starts the embedded servlet container. Calling this method on an already started * Starts the embedded servlet container. Calling this method on an already started
* container has no effect. * container has no effect.
* @throws EmbeddedServletContainerException of the container cannot be stopped * @throws EmbeddedServletContainerException if the container cannot be started
*/ */
void start() throws EmbeddedServletContainerException; void start() throws EmbeddedServletContainerException;
/** /**
* Stops the embedded servlet container. Calling this method on an already stopped * Stops the embedded servlet container. Calling this method on an already stopped
* container has no effect. * container has no effect.
* @throws EmbeddedServletContainerException of the container cannot be stopped * @throws EmbeddedServletContainerException if the container cannot be stopped
*/ */
void stop() throws EmbeddedServletContainerException; void stop() throws EmbeddedServletContainerException;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment