Reviewed Javadoc.

This commit is contained in:
Christian P. MOMON 2023-05-09 15:01:06 +02:00
parent 5e7ec3e6f2
commit 00486a4710
19 changed files with 231 additions and 55 deletions

View file

@ -127,7 +127,7 @@
<copy file="resources/scripts/${product.name}.sh" todir="${dist.dir}/" overwrite="true" /> <copy file="resources/scripts/${product.name}.sh" todir="${dist.dir}/" overwrite="true" />
<chmod file="${dist.dir}/${product.name}.sh" perm="ugo+rx" /> <chmod file="${dist.dir}/${product.name}.sh" perm="ugo+rx" />
<copy file="LICENSE" todir="${dist.dir}/" overwrite="true" failonerror="false" /> <copy file="LICENSE" todir="${dist.dir}/" overwrite="true" failonerror="false" />
<copy file="README" todir="${dist.dir}/" overwrite="true" failonerror="false" /> <!--copy file="README" todir="${dist.dir}/" overwrite="true" failonerror="false" /-->
<copy file="README.md" todir="${dist.dir}/" overwrite="true" failonerror="false" /> <copy file="README.md" todir="${dist.dir}/" overwrite="true" failonerror="false" />
<!--copy file="scripts/log4j.properties" todir="${dist.dir}/" overwrite="true" /--> <!--copy file="scripts/log4j.properties" todir="${dist.dir}/" overwrite="true" /-->

View file

