build.bazel.remote.asset.v1.QualifierOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: build/bazel/remote/asset/v1/remote_asset.proto
package build.bazel.remote.asset.v1;
public interface QualifierOrBuilder extends
// @@protoc_insertion_point(interface_extends:build.bazel.remote.asset.v1.Qualifier)
com.google.protobuf.MessageOrBuilder {
/**
*
* The "name" of the qualifier, for example "resource_type".
* No separation is made between 'standard' and 'nonstandard'
* qualifiers, in accordance with https://tools.ietf.org/html/rfc6648,
* however implementers *SHOULD* take care to avoid ambiguity.
*
*
* string name = 1;
* @return The name.
*/
java.lang.String getName();
/**
*
* The "name" of the qualifier, for example "resource_type".
* No separation is made between 'standard' and 'nonstandard'
* qualifiers, in accordance with https://tools.ietf.org/html/rfc6648,
* however implementers *SHOULD* take care to avoid ambiguity.
*
*
* string name = 1;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* The "value" of the qualifier. Semantics will be dictated by the name.
*
*
* string value = 2;
* @return The value.
*/
java.lang.String getValue();
/**
*
* The "value" of the qualifier. Semantics will be dictated by the name.
*
*
* string value = 2;
* @return The bytes for value.
*/
com.google.protobuf.ByteString
getValueBytes();
}