removed obsolete maven plugin for javadoc

This commit is contained in:
Massimiliano Assante 2022-12-20 10:34:49 +01:00
parent 8ac4057526
commit 6465e88378
2 changed files with 3 additions and 22 deletions

18
pom.xml
View File

@ -135,24 +135,6 @@
<skipTests>true</skipTests> <skipTests>true</skipTests>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
<additionalJOption>-Xdoclint:none</additionalJOption>
</configuration>
<version>3.1.0</version>
<executions>
<execution>
<id>generate-doc</id>
<phase>install</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>

View File

@ -304,14 +304,13 @@ public interface DatabookStore {
*/ */
RangeFeeds getRecentFeedsByVREAndRange(String vreid, int from, int quantity) throws PrivacyLevelTypeNotFoundException, FeedTypeNotFoundException, ColumnNameNotFoundException, FeedIDNotFoundException; RangeFeeds getRecentFeedsByVREAndRange(String vreid, int from, int quantity) throws PrivacyLevelTypeNotFoundException, FeedTypeNotFoundException, ColumnNameNotFoundException, FeedIDNotFoundException;
/** /**
* return the most recent posts for this vre up to quantity param and the last index of the feeds in the timeline * return the most recent posts for this vre up to quantity param and the last index of the posts in the timeline
* lastReturnedFeedTimelineIndex is usuful to know from where to start the range the second time you ask * lastReturnedPostTimelineIndex is useful to know from where to start the range the next time you ask, because there are deletions
* because there are deletions
* *
* @param vreid VRES identifier * @param vreid VRES identifier
* @param from the range start (most recent feeds for this vre) has to be greater than 0 * @param from the range start (most recent feeds for this vre) has to be greater than 0
* @param quantity the number of most recent feeds for this vre starting from "from" param * @param quantity the number of most recent feeds for this vre starting from "from" param
* @return a <class>lastReturnedFeedTimelineIndex</class> containing of most recent feeds for this vre * @return a <class>RangePosts</class> containing of most recent feeds for this vre
* @throws FeedTypeNotFoundException * @throws FeedTypeNotFoundException
* @throws PrivacyLevelTypeNotFoundException * @throws PrivacyLevelTypeNotFoundException
* @throws ColumnNameNotFoundException * @throws ColumnNameNotFoundException