mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-03-06 20:30:52 +01:00
update java doc since version
This commit is contained in:
@@ -60,7 +60,7 @@ public enum Command
|
||||
MODIFICATIONS, MERGE, DIFF_RESULT, BRANCH, MODIFY,
|
||||
|
||||
/**
|
||||
* @since 2.8.0
|
||||
* @since 2.10.0
|
||||
*/
|
||||
LOOKUP;
|
||||
}
|
||||
|
||||
@@ -32,7 +32,7 @@ import java.util.Optional;
|
||||
/**
|
||||
* The lookup command executes a lookup for additional repository information.
|
||||
*
|
||||
* @since 2.8.0
|
||||
* @since 2.10.0
|
||||
*/
|
||||
public class LookupCommandBuilder {
|
||||
|
||||
|
||||
@@ -436,7 +436,7 @@ public final class RepositoryService implements Closeable {
|
||||
* @return instance of {@link LookupCommandBuilder}
|
||||
* @throws CommandNotSupportedException if the command is not supported
|
||||
* by the implementation of the repository service provider.
|
||||
* @since 2.8.0
|
||||
* @since 2.10.0
|
||||
*/
|
||||
public LookupCommandBuilder getLookupCommand() {
|
||||
LOG.debug("create lookup command for repository {}",
|
||||
|
||||
@@ -276,7 +276,7 @@ public abstract class RepositoryServiceProvider implements Closeable
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 2.8.0
|
||||
* @since 2.10.0
|
||||
*/
|
||||
public LookupCommand getLookupCommand()
|
||||
{
|
||||
|
||||
@@ -53,7 +53,7 @@ class SvnLookupCommandTest {
|
||||
void shouldReturnEmptyOptional() {
|
||||
LookupCommandRequest request = new LookupCommandRequest();
|
||||
request.setType(String.class);
|
||||
request.setArgs(new String[]{"props"});
|
||||
request.setArgs(new String[]{"propget"});
|
||||
|
||||
Optional<Object> result = command.lookup(request);
|
||||
|
||||
@@ -68,7 +68,7 @@ class SvnLookupCommandTest {
|
||||
|
||||
LookupCommandRequest request = new LookupCommandRequest();
|
||||
request.setType(String.class);
|
||||
request.setArgs(new String[]{"props", "uuid"});
|
||||
request.setArgs(new String[]{"propget", "uuid", "/"});
|
||||
|
||||
Optional<Object> result = command.lookup(request);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user