Interface OutdatedLibraryOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
OutdatedLibrary
,OutdatedLibrary.Builder
public interface OutdatedLibraryOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getLearnMoreUrls(int index)
URLs to learn more information about the vulnerabilities in the library.com.google.protobuf.ByteString
getLearnMoreUrlsBytes(int index)
URLs to learn more information about the vulnerabilities in the library.int
getLearnMoreUrlsCount()
URLs to learn more information about the vulnerabilities in the library.List<String>
getLearnMoreUrlsList()
URLs to learn more information about the vulnerabilities in the library.String
getLibraryName()
The name of the outdated library.com.google.protobuf.ByteString
getLibraryNameBytes()
The name of the outdated library.String
getVersion()
The version number.com.google.protobuf.ByteString
getVersionBytes()
The version number.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLibraryName
String getLibraryName()
The name of the outdated library.
string library_name = 1;
- Returns:
- The libraryName.
-
getLibraryNameBytes
com.google.protobuf.ByteString getLibraryNameBytes()
The name of the outdated library.
string library_name = 1;
- Returns:
- The bytes for libraryName.
-
getVersion
String getVersion()
The version number.
string version = 2;
- Returns:
- The version.
-
getVersionBytes
com.google.protobuf.ByteString getVersionBytes()
The version number.
string version = 2;
- Returns:
- The bytes for version.
-
getLearnMoreUrlsList
List<String> getLearnMoreUrlsList()
URLs to learn more information about the vulnerabilities in the library.
repeated string learn_more_urls = 3;
- Returns:
- A list containing the learnMoreUrls.
-
getLearnMoreUrlsCount
int getLearnMoreUrlsCount()
URLs to learn more information about the vulnerabilities in the library.
repeated string learn_more_urls = 3;
- Returns:
- The count of learnMoreUrls.
-
getLearnMoreUrls
String getLearnMoreUrls(int index)
URLs to learn more information about the vulnerabilities in the library.
repeated string learn_more_urls = 3;
- Parameters:
index
- The index of the element to return.- Returns:
- The learnMoreUrls at the given index.
-
getLearnMoreUrlsBytes
com.google.protobuf.ByteString getLearnMoreUrlsBytes(int index)
URLs to learn more information about the vulnerabilities in the library.
repeated string learn_more_urls = 3;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the learnMoreUrls at the given index.
-
-