Overview

Namespaces

  • Mapbender
    • Component
      • HTTP
    • CoreBundle
      • Command
      • Component
        • Exception
      • Controller
      • DataFixtures
        • ORM
      • DependencyInjection
      • Element
        • Type
      • Entity
      • EventListener
      • Extension
      • Form
        • DataTransformer
        • EventListener
        • Type
      • Security
      • Template
    • DrupalIntegrationBundle
      • DependencyInjection
      • Security
        • Authentication
          • Provider
          • Token
        • Authorization
          • Voter
        • Factory
        • Firewall
        • User
      • Session
    • KmlBundle
      • Element
    • ManagerBundle
      • Controller
      • Form
        • DataTransformer
        • Type
    • MonitoringBundle
      • Command
      • Component
      • Controller
      • DependencyInjection
      • Entity
      • EventListener
      • Form
    • PrintBundle
      • Component
      • Controller
    • WmcBundle
      • Component
        • Exception
      • Element
        • Type
      • Entity
      • Form
        • EventListener
        • Type
    • WmsBundle
      • Component
        • Exception
      • Controller
      • DependencyInjection
      • Element
        • Type
      • Entity
      • Event
      • Form
        • EventListener
        • Type
    • WmtsBundle
      • Component
        • Exception
      • Controller
      • Entity
      • Form
        • Type
  • None
  • PHP

Classes

  • Attribution
  • Authority
  • Dimension
  • Extent
  • Identifier
  • IdentifierAuthority
  • LegendUrl
  • MetadataUrl
  • MinMax
  • OnlineResource
  • RequestInformation
  • Style
  • WmsCapabilitiesParser
  • WmsCapabilitiesParser111
  • WmsCapabilitiesParser130
  • WmsInstanceConfiguration
  • WmsInstanceConfigurationOptions
  • Overview
  • Namespace
  • Class
  • Tree
  • Deprecated
  • Todo
  • Download
 1: <?php
 2: 
 3: namespace Mapbender\WmsBundle\Component;
 4: 
 5: /**
 6:  * Authority class.
 7:  *
 8:  * @author Paul Schmidt
 9:  */
10: class Authority
11: {
12: 
13:     /**
14:      * ORM\Column(type="string", nullable=true)
15:      */
16:     //@TODO Doctrine bug: "protected" replaced with "public"
17:     public $url;
18: 
19:     /**
20:      * ORM\Column(type="string", nullable=true)
21:      */
22:     //@TODO Doctrine bug: "protected" replaced with "public"
23:     public $name;
24: 
25:     /**
26:      * Get url
27:      * 
28:      * @return string
29:      */
30:     public function getUrl()
31:     {
32:         return $this->url;
33:     }
34: 
35:     /**
36:      * Set url
37:      * @param string $value 
38:      * @return Authority
39:      */
40:     public function setUrl($value)
41:     {
42:         $this->url = $value;
43:         return $this;
44:     }
45: 
46:     /**
47:      * Get name
48:      * 
49:      * @return string
50:      */
51:     public function getName()
52:     {
53:         return $this->name;
54:     }
55: 
56:     /**
57:      * Set name
58:      * @param string $value 
59:      * @return Authority
60:      */
61:     public function setName($value)
62:     {
63:         $this->name = $value;
64:         return $this;
65:     }
66: }
67: 
Mapbender3 API documenation API documentation generated by ApiGen 2.8.0