001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.taglib;
016    
017    import aQute.bnd.annotation.headers.ProvideCapability;
018    
019    /**
020     * @author Raymond Aug??
021     */
022    public class Capabilities {
023    
024            @ProvideCapability(
025                    name = "jsp.taglib", ns = "osgi.extender",
026                    value = "uri=http://alloy.liferay.com/tld/alloy",
027                    version = "${@version}"
028            )
029            public class Alloy {
030            }
031    
032            @ProvideCapability(
033                    name = "jsp.taglib", ns = "osgi.extender",
034                    value = "uri=http://alloy.liferay.com/tld/alloy_util",
035                    version = "${@version}"
036            )
037            public class AlloyUtil {
038            }
039    
040            @ProvideCapability(
041                    name = "jsp.taglib", ns = "osgi.extender",
042                    value = "uri=http://alloy.liferay.com/tld/aui", version = "${@version}"
043            )
044            public class AUI {
045            }
046    
047            @ProvideCapability(
048                    name = "jsp.taglib", ns = "osgi.extender",
049                    value = "uri=http://liferay.com/tld/ddm", version = "${@version}"
050            )
051            public class DDM {
052            }
053    
054            @ProvideCapability(
055                    name = "jsp.taglib", ns = "osgi.extender",
056                    value = "uri=http://liferay.com/tld/aui", version = "${@version}"
057            )
058            public class LiferayAUI {
059            }
060    
061            @ProvideCapability(
062                    name = "jsp.taglib", ns = "osgi.extender",
063                    value = "uri=http://liferay.com/tld/ddm", version = "${@version}"
064            )
065            public class LiferayDDM {
066            }
067    
068            @ProvideCapability(
069                    name = "jsp.taglib", ns = "osgi.extender",
070                    value = "uri=http://java.sun.com/portlet", version = "${@version}"
071            )
072            public class LiferayPortlet {
073            }
074    
075            @ProvideCapability(
076                    name = "jsp.taglib", ns = "osgi.extender",
077                    value = "uri=http://liferay.com/tld/portlet", version = "${@version}"
078            )
079            public class LiferayPortletExt {
080            }
081    
082            @ProvideCapability(
083                    name = "jsp.taglib", ns = "osgi.extender",
084                    value = "uri=http://liferay.com/tld/security", version = "${@version}"
085            )
086            public class LiferaySecurity {
087            }
088    
089            @ProvideCapability(
090                    name = "jsp.taglib", ns = "osgi.extender",
091                    value = "uri=http://liferay.com/tld/staging", version = "${@version}"
092            )
093            public class LiferayStaging {
094            }
095    
096            @ProvideCapability(
097                    name = "jsp.taglib", ns = "osgi.extender",
098                    value = "uri=http://liferay.com/tld/theme", version = "${@version}"
099            )
100            public class LiferayTheme {
101            }
102    
103            @ProvideCapability(
104                    name = "jsp.taglib", ns = "osgi.extender",
105                    value = "uri=http://liferay.com/tld/ui", version = "${@version}"
106            )
107            public class LiferayUI {
108            }
109    
110            @ProvideCapability(
111                    name = "jsp.taglib", ns = "osgi.extender",
112                    value = "uri=http://liferay.com/tld/util", version = "${@version}"
113            )
114            public class LiferayUtil {
115            }
116    
117            @ProvideCapability(
118                    name = "jsp.taglib", ns = "osgi.extender",
119                    value = "uri=http://java.sun.com/portlet_2_0", version = "${@version}"
120            )
121            public class Portlet {
122            }
123    
124    }