Package io.grafeas.v1
Interface DistributionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Distribution
,Distribution.Builder
public interface DistributionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Architecture
getArchitecture()
The CPU architecture for which packages in this distribution channel were built.int
getArchitectureValue()
The CPU architecture for which packages in this distribution channel were built.String
getCpeUri()
The cpe_uri in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.com.google.protobuf.ByteString
getCpeUriBytes()
The cpe_uri in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.String
getDescription()
The distribution channel-specific description of this package.com.google.protobuf.ByteString
getDescriptionBytes()
The distribution channel-specific description of this package.Version
getLatestVersion()
The latest available version of this package in this distribution channel.VersionOrBuilder
getLatestVersionOrBuilder()
The latest available version of this package in this distribution channel.String
getMaintainer()
A freeform string denoting the maintainer of this package.com.google.protobuf.ByteString
getMaintainerBytes()
A freeform string denoting the maintainer of this package.String
getUrl()
The distribution channel-specific homepage for this package.com.google.protobuf.ByteString
getUrlBytes()
The distribution channel-specific homepage for this package.boolean
hasLatestVersion()
The latest available version of this package in this distribution channel.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCpeUri
String getCpeUri()
The cpe_uri in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.
string cpe_uri = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The cpeUri.
-
getCpeUriBytes
com.google.protobuf.ByteString getCpeUriBytes()
The cpe_uri in [CPE format](https://cpe.mitre.org/specification/) denoting the package manager version distributing a package.
string cpe_uri = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for cpeUri.
-
getArchitectureValue
int getArchitectureValue()
The CPU architecture for which packages in this distribution channel were built.
.grafeas.v1.Architecture architecture = 2;
- Returns:
- The enum numeric value on the wire for architecture.
-
getArchitecture
Architecture getArchitecture()
The CPU architecture for which packages in this distribution channel were built.
.grafeas.v1.Architecture architecture = 2;
- Returns:
- The architecture.
-
hasLatestVersion
boolean hasLatestVersion()
The latest available version of this package in this distribution channel.
.grafeas.v1.Version latest_version = 3;
- Returns:
- Whether the latestVersion field is set.
-
getLatestVersion
Version getLatestVersion()
The latest available version of this package in this distribution channel.
.grafeas.v1.Version latest_version = 3;
- Returns:
- The latestVersion.
-
getLatestVersionOrBuilder
VersionOrBuilder getLatestVersionOrBuilder()
The latest available version of this package in this distribution channel.
.grafeas.v1.Version latest_version = 3;
-
getMaintainer
String getMaintainer()
A freeform string denoting the maintainer of this package.
string maintainer = 4;
- Returns:
- The maintainer.
-
getMaintainerBytes
com.google.protobuf.ByteString getMaintainerBytes()
A freeform string denoting the maintainer of this package.
string maintainer = 4;
- Returns:
- The bytes for maintainer.
-
getUrl
String getUrl()
The distribution channel-specific homepage for this package.
string url = 5;
- Returns:
- The url.
-
getUrlBytes
com.google.protobuf.ByteString getUrlBytes()
The distribution channel-specific homepage for this package.
string url = 5;
- Returns:
- The bytes for url.
-
getDescription
String getDescription()
The distribution channel-specific description of this package.
string description = 6;
- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
The distribution channel-specific description of this package.
string description = 6;
- Returns:
- The bytes for description.
-
-