Source Code Cross Referenced for UserAttributeType.java in  » Portal » stringbeans-3.5 » com » nabhinc » portal » config » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Portal » stringbeans 3.5 » com.nabhinc.portal.config 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * (C) Copyright 2000 - 2005 Nabh Information Systems, Inc.
003:         *
004:         * This program is free software; you can redistribute it and/or
005:         * modify it under the terms of the GNU General Public License
006:         * as published by the Free Software Foundation; either version 2
007:         * of the License, or (at your option) any later version.
008:         *
009:         * This program is distributed in the hope that it will be useful,
010:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
011:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
012:         * GNU General Public License for more details.
013:         *
014:         * You should have received a copy of the GNU General Public License
015:         * along with this program; if not, write to the Free Software
016:         * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
017:         *
018:         */
019:
020:        //
021:        // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.4-b18-fcs 
022:        // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
023:        // Any modifications to this file will be lost upon recompilation of the source schema. 
024:        // Generated on: 2005.03.04 at 10:20:40 PST 
025:        //
026:
027:        package com.nabhinc.portal.config;
028:
029:        /**
030:         * User attribute defines a user specific attribute that the
031:         * portlet application needs. The portlet within this application
032:         * can access this attribute via the request parameter USER_INFO
033:         * map.
034:         * Used in: portlet-app
035:         * 
036:         * Java content class for user-attributeType complex type.
037:         * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/C:/Sun/jwsdp-1.5/jaxb/lib/portlet-app_1_0.xsd line 500)
038:         * <p>
039:         * <pre>
040:         * &lt;complexType name="user-attributeType">
041:         *   &lt;complexContent>
042:         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
043:         *       &lt;sequence>
044:         *         &lt;element name="description" type="{http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd}descriptionType" maxOccurs="unbounded" minOccurs="0"/>
045:         *         &lt;element name="name" type="{http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd}nameType"/>
046:         *       &lt;/sequence>
047:         *       &lt;attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
048:         *     &lt;/restriction>
049:         *   &lt;/complexContent>
050:         * &lt;/complexType>
051:         * </pre>
052:         * 
053:         */
054:        public interface UserAttributeType {
055:
056:            /**
057:             * Gets the value of the Description property.
058:             * 
059:             * <p>
060:             * This accessor method returns a reference to the live list,
061:             * not a snapshot. Therefore any modification you make to the
062:             * returned list will be present inside the JAXB object.
063:             * This is why there is not a <CODE>set</CODE> method for the Description property.
064:             * 
065:             * <p>
066:             * For example, to add a new item, do as follows:
067:             * <pre>
068:             *    getDescription().add(newItem);
069:             * </pre>
070:             * 
071:             * 
072:             * <p>
073:             * Objects of the following type(s) are allowed in the list
074:             * {@link com.nabhinc.portal.config.DescriptionType}
075:             * 
076:             */
077:            java.util.List getDescription();
078:
079:            /**
080:             * Gets the value of the name property.
081:             * 
082:             * @return
083:             *     possible object is
084:             *     {@link com.nabhinc.portal.config.NameType}
085:             */
086:            com.nabhinc.portal.config.NameType getName();
087:
088:            /**
089:             * Sets the value of the name property.
090:             * 
091:             * @param value
092:             *     allowed object is
093:             *     {@link com.nabhinc.portal.config.NameType}
094:             */
095:            void setName(com.nabhinc.portal.config.NameType value);
096:
097:            /**
098:             * Gets the value of the id property.
099:             * 
100:             * @return
101:             *     possible object is
102:             *     {@link java.lang.String}
103:             */
104:            java.lang.String getId();
105:
106:            /**
107:             * Sets the value of the id property.
108:             * 
109:             * @param value
110:             *     allowed object is
111:             *     {@link java.lang.String}
112:             */
113:            void setId(java.lang.String value);
114:
115:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.