ServiceDescriptorProto.php 3.74 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/protobuf/descriptor.proto

namespace Google\Protobuf\Internal;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBWire;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\InputStream;
use Google\Protobuf\Internal\GPBUtil;
12
use Google\Protobuf\Internal\GPBWrapperUtils;
13 14 15 16

/**
 * Describes a service.
 *
17
 * Generated from protobuf message <code>google.protobuf.ServiceDescriptorProto</code>
18 19 20 21
 */
class ServiceDescriptorProto extends \Google\Protobuf\Internal\Message
{
    /**
22
     * Generated from protobuf field <code>optional string name = 1;</code>
23 24 25 26
     */
    private $name = '';
    private $has_name = false;
    /**
27
     * Generated from protobuf field <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code>
28 29 30 31
     */
    private $method;
    private $has_method = false;
    /**
32
     * Generated from protobuf field <code>optional .google.protobuf.ServiceOptions options = 3;</code>
33 34 35 36
     */
    private $options = null;
    private $has_options = false;

37 38 39 40 41 42 43 44 45 46 47 48
    /**
     * Constructor.
     *
     * @param array $data {
     *     Optional. Data for populating the Message object.
     *
     *     @type string $name
     *     @type \Google\Protobuf\Internal\MethodDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $method
     *     @type \Google\Protobuf\Internal\ServiceOptions $options
     * }
     */
    public function __construct($data = NULL) {
49
        \GPBMetadata\Google\Protobuf\Internal\Descriptor::initOnce();
50
        parent::__construct($data);
51 52 53
    }

    /**
54 55
     * Generated from protobuf field <code>optional string name = 1;</code>
     * @return string
56 57 58 59 60 61 62
     */
    public function getName()
    {
        return $this->name;
    }

    /**
63 64 65
     * Generated from protobuf field <code>optional string name = 1;</code>
     * @param string $var
     * @return $this
66 67 68 69 70 71
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;
        $this->has_name = true;
72 73

        return $this;
74 75 76 77 78 79 80 81
    }

    public function hasName()
    {
        return $this->has_name;
    }

    /**
82 83
     * Generated from protobuf field <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code>
     * @return \Google\Protobuf\Internal\RepeatedField
84 85 86 87 88 89 90
     */
    public function getMethod()
    {
        return $this->method;
    }

    /**
91 92 93
     * Generated from protobuf field <code>repeated .google.protobuf.MethodDescriptorProto method = 2;</code>
     * @param \Google\Protobuf\Internal\MethodDescriptorProto[]|\Google\Protobuf\Internal\RepeatedField $var
     * @return $this
94
     */
95
    public function setMethod($var)
96
    {
97 98
        $arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Google\Protobuf\Internal\MethodDescriptorProto::class);
        $this->method = $arr;
99
        $this->has_method = true;
100 101

        return $this;
102 103 104 105 106 107 108 109
    }

    public function hasMethod()
    {
        return $this->has_method;
    }

    /**
110 111
     * Generated from protobuf field <code>optional .google.protobuf.ServiceOptions options = 3;</code>
     * @return \Google\Protobuf\Internal\ServiceOptions
112 113 114 115 116 117 118
     */
    public function getOptions()
    {
        return $this->options;
    }

    /**
119 120 121
     * Generated from protobuf field <code>optional .google.protobuf.ServiceOptions options = 3;</code>
     * @param \Google\Protobuf\Internal\ServiceOptions $var
     * @return $this
122
     */
123
    public function setOptions($var)
124 125 126 127
    {
        GPBUtil::checkMessage($var, \Google\Protobuf\Internal\ServiceOptions::class);
        $this->options = $var;
        $this->has_options = true;
128 129

        return $this;
130 131 132 133 134 135 136 137 138
    }

    public function hasOptions()
    {
        return $this->has_options;
    }

}