Skip to content

Commit

Permalink
Normalize getter Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 31, 2023
1 parent 0a3d3be commit 247dfb5
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import jakarta.mail.MessagingException;

/**
* Get access to the content info stuff for mime objects.
* Gets access to the content info stuff for mime objects.
*/
public class MimeFileContentInfoFactory implements FileContentInfoFactory {
@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public interface RandomAccessContent extends DataOutput, DataInput, Closeable {
long getFilePointer() throws IOException;

/**
* Get the input stream.
* Gets the input stream.
* <p>
* <b>Notice: If you use {@link #seek(long)} you have to re-get the InputStream</b>
* </p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public final FileOperation getOperation(final FileObject file, final Class<? ext
}

/**
* Get operation instance for specified FileOperation subclass.
* Gets operation instance for specified FileOperation subclass.
*
* @param file the file this operation should act on.
* @param operationClass the class of a file operation interface to instantiate.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public interface FileOperationProvider {
void collectOperations(Collection<Class<? extends FileOperation>> operationsList, FileObject file) throws FileSystemException;

/**
* Get implementation for a given FileObject and FileOperation interface.
* Gets implementation for a given FileObject and FileOperation interface.
*
* @param file the FileObject for which we need an operation.
* @param operationClass the Class which instance we are needed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ public void fileDeleted(final FileChangeEvent event) throws Exception {
}

/**
* Get access to the delegated file.
* Gets access to the delegated file.
*
* @return The FileObject.
* @since 2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public int getPort() {
}

/**
* Get the connection schema.
* Gets the connection schema.
*
* @return the connection scheme.
* @since 2.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ protected InputStream doGetInputStream(final int bufferSize) throws Exception {
}

/**
* Get the last modified time on an FTP file
* Gets the last modified time on an FTP file
*
* @see org.apache.commons.vfs2.provider.AbstractFileObject#doGetLastModifiedTime()
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public Duration getDataTimeoutDuration(final FileSystemOptions options) {
}

/**
* Get the default date format used by the server. See {@link org.apache.commons.net.ftp.FTPClientConfig} for
* Gets the default date format used by the server. See {@link org.apache.commons.net.ftp.FTPClientConfig} for
* details and examples.
*
* @param options The FileSystemOptions
Expand Down Expand Up @@ -289,7 +289,7 @@ public Boolean getRemoteVerification(final FileSystemOptions options) {
}

/**
* Get the language code used by the server. See {@link org.apache.commons.net.ftp.FTPClientConfig} for details and
* Gets the language code used by the server. See {@link org.apache.commons.net.ftp.FTPClientConfig} for details and
* examples.
*
* @param options The FilesystemOptions.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ String getKeyStorePass(final FileSystemOptions opts) {
}

/**
* Get keystore type for SSL connections.
* Gets keystore type for SSL connections.
* @param opts the file system options to modify
* @return keystore type for SSL connections
* @since 2.7.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ String getKeyStorePass(final FileSystemOptions opts) {
}

/**
* Get keystore type for SSL connections.
* Gets keystore type for SSL connections.
* @param opts the file system options to modify
* @return keystore type for SSL connections
* @since 2.7.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ public IdentityProvider[] getIdentityProvider(final FileSystemOptions options) {
}

/**
* Get the identity repository factory.
* Gets the identity repository factory.
*
* @param options The FileSystem options.
* @return the IdentityRepositoryFactory
Expand Down

0 comments on commit 247dfb5

Please sign in to comment.