You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

OrganisationInformation.java 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package org.apache.archiva.configuration.model;
  2. /*
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. /**
  20. *
  21. * The organisation information settings.
  22. *
  23. *
  24. * @version $Revision$ $Date$
  25. */
  26. @SuppressWarnings( "all" )
  27. public class OrganisationInformation
  28. implements java.io.Serializable
  29. {
  30. //--------------------------/
  31. //- Class/Member Variables -/
  32. //--------------------------/
  33. /**
  34. * name of the organisation.
  35. */
  36. private String name;
  37. /**
  38. * name of the organisation.
  39. */
  40. private String url;
  41. /**
  42. * name of the organisation.
  43. */
  44. private String logoLocation;
  45. //-----------/
  46. //- Methods -/
  47. //-----------/
  48. /**
  49. * Get name of the organisation.
  50. *
  51. * @return String
  52. */
  53. public String getLogoLocation()
  54. {
  55. return this.logoLocation;
  56. } //-- String getLogoLocation()
  57. /**
  58. * Get name of the organisation.
  59. *
  60. * @return String
  61. */
  62. public String getName()
  63. {
  64. return this.name;
  65. } //-- String getName()
  66. /**
  67. * Get name of the organisation.
  68. *
  69. * @return String
  70. */
  71. public String getUrl()
  72. {
  73. return this.url;
  74. } //-- String getUrl()
  75. /**
  76. * Set name of the organisation.
  77. *
  78. * @param logoLocation
  79. */
  80. public void setLogoLocation( String logoLocation )
  81. {
  82. this.logoLocation = logoLocation;
  83. } //-- void setLogoLocation( String )
  84. /**
  85. * Set name of the organisation.
  86. *
  87. * @param name
  88. */
  89. public void setName( String name )
  90. {
  91. this.name = name;
  92. } //-- void setName( String )
  93. /**
  94. * Set name of the organisation.
  95. *
  96. * @param url
  97. */
  98. public void setUrl( String url )
  99. {
  100. this.url = url;
  101. } //-- void setUrl( String )
  102. }