Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![License](http://img.shields.io/:license-apache-blue.svg)
[![Gitter](https://badges.gitter.im/davidsowerby/krail.svg)](https://gitter.im/davidsowerby/krail?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
[![Build Status](https://travis-ci.org/davidsowerby/krailkrail.svg?branch=master)](https://travis-ci.org/davidsowerby/krail)
[![Build Status](https://travis-ci.org/davidsowerby/krail.svg?branch=master)](https://travis-ci.org/davidsowerby/krail)
[![Coverage Status](https://coveralls.io/repos/github/davidsowerby/krail/badge.svg?branch=master)](https://coveralls.io/github/davidsowerby/krail?branch=master)

Krail provides a framework for rapid Java web development by combining Vaadin, Guice, Apache Shiro, Apache Commons Configuration and others. For more information, see the comprehensive [Tutorial](http://krail.readthedocs.org/en/master/), which also makes a reasonable demo. (You can clone directly from the [Tutorial repo](https://github.com/davidsowerby/krail-tutorial))
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/uk/q3c/krail/core/config/ConfigKeys.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
*/
public class ConfigKeys {

private ConfigKeys(){}

public static final String SITEMAP_SOURCES = "sitemap.sources";
public static final String SERVER_PUSH_ENABLED = "server.pushEnabled";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
*/
public class KrailPersistenceUnitHelper {

private KrailPersistenceUnitHelper(){}

public static final String PROVIDE_PATTERN_DAO = "ProvidePatternDao";
public static final String PROVIDE_OPTION_DAO = "ProvideOptionDao";

Expand Down
1 change: 1 addition & 0 deletions src/main/java/uk/q3c/util/ID.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
*/
public class ID {

private ID(){}

public static String getId(@Nonnull Optional<?> qualifier, Object... components) {
checkNotNull(qualifier);
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/uk/q3c/util/MessageFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@
* @author David Sowerby 10 Feb 2013
*/
public class MessageFormat {

private MessageFormat(){}

private static Logger log = LoggerFactory.getLogger(MessageFormat.class);

/**
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/uk/q3c/util/ReflectionUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@

public class ReflectionUtils {

private ReflectionUtils(){}

public static Set<Class<?>> allInterfaces(Class<?> clazz) {
Set<Class<?>> allInterfaces = new HashSet<>();
Class<?> classToCheck = clazz;
Expand Down