@ -143,6 +143,7 @@ public class Configuration extends PathPropertyList
* *
* @return the category file * @return the category file
* @throws StatoolInfosException * @throws StatoolInfosException
* the statool infos exception
*/ */
public File getCategoryFile() throws StatoolInfosException public File getCategoryFile() throws StatoolInfosException
{ {
@ -337,10 +338,11 @@ public class Configuration extends PathPropertyList
} }
/** /**
* Gets the htmlize input path. * Gets the htmlize input URL.
* *
* @return the htmlize input path * @return the htmlize input URL
* @throws MalformedURLException * @throws MalformedURLException
* the malformed URL exception
*/ */
public URL getHtmlizeInputURL() throws MalformedURLException public URL getHtmlizeInputURL() throws MalformedURLException
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2021-2022 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2021-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -39,16 +39,31 @@ public class DatabaseConfig
this.password = null; this.password = null;
} }
/**
* Gets the password.
*
* @return the password
*/
public String getPassword() public String getPassword()
{ {
return this.password; return this.password;
} }
/**
* Gets the url.
*
* @return the url
*/
public String getUrl() public String getUrl()
{ {
return this.url; return this.url;
} }
/**
* Gets the user.
*
* @return the user
*/
public String getUser() public String getUser()
{ {
return this.user; return this.user;
@ -76,16 +91,34 @@ public class DatabaseConfig
return result; return result;
} }
/**
* Sets the password.
*
* @param password
* the new password
*/
public void setPassword(final String password) public void setPassword(final String password)
{ {
this.password = password; this.password = password;
} }
/**
* Sets the url.
*
* @param url
* the new url
*/
public void setUrl(final String url) public void setUrl(final String url)
{ {
this.url = url; this.url = url;
} }
/**
* Sets the user.
*
* @param user
* the new user
*/
public void setUser(final String user) public void setUser(final String user)
{ {
this.user = user; this.user = user;

View file

@ -164,12 +164,10 @@ public class StatoolInfos
} }
/** /**
* Test http access log files. * List files.
* *
* @param configurationFile * @param configurationFile
* the configuration file * the configuration file
* @throws IOException
* @throws StatoolInfosException
*/ */
public static void listFiles(final File configurationFile) public static void listFiles(final File configurationFile)
{ {
@ -206,14 +204,10 @@ public class StatoolInfos
} }
/** /**
* List http access log files. * List files.
* *
* @param files * @param files
* the files * the files
* @throws StatoolInfosException
* the statool infos exception
* @throws IOException
* Signals that an I/O exception has occurred.
*/ */
public static void listFiles(final Files files) public static void listFiles(final Files files)
{ {
@ -234,7 +228,8 @@ public class StatoolInfos
* *
* @param source * @param source
* the source * the source
* @throws IOException * @param filter
* the filter
*/ */
public static void listIps(final Files source, final BotFilter filter) public static void listIps(final Files source, final BotFilter filter)
{ {

View file

@ -147,8 +147,11 @@ public class CrawlCache
} }
/** /**
* @return * Restore crawl journal.
*
* @return the crawl journal
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred.
*/ */
public CrawlJournal restoreCrawlJournal() throws IOException public CrawlJournal restoreCrawlJournal() throws IOException
{ {
@ -261,9 +264,13 @@ public class CrawlCache
} }
/** /**
* Restore to properties.
*
* @param url * @param url
* @return * the url
* @return the path properties
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred.
*/ */
public PathProperties restoreToProperties(final URL url) throws IOException public PathProperties restoreToProperties(final URL url) throws IOException
{ {
@ -446,10 +453,11 @@ public class CrawlCache
} }
/** /**
* Gets the journal URL. * Gets the crawl journal URL.
* *
* @return the journal URL * @return the crawl journal URL
* @throws MalformedURLException * @throws MalformedURLException
* the malformed URL exception
*/ */
public static URL getCrawlJournalURL() throws MalformedURLException public static URL getCrawlJournalURL() throws MalformedURLException
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2020-2021 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2020-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -80,6 +80,7 @@ public class BreadcrumbTrail extends ArrayList<Breadcrumb>
* the label * the label
* @param link * @param link
* the link * the link
* @return the breadcrumb trail
*/ */
public BreadcrumbTrail add(final String label, final String link) public BreadcrumbTrail add(final String label, final String link)
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2020-2022 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2020-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -47,9 +47,11 @@ public class CategoriesPage
/** /**
* Builds the. * Builds the.
* *
* @throws StatoolInfosException * @throws StatoolInfosException
* the statool infos exception
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred.
*/ */
public static void build() throws StatoolInfosException, IOException public static void build() throws StatoolInfosException, IOException
{ {

View file

@ -46,11 +46,6 @@ public class ExportsPage
/** /**
* Builds the. * Builds the.
*
* @throws StatoolInfosException
* the statool infos exception
* @throws IOException
* Signals that an I/O exception has occurred.
*/ */
public static void build() public static void build()
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2020-2022 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2020-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -18,8 +18,6 @@
*/ */
package fr.devinsy.statoolinfos.htmlize; package fr.devinsy.statoolinfos.htmlize;
import java.io.IOException;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
@ -42,14 +40,13 @@ public class FederationHeaderView
private static Logger logger = LoggerFactory.getLogger(FederationHeaderView.class); private static Logger logger = LoggerFactory.getLogger(FederationHeaderView.class);
/** /**
* Builds the. * Htmlize.
* *
* @param federation * @param federation
* the organization * the federation
* @return the string * @return the string
* @throws StatoolInfosException * @throws StatoolInfosException
* the statool infos exception * the statool infos exception
* @throws IOException
*/ */
public static String htmlize(final Federation federation) throws StatoolInfosException public static String htmlize(final Federation federation) throws StatoolInfosException
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2020-2021 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2020-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -135,6 +135,11 @@ public class BarChart
return result; return result;
} }
/**
* Gets the datasets.
*
* @return the datasets
*/
public BarChartDatasets getDatasets() public BarChartDatasets getDatasets()
{ {
return this.datasets; return this.datasets;
@ -165,21 +170,42 @@ public class BarChart
return this.title; return this.title;
} }
/**
* Checks if is animated.
*
* @return true, if is animated
*/
public boolean isAnimated() public boolean isAnimated()
{ {
return this.animated; return this.animated;
} }
/**
* Checks if is display title.
*
* @return true, if is display title
*/
public boolean isDisplayTitle() public boolean isDisplayTitle()
{ {
return this.displayTitle; return this.displayTitle;
} }
/**
* Checks if is stacked.
*
* @return true, if is stacked
*/
public boolean isStacked() public boolean isStacked()
{ {
return this.stacked; return this.stacked;
} }
/**
* Sets the animated.
*
* @param animated
* the new animated
*/
public void setAnimated(final boolean animated) public void setAnimated(final boolean animated)
{ {
this.animated = animated; this.animated = animated;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2020 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2020-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -49,31 +49,64 @@ public class BarChartData
this.color = color; this.color = color;
} }
/**
* Gets the color.
*
* @return the color
*/
public ChartColor getColor() public ChartColor getColor()
{ {
return this.color; return this.color;
} }
/**
* Gets the label.
*
* @return the label
*/
public String getLabel() public String getLabel()
{ {
return this.label; return this.label;
} }
/**
* Gets the value.
*
* @return the value
*/
public double getValue() public double getValue()
{ {
return this.value; return this.value;
} }
/**
* Sets the color.
*
* @param color
* the new color
*/
public void setColor(final ChartColor color) public void setColor(final ChartColor color)
{ {
this.color = color; this.color = color;
} }
/**
* Sets the label.
*
* @param label
* the new label
*/
public void setLabel(final String label) public void setLabel(final String label)
{ {
this.label = label; this.label = label;
} }
/**
* Sets the value.
*
* @param value
* the new value
*/
public void setValue(final double value) public void setValue(final double value)
{ {
this.value = value; this.value = value;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2020-2021 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2020-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -47,6 +47,11 @@ public class BarChartDataset extends ArrayList<BarChartData>
this.borderWidth = 1; this.borderWidth = 1;
} }
/**
* Gets the border width.
*
* @return the border width
*/
public int getBorderWidth() public int getBorderWidth()
{ {
return this.borderWidth; return this.borderWidth;
@ -72,6 +77,11 @@ public class BarChartDataset extends ArrayList<BarChartData>
return result; return result;
} }
/**
* Gets the name.
*
* @return the name
*/
public String getName() public String getName()
{ {
return this.name; return this.name;
@ -99,11 +109,23 @@ public class BarChartDataset extends ArrayList<BarChartData>
return result; return result;
} }
/**
* Sets the border width.
*
* @param borderWidth
* the new border width
*/
public void setBorderWidth(final int borderWidth) public void setBorderWidth(final int borderWidth)
{ {
this.borderWidth = borderWidth; this.borderWidth = borderWidth;
} }
/**
* Sets the name.
*
* @param name
* the new name
*/
public void setName(final String name) public void setName(final String name)
{ {
this.name = name; this.name = name;

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2020 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2020-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -42,21 +42,43 @@ public class DateCount
this.count = count; this.count = count;
} }
/**
* Gets the count.
*
* @return the count
*/
public long getCount() public long getCount()
{ {
return this.count; return this.count;
} }
/**
* Gets the date.
*
* @return the date
*/
public String getDate() public String getDate()
{ {
return this.date; return this.date;
} }
/**
* Sets the count.
*
* @param count
* the new count
*/
public void setCount(final long count) public void setCount(final long count)
{ {
this.count = count; this.count = count;
} }
/**
* Sets the date.
*
* @param date
* the new date
*/
public void setDate(final String date) public void setDate(final String date)
{ {
if (StringUtils.isBlank(date)) if (StringUtils.isBlank(date))
@ -68,5 +90,4 @@ public class DateCount
this.date = date; this.date = date;
} }
} }
} }

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2021 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2021-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -53,6 +53,7 @@ public class CSVFile
* @param source * @param source
* the source * the source
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred.
*/ */
public static void save(final File file, final Organizations source) throws IOException public static void save(final File file, final Organizations source) throws IOException
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2021 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2021-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -64,9 +64,9 @@ public class CSVWriter implements SpreadsheetWriter
/** /**
* Close. * Close.
*
* @throws FileNotFoundException
* *
* @throws FileNotFoundException
* the file not found exception
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred. * Signals that an I/O exception has occurred.
*/ */
@ -138,8 +138,6 @@ public class CSVWriter implements SpreadsheetWriter
/** /**
* Write end row. * Write end row.
*
* @throws IOException
*/ */
@Override @Override
public void writeEndRow() public void writeEndRow()

