Basics and Concepts of Java Server Faces

Total Page:16

File Type:pdf, Size:1020Kb

Basics and Concepts of Java Server Faces Basics and Concepts of Java Server Faces A standard approach to web- development Martin Marinschek IRIAN Solutions GmbH (http:/ / www.irian.at) Submission ID 2220 2 AGENDA 1. Why JSF? 2. JSF – an introduction 3. Standard components of JSF 4. JSF – the LifeCycle 5. JSF Libraries and Add- On Frameworks 6. Outlook to the future of JSF 3 AGENDA 1. Why JSF? 2. JSF – an introduction 3. Standard components of JSF 4. JSF – the LifeCycle 5. JSF Libraries and Add- On Frameworks 6. Outlook to the future of JSF Java and its Standards! 4 1995 199619971998199920002001200220032004200520062007 JSP Standard Tag Library (JSTL) 1.0 1.1 1.2 JavaServer Pages (JSP) 0.92 1.0/ 1.1 1.2 2.0 2.1 Java- Servlets 1.0 2.0 2.1/ 2.2 2.3 2.4 2.5 Java 1.0 1.1 1.2 1.3 1.4 5.0 6.0 5 Why JSF? Rendering was already standardized > JSP, Servlets, JSTL Two- way- binding and form- handling missing A host of frameworks filled this GAP Ja va- Web- Frameworks 6 WebOnSwing Swinglets JPublishEcho Millstone JSPWidget JoSssporing MVC Wicket DWR Sofia WebworkJucas Maverick VRaptor Struts Japple Stripes AnvGil WT Barracuda CocoonJAT TRaIFpEestry Verge JaffOapenXava ChrysSawliisngWeb http:/ / www.java- source.net/ open- source/ web- frameworks Java and its Standards! 7 1995 199619971998199920002001200220032004200520062007 JavaServer Faces (JSF) 1.0/ 1.1 1.2 JSP Standard Tag Library (JSTL) 1.0 1.1 1.2 JavaServer Pages (JSP) 0.92 1.0/ 1.1 1.2 2.0 2.1 Java- Servlets 1.0 2.0 2.1/ 2.2 2.3 2.4 2.5 Java 1.0 1.1 1.2 1.3 1.4 5.0 6.0 8 AGENDA 1. Why JSF? 2. JSF – an introduction 3. JSF – the LifeCycle 4. Standard components of JSF 5. JSF Libraries and Add- On Frameworks 6. Outlook to the future of JSF 9 JSF in a nutshell • JSF is a … • ... new framework for building highly interactive web- apps with a simple and clear role- model • ... component- based framework • ... event- driven framework • … stateful framework on top of stateless protocols • ... RAD (Rapid Application Development) enabling platform • ... JCP standard! 10 Component driven framework • JSF has built- in components • connect components inside a view- definition- file • (JSP, Facelets,..) • the ‚rendering‘ transforms these to markup like (X)HTML <h:inputText id="x" /> <input type="text" id="form:x"/> 11 Event driven framework registers at triggers Event- Event- Source Listener creates Event sent to 12 JSF – a technology in wide use IRIAN.at- JSF- Projects: > Deutsche Bank > Continentale > IPI.ch > OeKB > ICW AG > Erste Bank > Raiffeisen Capital Management Other JSF- Projects in Switzerland (we know of): > Credit Suisse If you have one, come to the Swiss JSF- user group meeting today in the evening! > More information at the end of this presentation… Apache MyFaces > „Companies using Apache MyFaces“ http:/ / wiki.apache.org/ myfaces/ Companies_Using_MyFaces 13 A JSF – Hello World example h:panelGrid h:outputLabel h:inputTex t h:commandButto n 14 A JSF page needs… View- Template – e.g. JSP: <f:view> <h:outputLabel value=„label for=„id“/> <h:inputText id=„id“ value=„#{myBean.text}“/> </f:view> One or more Backing- Beans (Managed- Beans) public class MyBean {} Configuration in faces-config.xml: <managed-bean> <managed-bean-name>myBean</managed-bean- name> </managed-bean> 15 JSF- JSP- Template - Hello World <html>..<f:view><h:form id="form"> <h:panelGrid columns="2"> <h:outputLabel for="input1" value="first name"/> <h:inputText id="input1„ value="#{customer.firstname}"/> <h:outputLabel for="input2" value="second name"/> <h:inputText id="input2" value="#{customer.secondname}" required="true" /> <h:commandButton value="send it!" action="#{customer.send}"/> <h:messages errorStyle="color:red"/> </h:panelGrid> </h:form></f:view>..</html> 16 JavaBean – Hello World public class Customer { private String firstname = null; private String secondname = null; //getter and setter public String send(){ //back-end access (e.g. BusinessDelegate) return "fine"; } } 17 Faces- config.xml – Hello World <faces-config> <managed-bean> <managed-bean-name>customer</managed-bean-name> <managed-bean-class>foo.Customer</managed-bean-class> <managed-bean-scope>request</managed-bean-scope> </managed-bean> <navigation-rule> <from-view-id>/form.jsp</from-view-id> <navigation-case> <from-outcome>fine</from-outcome> <to-view-id>/output.jsp</to-view-id> </navigation-case> </navigation-rule> </faces-config> 18 AGENDA > Why JSF? > JSF – an introduction > Standard components of JSF > JSF – the LifeCycle > JSF Libraries and Add- On Frameworks > Outlook to the future of JSF 19 standard components - Text • output of text - outputText <h:outputText value="#{user.userNameDescr}"/> • input of text - inputText <h:inputText value="#{user.userName}"/> • password input <h:inputSecret/> • hidden field (yes, you won’t need it anymore): <h:inputHidden/> • textareas <h:inputTextarea/> 20 standard components - UICommand • commandLink <h:commandLink action="#{actionBean.test}"/> • commandButton <h:commandButton action="#{pageBean.test2}"/> 21 standard components - OutputLink • Linking to websites/ web- apps outside of JSF: <h:outputLink value=„url“ target=„_blank“/> • Caution: state gets lost, since this is not a postback • HTTP parameters <h:outputLink value=„url“> <f:param name=„allowCache“ value=„true“/> </h:outputLink> 22 standard components – UIData • best for presenting structured data (like java.util.List) • horizontal: every column is defined by a UIColumn component • vertical: each row represents one item of the structured data • Facets (<f:facet/>) allow defining header and footer 23 standard components - UIData <h:dataTable value="#{bean.items}" var="item"> <h:column> <h:outputText value="#{item.name}"/> </h:column> <h:column> <f:facet name="header"> <h:outputText value="Header 2"/> </f:facet> <h:outputText value="#{item.desc}"/> </h:column> </h:dataTable> 24 Switching Master- Detail setPropertyActionListener (preparation) navigation Item 25 Switching Master- Detail - Code That‘s it: <h:dataTable> <h:column> <h:commandLink action="edit" > <f:setPropertyActionListener value="#{item}" target="#{itemEdit.currentItem}"/> </h:commandLink> </h:column> </h:dataTable> 26 Standard components - Label • Label for a component: <h:outputLabel for="myId" value="#{bean.labelText}"/> <h:inputText id="myId" value="something"/> Apache MyFaces Tomahawk: • label text can be used in message • use <t:outputLabel/> for this 27 Standard components - SelectMany <h:selectManyCheckbox> <h:selectManyListbox/> 28 Standard components - SelectOne <h:selectOneRadio> <h:selectOneListbox/> <h:selectOneMenu/> 29 Example - JSP SelectOneMenu for choosing gender of a person: <h:selectOneMenu value="#{person.gender}"> <f:selectItems value="#{person.genderItems}"/> </h:selectOneMenu> Person.java: private String gender; //getter+setter private List genderItems; public List getGenderItems(){ if(genderItems == null){ genderItems = new ArrayList(); genderItems.add(new SelectItem("m","male",null)); genderItems.add(new SelectItem("w","female",null)); } return genderItems; } 30 MyFaces Tomahawk: t:selectItems Select- Item- List could also be created automatically: <t:selectItems var="person" value="#{bean.persons}" itemLabel="#{person.name}" itemValue="#{person.id}"/> 31 AGENDA > Why JSF? > JSF – an introduction > Standard components of JSF > JSF – the LifeCycle > JSF Libraries and Add- On Frameworks > Outlook to the future of JSF 32 JSF Request Lifecyle Response complete Faces Apply Conversion Restore Process request Request and View Events Response Values Validation P e r complete v o T e c n e N Render Response t s s s E I Response Response U M L complete complete p o d C d a e t e Faces l Render Process Invoke Process respons e Response Events Application Events Conversion Errors Render Response Validation / Conversion Errors Render Response 33 JSF Lifecycle – Initialization Faces Apply Conversion Restore Process request Request and View Events Values Validation P e r v o T e c n e N t s No view available s s E I U M L p o d C d a e t e l Faces Render Process Invoke Process respons e Response Events Application Events Create View 34 JSF Lifecycle – Validation fails Faces Apply Conversion Restore Process request Request and View Events Values Validation P e r v o T e c n e N t s s s E I U M L p o d C d a e t e l Faces Render Process Invoke Process respons e Response Events Application Events Validation / Conversion Errors Render Response JSF Lifecycle – Input Values 35 same way validation error validation ok a) If UICom.submittedValue = = null - > use ManagedBean.attribute 36 PhaseListener - configuration • JSF provides a special listener for the lifecycle • PhaseListener executed at the beginning and at the end of a phase. • register in faces- config.xml: <lifecycle> <phase-listener> org.apache.training.DebugPhaseListener </phase-listener> </lifecycle> 37 PhaseListener - Sample public class DebugPhaseListener implements PhaseListener { public void beforePhase(PhaseEvent event){} public void afterPhase(PhaseEvent event){ System.out.println("afterPhase"); } public PhaseId getPhaseId(){ return PhaseId.ANY_PHASE; // return PhaseId.INVOKE_APPLICATION; } } 38 AGENDA > Why JSF? > JSF – an introduction > Standard components of JSF > JSF – the LifeCycle > JSF Libraries and Add- On Frameworks > Outlook to the future of JSF J SF – implementations and add- on 39 fIrmapmlemeewntoatrioknss > Sun RI > Apache MyFaces (founded by Thomas Spiegl and Manfred Geiler, both IRIAN.at) Extensions/ other frameworks on top of the standard > Apache MyFaces orchestra (glue code for JSF – Spring – JPA, conversation support) >
Recommended publications
  • Chapter Index
    index.fm Page 699 Monday, April 2, 2007 12:46 PM Chapter Index A Action methods, roles of, 80 AbstractFacesBean, 580 Action states, 577 accept attribute, 101 actionListener attribute, 92, 285 h:form, 104 h:command and h:commandLink, 119 acceptcharset attribute, 101 and method expressions, 69, 396 h:form, 104 MethodBinding object, 385 Accept-Language value, 45 ActionLogger class, 286 Access control application: ActionMethodBinding, 386 directory structure for, 513 Actions, 275 messages.properties, 516 ActionSource interface, 361, 385, 387, 402 noauth.html, 514 ActionSource2 interface, 359, 361, 403 UserBean.java, 515 addDataModelListener(DataModelListener web.xml, 513–514 listener), 214 accesskey attribute, 101, 109 Address book application, EJBs, 606 h:command and h:commandLink, 120 ADF Faces components set (Oracle), 613 h:outputLink, 123 Ajax: selection tags, 132 basic, with an XHR object and a AccordionRenderer class, 551 servlet (application), 530–532 action attribute, 71 components, 546–554 h:command and h:commandLink, 119 Direct Web Remoting (DWR), 543–546 method expressions, 69, 73, 396 form completion, 534–537 MethodBinding object, 385 fundamentals of, 530–533 Action events, 33, 275–284 hybrid components, 546–551 firing, 268, 418–418 JSF-Rico accordion hybrid, 548–551 Action listeners, 385 realtime validation, 537–542 compared to actions, 275 Rico accordion, 546–551 699 index.fm Page 700 Monday, April 2, 2007 12:46 PM 700 Index Ajax (cont): arg attribute, creditCardValidator, 659 transmitting JSP tag attributes to Arithmetic operators,
    [Show full text]
  • Return of Organization Exempt from Income
    OMB No. 1545-0047 Return of Organization Exempt From Income Tax Form 990 Under section 501(c), 527, or 4947(a)(1) of the Internal Revenue Code (except black lung benefit trust or private foundation) Open to Public Department of the Treasury Internal Revenue Service The organization may have to use a copy of this return to satisfy state reporting requirements. Inspection A For the 2011 calendar year, or tax year beginning 5/1/2011 , and ending 4/30/2012 B Check if applicable: C Name of organization The Apache Software Foundation D Employer identification number Address change Doing Business As 47-0825376 Name change Number and street (or P.O. box if mail is not delivered to street address) Room/suite E Telephone number Initial return 1901 Munsey Drive (909) 374-9776 Terminated City or town, state or country, and ZIP + 4 Amended return Forest Hill MD 21050-2747 G Gross receipts $ 554,439 Application pending F Name and address of principal officer: H(a) Is this a group return for affiliates? Yes X No Jim Jagielski 1901 Munsey Drive, Forest Hill, MD 21050-2747 H(b) Are all affiliates included? Yes No I Tax-exempt status: X 501(c)(3) 501(c) ( ) (insert no.) 4947(a)(1) or 527 If "No," attach a list. (see instructions) J Website: http://www.apache.org/ H(c) Group exemption number K Form of organization: X Corporation Trust Association Other L Year of formation: 1999 M State of legal domicile: MD Part I Summary 1 Briefly describe the organization's mission or most significant activities: to provide open source software to the public that we sponsor free of charge 2 Check this box if the organization discontinued its operations or disposed of more than 25% of its net assets.
    [Show full text]
  • Full-Graph-Limited-Mvn-Deps.Pdf
    org.jboss.cl.jboss-cl-2.0.9.GA org.jboss.cl.jboss-cl-parent-2.2.1.GA org.jboss.cl.jboss-classloader-N/A org.jboss.cl.jboss-classloading-vfs-N/A org.jboss.cl.jboss-classloading-N/A org.primefaces.extensions.master-pom-1.0.0 org.sonatype.mercury.mercury-mp3-1.0-alpha-1 org.primefaces.themes.overcast-${primefaces.theme.version} org.primefaces.themes.dark-hive-${primefaces.theme.version}org.primefaces.themes.humanity-${primefaces.theme.version}org.primefaces.themes.le-frog-${primefaces.theme.version} org.primefaces.themes.south-street-${primefaces.theme.version}org.primefaces.themes.sunny-${primefaces.theme.version}org.primefaces.themes.hot-sneaks-${primefaces.theme.version}org.primefaces.themes.cupertino-${primefaces.theme.version} org.primefaces.themes.trontastic-${primefaces.theme.version}org.primefaces.themes.excite-bike-${primefaces.theme.version} org.apache.maven.mercury.mercury-external-N/A org.primefaces.themes.redmond-${primefaces.theme.version}org.primefaces.themes.afterwork-${primefaces.theme.version}org.primefaces.themes.glass-x-${primefaces.theme.version}org.primefaces.themes.home-${primefaces.theme.version} org.primefaces.themes.black-tie-${primefaces.theme.version}org.primefaces.themes.eggplant-${primefaces.theme.version} org.apache.maven.mercury.mercury-repo-remote-m2-N/Aorg.apache.maven.mercury.mercury-md-sat-N/A org.primefaces.themes.ui-lightness-${primefaces.theme.version}org.primefaces.themes.midnight-${primefaces.theme.version}org.primefaces.themes.mint-choc-${primefaces.theme.version}org.primefaces.themes.afternoon-${primefaces.theme.version}org.primefaces.themes.dot-luv-${primefaces.theme.version}org.primefaces.themes.smoothness-${primefaces.theme.version}org.primefaces.themes.swanky-purse-${primefaces.theme.version}
    [Show full text]
  • Singapore Tariff Schedule
    Annex 2C Tariff Schedule of Singapore See General Notes to Annex 2C for an explanation of staging codes Staging Heading H.S. Code Description Base Rates Category Chapter 1 Live animals 01.01 Live horses, asses, mules and hinnies. 0101.10.00 - Pure-bred breeding animals Free E 0101.90 - Other: 0101.90.10 - - Race horses Free E 0101.90.20 - - Other horses Free E 0101.90.90 - - Other Free E 01.02 Live bovine animals. 0102.10.00 - Pure-bred breeding animals Free E 0102.90 - Other: 0102.90.10 - - Oxen Free E 0102.90.20 - - Buffaloes Free E 0102.90.90 - - Other Free E 01.03 Live swine. 0103.10.00 - Pure-bred breeding animals Free E - Other: 0103.91.00 - - Weighing less than 50 kg Free E 0103.92.00 - - Weighing 50 kg or more Free E 01.04 Live sheep and goats. 0104.10 - Sheep: 0104.10.10 - - Pure-bred breeding Free E 0104.10.90 - - Other Free E 0104.20 - Goats: 0104.20.10 - - Pure-bred breeding animals Free E 0104.20.90 - - Other Free E Live poultry, that is to say, fowls of the species Gallus domesticus, 01.05 ducks, geese, turkeys and guinea fowls. - Weighing not more than 185 g: 0105.11 - Fowls of the species Gallus domesticus: 0105.11.10 - - - Breeding fowls Free E 0105.11.90 - - - Other Free E 0105.12 - - Turkeys: 0105.12.10 - - - Breeding turkeys Free E 0105.12.90 - - - Other Free E 0105.19 - - Other: 0105.19.10 - - - Breeding ducklings Free E 0105.19.20 - - - Other ducklings Free E 0105.19.30 - - - Breeding goslings Free E 0105.19.40 - - - Other goslings Free E 0105.19.50 - - - Breeding guinea fowls Free E 0105.19.90 - - - Other Free E - Other: 2C-Schedule-1 Staging Heading H.S.
    [Show full text]
  • The Maven Definitive Guide
    Tim O'Brien (Sonatype, Inc.), John Casey (Sonatype, Inc.), Brian Fox (Sonatype, Inc.), Bruce Snyder (Sonatype, Inc.), Jason Van Zyl (Sonatype, Inc.), Eric Redmond () Copyright © 2006-2008 Copyright ......................................................................................................xiii 1. Creative Commons BY-ND-NC ........................................................xiii Foreword: Beta 0.13 ....................................................................................... xv Preface ........................................................................................................... xvi 1. How to Use this Book ........................................................................ xvi 2. Your Feedback ..................................................................................xvii 3. Font Conventions .............................................................................xviii 4. Maven Writing Conventions ............................................................xviii 5. Acknowledgements ............................................................................ xix 1. Introducing Apache Maven .......................................................................... 1 1.1. Maven... What is it? ........................................................................... 1 1.2. Convention Over Configuration ......................................................... 2 1.3. A Common Interface .......................................................................... 3 1.4. Universal Reuse through
    [Show full text]
  • Comparison of Four Popular Java Web Framework Implementations: Struts1.X, Webwork2.2X, Tapestry4, JSF1.2
    Comparison of Four Popular Java Web Framework Implementations: Struts1.X, WebWork2.2X, Tapestry4, JSF1.2 Peng Wang University of Tampere Department of Computer Sciences Master’s thesis Supervisor: Roope Raisamo May 2008 i University of Tampere Department of Computer Sciences Peng Wang: Comparison of Java Web Framework: Struts1.X, WebWork2.2X, Tapestry4, JSF1.2 Master’s thesis, 101 pages May 2008 Java web framework has been widely used in industry Java web applications in the last few years, its outstanding MVC design concept and supported web features provide great benefits of standardizing application structure and reducing development time and effort. However, after years of evolution, numerous Java web frameworks have been invented with different focuses, it becomes increasingly difficult for developers to select a suitable framework for their web applications. In this thesis, we conduct a general comparison of four popular Java web frameworks: Struts1.X, WebWork2.2X, Tapestry 4, JSF1.2, and we try to help web developers or technique managers gain a deep insight of these frameworks through the comparison and therefore be able to choose the right framework for their web applications. The comparison preformed by this thesis generally takes three steps: first it studies the infrastructure of four chosen frameworks through which the overall view of different frameworks could be presented to readers; second it selects six basic but essential web features and fulfill the feature comparison by discussing different frameworks’ web feature implementation; third it presents a case study application to provide practical support of feature comparison. The thesis ends with an evaluation of pros and cons of different framework web features and a general suggestion of web application types that the four chosen Java web frameworks can effectively fit in.
    [Show full text]
  • An Apache Princess
    AN APACHE PRINCESS A Tale of the Indian Frontier BY CHARLES KING AUTHOR OF "A DAUGHTER OF THE SIOUX," "THE COLONEL'S DAUGHTER," "FORT FRAYNE," "AN ARMY WIFE," ETC., ETC. NEW YORK THE HOBART COMPANY 1903 COPYRIGHT, 1903, BY THE HOBART COMPANY. CHAPTER I THE MEETING BY THE WATERS Under the willows at the edge of the pool a young girl sat daydreaming, though the day was nearly done. All in the valley was wrapped in shadow, though the cliffs and turrets across the stream were resplendent in a radiance of slanting sunshine. Not a cloud tempered the fierce glare of the arching heavens or softened the sharp outline of neighboring peak or distant mountain chain. Not a whisper of breeze stirred the drooping foliage along the sandy shores or ruffled the liquid mirror surface. Not a sound, save drowsy hum of beetle or soft murmur of rippling waters, among the pebbly shallows below, broke the vast silence of the scene. The snow cap, gleaming at the northern horizon, lay one hundred miles away and looked but an easy one-day march. The black upheavals of the Matitzal, barring the southward valley, stood sullen and frowning along the Verde, jealous of the westward range that threw their rugged gorges into early shade. Above and below the still and placid pool and but a few miles distant, the pine-fringed, rocky hillsides came shouldering close to the[10] stream, but fell away, forming a deep, semicircular basin toward the west, at the hub of which stood bolt-upright a tall, snowy flagstaff, its shred of bunting hanging limp and lifeless from the peak, and in the dull, dirt-colored buildings of adobe, ranged in rigid lines about the dull brown, flat-topped mesa, a thousand yards up stream above the pool, drowsed a little band of martial exiles, stationed here to keep the peace 'twixt scattered settlers and swarthy, swarming Apaches.
    [Show full text]
  • OSS Model Curriculum for Software Engineering Education - Skill-Sets and Sample Curriculum
    Request for public comments OSS Model Curriculum for Software Engineering Education - Skill-sets and Sample curriculum - Draft 1.0 April 24, 2009 Northeast Asia OSS Promotion Forum WG2 China OSS Promotion Union Japan OSS Promotion Forum Korea OSS Promotion Forum Copyrights © NEA OSS Promotion Forum, 2009 All rights reserved. This document will be endorsed and released as CC-BY under Creative Commons License by NEA OSS Promotion Forum. Until the official release, no part of this document shall be reproduced or utilized in any form or by any means, electronic or mechanical, including photocopying and microfilm without permission in writing from the NEA OSS Promotion Forum or Korea OSS Promotion Forum. 1 Each portion of this document is copyrighted by member companies and/or individuals in China OSS Promotion Union Japan OSS Promotion Forum Korea OSS Promotion Forum This document is licensed under the Creative Commons License with Attribution 2.0 international and later internationalized license (CC-BY 2.1JP / CC-BY 2.0KR / CC-BY 2.5CN) http://creativecommons.org/international/ http://creativecommons.org/licenses/by/2.1/jp/ http://creativecommons.org/licenses/by/2.0/kr/ http://creativecommons.org/licenses/by/2.5/cn/ + The permission to translate original document in any kind of languages with attribution and without modification from original is allowed (This notice is possibly subject to changes). 2 Table of Contents 1. Introduction .....................................................................................................................
    [Show full text]
  • Oracle® Private Cloud Appliance Licensing Information User Manual for Release 2.2
    Oracle® Private Cloud Appliance Licensing Information User Manual for Release 2.2 E71899-01 September 2016 Oracle Legal Notices Copyright © 2013, 2016, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs. No other rights are granted to the U.S.
    [Show full text]
  • WELLINGTON-1310150-V1
    Base End Code Description 2008 2009 2010 2011 2012 2013 2014 2015 2016 Rate Date CHAPTER 1 LIVE ANIMALS 01.01 Live horses, asses, mules and hinnies: 0101.10.00 - Pure-bred breeding animals free free 2008 0101.90.00 - Other free free 2008 01.02 Live bovine animals: 0102.10.00 - Pure-bred breeding animals free free 2008 0102.90.00 - Other free free 2008 01.03 Live swine: 0103.10.00 - Pure-bred breeding animals free free 2008 - Other: 0103.91.00 -- Weighing less than 50 kg free free 2008 0103.92.00 -- Weighing 50 kg or more free free 2008 01.04 Live sheep and goats: 0104.10.00 - Sheep free free 2008 0104.20.00 - Goats free free 2008 01.05 Live poultry, that is to say, fowls of the species Gallus domesticus, ducks, geese, turkeys and guinea fowls: - Weighing not more than 185 g: 0105.11.00 -- Fowls of the species Gallus domesticus free free 2008 0105.12.00 -- Turkeys free free 2008 0105.19.00 -- Other free free 2008 - Other: 0105.94.00 -- Fowls of the species Gallus domesticus free free 2008 0105.99.00 -- Other free free 2008 01.06 Other live animals - Mammals: 0106.11.00 -- Primates free free 2008 0106.12.00 -- Whales, dolphins and porpoises (mammals of the order Cetacea); manatees and dugongs (mammals of the order free free 2008 Sirenia) 0106.19.00 -- Other free free 2008 0106.20.00 - Reptiles (including snakes and turtles) free free 2008 - Birds 0106.31.00 -- Birds of prey free free 2008 0106.32.00 -- Psittaciformes (including parrots, parakeets, macaws and cockatoos) free free 2008 0106.39.00 -- Other free free 2008 0106.90.00 - Other
    [Show full text]
  • JSF Auf Dem Highway
    JSF auf dem Highway Orientation in Objects GmbH Oliver Wolff Weinheimer Str. 68 <[email protected]> 68309 Mannheim www.oio.de Version: 0.3 [email protected] Java, XML und Open Source seit 1998 ) Projekte ) ) Beratung ) ) Akademie ) • Schlüsselfertige Realisierung • Methoden, Standards und • Schulungen, Coaching, von Software Tools für die Entwicklung Weiterbildungsberatung, • Unterstützung laufender von offenen, unternehmens- Train & Solve-Programme Projekte weiten Systemen • Pilot- und Migrationsprojekte 2 Apache Shale - JSF auf dem Highway © 2008 Orientation in Objects GmbH 1 Der Sprecher Ajax mit Java JavaServer Faces QS mit Open Source XML mit Java Trainer Berater Entwickler 3 Apache Shale - JSF auf dem Highway © 2008 Orientation in Objects GmbH Gliederung • Einführung • Klein, aber Fein •Große Dinge • Highway • Diskussion & Ausblick 4 Apache Shale - JSF auf dem Highway © 2008 Orientation in Objects GmbH 2 Herkunft • Lange Geschichte • Maßgeblich beteiligt: Craig McClanahan • Ursprünglich Teil / Erweiterung von Struts: – Struts Action Framework / Struts Shale • Angedacht für Struts 2.0, jedoch verworfen • Transformation: – JSF als Basis – Apache Top-Level-Projekt (2006) 5 Apache Shale - JSF auf dem Highway © 2008 Orientation in Objects GmbH Warum Shale? • „JSF ist ein UI-Framework für Webanwendungen“ • JSF Design: – Fokus auf Komponenten-APIs – Lebenszyklus nicht perfekt – Aber: Alle Framework-Aspekte leicht erweiterbar Æ Grundlage für Anwendungs-Frameworks Æ JSF = Komponenten-Framework JSF + Shale = Anwendungs-Framework 6 Apache Shale - JSF
    [Show full text]
  • Simplifying Javaserver™ Faces Component Development Kito Mann Author of Javaserver Faces in Action Virtua, Inc
    Simplifying JavaServer™ Faces Component Development Kito Mann Author of JavaServer Faces in Action Virtua, Inc. www.virtua.com Session TS-6178 2007 JavaOneSM Conference | Session TS-6178 | Simplifying JavaServer™ Faces Component Development Techniques for rapidly developing JavaServer Faces components. Writing JavaServer Faces components doesn’t have to be a pain. 2007 JavaOneSM Conference | Session TS-6178 | 2 About Kito Mann • Author, JavaServer Faces in Action • Independent trainer, consultant, architect, mentor • Internationally-recognized speaker • JavaOneSM Conference, JavaZone, TSS Symposium, Javapolis, NFJS, AJAX World, etc. • Founder, JSF Central • http://www.jsfcentral.com • Java Community ProcessSM (JCPSM) Member • JavaServer Faces 1.2, JavaServer Pages™ (JSP™) 2.1, Design-Time API for JavaBeans™ Architecture, Design-Time Metadata for JavaServer Faces Components, WebBeans, etc. • Experience with Java™ Platform since its release in 1995, web development since 1993 2007 JavaOneSM Conference | Session TS-6178 | 3 Agenda JavaServer Faces and UI components UI components the standard way Simplifying component registration Using templating Resolving resources Intuition: a more optimal solution Summary 2007 JavaOneSM Conference | Session TS-6178 | 4 Agenda JavaServer Faces and UI components UI components the standard way Simplifying component registration Using templating Resolving resources Intuition: a more optimal solution Summary 2007 JavaOneSM Conference | Session TS-6178 | 5 JavaServer Faces Components Overview • Standard web
    [Show full text]