only fixed tag for javadoc validation

This commit is contained in:
Francesco Mangiacrapa 2019-10-04 17:03:24 +02:00
parent 07f1664762
commit f159e1b855
2 changed files with 3 additions and 9 deletions

View File

@ -31,9 +31,6 @@ public class UriResolverServletContextListener implements ServletContextListener
private static ServletContext servletContext; private static ServletContext servletContext;
/* (non-Javadoc)
* @see javax.servlet.ServletContextListener#contextInitialized(javax.servlet.ServletContextEvent)
*/
@Override @Override
public void contextInitialized(ServletContextEvent event) { public void contextInitialized(ServletContextEvent event) {
@ -41,15 +38,11 @@ public class UriResolverServletContextListener implements ServletContextListener
log.info("Context Initialized at context path: "+servletContext.getContextPath()); log.info("Context Initialized at context path: "+servletContext.getContextPath());
} }
/* (non-Javadoc)
* @see javax.servlet.ServletContextListener#contextDestroyed(javax.servlet.ServletContextEvent)
*/
@Override @Override
public void contextDestroyed(ServletContextEvent event) { public void contextDestroyed(ServletContextEvent event) {
// Perform action during application's shutdown // Perform action during application's shutdown
} }
/** /**
* Gets the servlet context. * Gets the servlet context.
* *

View File

@ -36,12 +36,13 @@ public class KnimeCreateResolver {
private static String helpURI = "https://gcube.wiki.gcube-system.org/gcube/URI_Resolver#KNIME_Resolver"; private static String helpURI = "https://gcube.wiki.gcube-system.org/gcube/URI_Resolver#KNIME_Resolver";
/** /**
* Post catalogue. * Creates the knime URL.
* *
* @param req the req * @param req the req
* @param body the body
* @return the response * @return the response
* @throws WebApplicationException the web application exception
*/ */
@POST @POST
@Path("/create") @Path("/create")