View file

@ -99,8 +99,6 @@ public class MinetestLogAnalyzer
* the file * the file
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred. * Signals that an I/O exception has occurred.
* @throws StatoolInfosException
* the statool infos exception
*/ */
public void probe(final File file) throws IOException public void probe(final File file) throws IOException
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2021-2022 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2021-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -105,8 +105,6 @@ public class MumbleLogAnalyzer
* the file * the file
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred. * Signals that an I/O exception has occurred.
* @throws StatoolInfosException
* the statool infos exception
*/ */
public void probe(final File file) throws IOException public void probe(final File file) throws IOException
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2021-2022 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2021-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -25,7 +25,6 @@ import org.apache.commons.io.FileUtils;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import fr.devinsy.statoolinfos.core.StatoolInfosException;
import fr.devinsy.statoolinfos.metrics.PathCounters; import fr.devinsy.statoolinfos.metrics.PathCounters;
import fr.devinsy.statoolinfos.util.FilesUtils; import fr.devinsy.statoolinfos.util.FilesUtils;
import fr.devinsy.strings.StringList; import fr.devinsy.strings.StringList;
@ -52,8 +51,6 @@ public class DatafilesProber
* @return the path counters * @return the path counters
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred. * Signals that an I/O exception has occurred.
* @throws StatoolInfosException
* the statool infos exception
*/ */
public static PathCounters probe(final File directory) throws IOException public static PathCounters probe(final File directory) throws IOException
{ {
@ -69,12 +66,12 @@ public class DatafilesProber
* Probe. * Probe.
* *
* @param directory * @param directory
* the data directory * the directory
* @param prefix
* the prefix
* @return the path counters * @return the path counters
* @throws IOException * @throws IOException
* Signals that an I/O exception has occurred. * Signals that an I/O exception has occurred.
* @throws StatoolInfosException
* the statool infos exception
*/ */
public static PathCounters probe(final File directory, final String prefix) throws IOException public static PathCounters probe(final File directory, final String prefix) throws IOException
{ {

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 2020 Christian Pierre MOMON <christian@momon.org> * Copyright (C) 2020-2023 Christian Pierre MOMON <christian@momon.org>
* *
* This file is part of StatoolInfos, simple service statistics tool. * This file is part of StatoolInfos, simple service statistics tool.
* *
@ -46,26 +46,51 @@ public class CategoryStat
this.visitCount = 0; this.visitCount = 0;
} }
/**
* Gets the category.
*
* @return the category
*/
public Category getCategory() public Category getCategory()
{ {
return this.category; return this.category;
} }
/**
* Gets the organization count.
*
* @return the organization count
*/
public int getOrganizationCount() public int getOrganizationCount()
{ {
return this.organizationCount; return this.organizationCount;
} }
/**
* Gets the service count.
*
* @return the service count
*/
public int getServiceCount() public int getServiceCount()
{ {
return this.serviceCount; return this.serviceCount;
} }
/**
* Gets the user count.
*
* @return the user count
*/
public int getUserCount() public int getUserCount()
{ {
return this.userCount; return this.userCount;
} }
/**
* Gets the visit count.
*
* @return the visit count
*/
public int getVisitCount() public int getVisitCount()
{ {
return this.visitCount; return this.visitCount;
@ -125,21 +150,45 @@ public class CategoryStat
this.visitCount += value; this.visitCount += value;
} }
/**
* Sets the organization count.
*
* @param organizationCount
* the new organization count
*/
public void setOrganizationCount(final int organizationCount) public void setOrganizationCount(final int organizationCount)
{ {
this.organizationCount = organizationCount; this.organizationCount = organizationCount;
} }
/**
* Sets the service count.
*
* @param serviceCount
* the new service count
*/
public void setServiceCount(final int serviceCount) public void setServiceCount(final int serviceCount)
{ {
this.serviceCount = serviceCount; this.serviceCount = serviceCount;
} }
/**
* Sets the user count.
*
* @param userCount
* the new user count
*/
public void setUserCount(final int userCount) public void setUserCount(final int userCount)
{ {
this.userCount = userCount; this.userCount = userCount;
} }
/**
* Sets the visit count.
*
* @param visitCount
* the new visit count
*/
public void setVisitCount(final int visitCount) public void setVisitCount(final int visitCount)
{ {
this.visitCount = visitCount; this.visitCount = visitCount;