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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. package org.apache.archiva.configuration;
  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. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. */
  20. /**
  21. *
  22. * The organisation information settings.
  23. *
  24. *
  25. * @version $Revision$ $Date$
  26. */
  27. @SuppressWarnings( "all" )
  28. public class OrganisationInformation
  29. implements java.io.Serializable
  30. {
  31. //--------------------------/
  32. //- Class/Member Variables -/
  33. //--------------------------/
  34. /**
  35. * name of the organisation.
  36. */
  37. private String name;
  38. /**
  39. * name of the organisation.
  40. */
  41. private String url;
  42. /**
  43. * name of the organisation.
  44. */
  45. private String logoLocation;
  46. //-----------/
  47. //- Methods -/
  48. //-----------/
  49. /**
  50. * Get name of the organisation.
  51. *
  52. * @return String
  53. */
  54. public String getLogoLocation()
  55. {
  56. return this.logoLocation;
  57. } //-- String getLogoLocation()
  58. /**
  59. * Get name of the organisation.
  60. *
  61. * @return String
  62. */
  63. public String getName()
  64. {
  65. return this.name;
  66. } //-- String getName()
  67. /**
  68. * Get name of the organisation.
  69. *
  70. * @return String
  71. */
  72. public String getUrl()
  73. {
  74. return this.url;
  75. } //-- String getUrl()
  76. /**
  77. * Set name of the organisation.
  78. *
  79. * @param logoLocation
  80. */
  81. public void setLogoLocation( String logoLocation )
  82. {
  83. this.logoLocation = logoLocation;
  84. } //-- void setLogoLocation( String )
  85. /**
  86. * Set name of the organisation.
  87. *
  88. * @param name
  89. */
  90. public void setName( String name )
  91. {
  92. this.name = name;
  93. } //-- void setName( String )
  94. /**
  95. * Set name of the organisation.
  96. *
  97. * @param url
  98. */
  99. public void setUrl( String url )
  100. {
  101. this.url = url;
  102. } //-- void setUrl( String )
  103. }