Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New connectors and fixes #8133

Merged
merged 2 commits into from
Apr 9, 2024
Merged

New connectors and fixes #8133

merged 2 commits into from
Apr 9, 2024

Conversation

mandy-chessell
Copy link
Contributor

Description

Adds a new governance action service to create a markdown version of a survey report.

Related Issue(s)

There is a fix to admin services on querying the topic names for a metadata access store. This fixes a NPE.

Testing

FVT

Release Notes & Documentation

No changes to the docs

Additional notes

Signed-off-by: Mandy Chessell <[email protected]>
@mandy-chessell mandy-chessell merged commit e1c6121 into odpi:main Apr 9, 2024
4 checks passed
@@ -1557,7 +1559,7 @@

if (actualPropertyValue != null)
{
longMap.put(mapPropertyName, (Long)actualPropertyValue);
longMap.put(mapPropertyName, Long.parseLong(actualPropertyValue.toString()));

Check notice

Code scanning / CodeQL

Missing catch of NumberFormatException Note

Potential uncaught 'java.lang.NumberFormatException'.
@@ -590,7 +590,7 @@

if (actualPropertyValue != null)
{
longMap.put(mapPropertyName, (Long)actualPropertyValue);
longMap.put(mapPropertyName, Long.parseLong(actualPropertyValue.toString()));

Check notice

Code scanning / CodeQL

Missing catch of NumberFormatException Note

Potential uncaught 'java.lang.NumberFormatException'.
@@ -237,6 +237,7 @@
* Create a new generic collection.
*
* @param serverName name of called server.
* @param optionalClassificationName name of collection classification

Check notice

Code scanning / CodeQL

Spurious Javadoc @param tags Note

@param tag "optionalClassificationName" does not match any actual parameter of method "createCollection()".
* @return Date object
* @throws FileException problem accessing the file
*/
public Date getLastAccessDate() throws FileException, FileReadException

Check notice

Code scanning / CodeQL

Missing Override annotation Note

This method overrides
BasicFileStore.getLastAccessDate
; it is advisable to add an Override annotation.
* @return Date object
* @throws FileException problem accessing the file
*/
public Date getLastUpdateDate() throws FileException, FileReadException

Check notice

Code scanning / CodeQL

Missing Override annotation Note

This method overrides
BasicFileStore.getLastUpdateDate
; it is advisable to add an Override annotation.
* @return Date object
* @throws FileException problem accessing the file
*/
public Date getLastUpdateDate() throws FileException, FileReadException

Check notice

Code scanning / CodeQL

Missing Override annotation Note

This method overrides
BasicFileStore.getLastUpdateDate
; it is advisable to add an Override annotation.
* @return Date object
* @throws FileException problem accessing the file
*/
public Date getCreationDate() throws FileException, FileReadException

Check notice

Code scanning / CodeQL

Missing Override annotation Note

This method overrides
BasicFileStore.getCreationDate
; it is advisable to add an Override annotation.
* @return number
* @throws FileException unable to locate the file
*/
public long getFileLength() throws FileException

Check notice

Code scanning / CodeQL

Missing Override annotation Note

This method overrides
BasicFileStore.getFileLength
; it is advisable to add an Override annotation.
* @return file name
* @throws FileException problem accessing the file
*/
public String getFileName() throws FileException

Check notice

Code scanning / CodeQL

Missing Override annotation Note

This method overrides
BasicFileStore.getFileName
; it is advisable to add an Override annotation.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant