Skip to content

Commit

Permalink
function-web checkstyle fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
niravassar committed Apr 17, 2018
1 parent 5e9e1e4 commit 9a4e3d1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package io.micronaut.function.web;

import io.micronaut.context.ExecutionHandleLocator;
Expand Down Expand Up @@ -50,7 +51,7 @@
import java.util.stream.Stream;

/**
* Process methods for {@link FunctionBean} instances
* Process methods for {@link FunctionBean} instances.
*
* @author Graeme Rocher
* @since 1.0
Expand All @@ -65,6 +66,14 @@ public class AnnotatedFunctionRouteBuilder
private final String contextPath;
private final Map<String, URI> availableFunctions = new ConcurrentHashMap<>();

/**
* Constructor.
* @param executionHandleLocator executionHandleLocator
* @param uriNamingStrategy uriNamingStrategy
* @param conversionService conversionService
* @param codecRegistry codecRegistry
* @param contextPath contextPath
*/
public AnnotatedFunctionRouteBuilder(
ExecutionHandleLocator executionHandleLocator,
UriNamingStrategy uriNamingStrategy,
Expand Down Expand Up @@ -125,7 +134,7 @@ public void process(BeanDefinition<?> beanDefinition, ExecutableMethod<?, ?> met
}

/**
* A map of available functions with the key being the function name and the value being the function URI
* A map of available functions with the key being the function name and the value being the function URI.
*
* @return A map of functions
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* limitations under the License.
*/
/**
* <p>Classes to support exposing {@link io.micronaut.function.FunctionBean} instances over the web</p>
* <p>Classes to support exposing {@link io.micronaut.function.FunctionBean} instances over the web</p>.
*
* @author Graeme Rocher
* @since 1.0
*/
package io.micronaut.function.web;
package io.micronaut.function.web;

0 comments on commit 9a4e3d1

Please sign in to comment.