1. /*
  2. * Copyright 2003-2004 The Apache Software Foundation
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. *
  16. */
  17. package org.apache.tools.ant.taskdefs;
  18. import org.apache.tools.ant.BuildException;
  19. import org.apache.tools.ant.ProjectHelper;
  20. import org.apache.tools.ant.Task;
  21. /**
  22. * Base class for tasks that that can be used in antlibs.
  23. * For handling uri and class loading.
  24. *
  25. *
  26. * @since Ant 1.6
  27. */
  28. public class AntlibDefinition extends Task {
  29. private String uri = "";
  30. private ClassLoader antlibClassLoader;
  31. /**
  32. * The URI for this definition.
  33. * If the URI is "antlib:org.apache.tools.ant",
  34. * (this is the default uri)
  35. * the uri will be set to "".
  36. * URIs that start with "ant:" are reserved
  37. * and are not allowed in this context.
  38. * @param uri the namespace URI
  39. * @throws BuildException if a reserved URI is used
  40. */
  41. public void setURI(String uri) throws BuildException {
  42. if (uri.equals(ProjectHelper.ANT_CORE_URI)) {
  43. uri = "";
  44. }
  45. if (uri.startsWith("ant:")) {
  46. throw new BuildException("Attempt to use a reserved URI " + uri);
  47. }
  48. this.uri = uri;
  49. }
  50. /**
  51. * The URI for this definition.
  52. * @return The URI for this defintion.
  53. */
  54. public String getURI() {
  55. return uri;
  56. }
  57. /**
  58. * Set the class loader of the loading object
  59. *
  60. * @param classLoader a <code>ClassLoader</code> value
  61. */
  62. public void setAntlibClassLoader(ClassLoader classLoader) {
  63. this.antlibClassLoader = classLoader;
  64. }
  65. /**
  66. * The current antlib classloader
  67. * @return the antlib classloader for the definition, this
  68. * is null if the definition is not used in an antlib.
  69. */
  70. public ClassLoader getAntlibClassLoader() {
  71. return antlibClassLoader;
  72. }
  73. }