Java Doc for GetMapKvpRequestReader.java in  » GIS » GeoServer » org » geoserver » wms » kvp » 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 » GIS » GeoServer » org.geoserver.wms.kvp 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.geoserver.ows.KvpRequestReader
      org.geoserver.wms.kvp.GetMapKvpRequestReader

GetMapKvpRequestReader
public class GetMapKvpRequestReader extends KvpRequestReader implements HttpServletRequestAware(Code)


Field Summary
 Datacatalog
    
 FilterFactoryfilterFactory
    
 GetMapgetMap
    
 HttpServletRequesthttpRequest
    
 booleanlaxStyleMatchAllowed
     This flags allows the kvp reader to go beyond the SLD library mode specification and match the first style that can be applied to a given layer.
 StyleFactorystyleFactory
    
 booleanstyleRequired
    
 WMSwms
    

Constructor Summary
public  GetMapKvpRequestReader(GetMap getMap, WMS wms)
    

Method Summary
public static  voidaddStyles(GetMapRequest request, MapLayerInfo currLayer, StyledLayer layer, List layers, List styles)
     the correct thing to do its grab the style from styledLayers[i] inside the styledLayers[i] will either be : a) nothing - in which case grab the layer's default style b) a set of: i) NameStyle -- grab it from the pre-loaded styles ii)UserStyle -- grab it from the sld the user uploaded NOTE: we're going to get a set of layer->style pairs for (b).
public  ObjectcreateRequest()
    
 CoverageInfofindCoverageLayer(String layerName)
    
 FeatureTypeInfofindFeatureLayer(String layerName)
    
public static  StylefindStyle(GetMapRequest request, String currStyleName)
    
public static  voidinitializeInlineFeatureLayer(GetMapRequest getMapRequest, UserLayer ul, MapLayerInfo currLayer)
     Method to initialize a user layer which contains inline features.
public  booleanisLaxStyleMatchAllowed()
     This flags allows the kvp reader to go beyond the SLD library mode specification and match the first style that can be applied to a given layer.
public  booleanisStyleRequired()
    
protected  MapLayerInfo[]parseLayers(List values, URL remoteOwsUrl, String remoteOwsType)
    
protected  ListparseStyles(List styleNames)
    
public  voidprocessSld(GetMapRequest request, StyledLayerDescriptor sld, List styleNames)
    
public static  voidprocessStandaloneSld(GetMapRequest request, StyledLayerDescriptor sld)
    
public  Objectread(Object request, Map kvp, Map rawKvp)
    
public  voidsetFilterFactory(FilterFactory filterFactory)
    
public  voidsetHttpRequest(HttpServletRequest httpRequest)
    
public  voidsetLaxStyleMatchAllowed(boolean laxStyleMatchAllowed)
    
public  voidsetStyleFactory(StyleFactory styleFactory)
    
public  voidsetStyleRequired(boolean styleRequired)
    

Field Detail
catalog
Data catalog(Code)
The data catalog



filterFactory
FilterFactory filterFactory(Code)
filter factory



getMap
GetMap getMap(Code)
get map



httpRequest
HttpServletRequest httpRequest(Code)
current request



laxStyleMatchAllowed
boolean laxStyleMatchAllowed(Code)
This flags allows the kvp reader to go beyond the SLD library mode specification and match the first style that can be applied to a given layer. This is for backwards compatibility



styleFactory
StyleFactory styleFactory(Code)
style factory



styleRequired
boolean styleRequired(Code)
Flag to control wether styles are mandatory



wms
WMS wms(Code)
The WMS service, that we use to pick up base layer definitions




Constructor Detail
GetMapKvpRequestReader
public GetMapKvpRequestReader(GetMap getMap, WMS wms)(Code)




Method Detail
addStyles
public static void addStyles(GetMapRequest request, MapLayerInfo currLayer, StyledLayer layer, List layers, List styles) throws WmsException(Code)
the correct thing to do its grab the style from styledLayers[i] inside the styledLayers[i] will either be : a) nothing - in which case grab the layer's default style b) a set of: i) NameStyle -- grab it from the pre-loaded styles ii)UserStyle -- grab it from the sld the user uploaded NOTE: we're going to get a set of layer->style pairs for (b). these are added to layers,styles NOTE: we also handle some featuretypeconstraints
Parameters:
  request -
Parameters:
  currLayer -
Parameters:
  layer -
Parameters:
  layers -
Parameters:
  styles -



createRequest
public Object createRequest() throws Exception(Code)



findCoverageLayer
CoverageInfo findCoverageLayer(String layerName) throws WmsException(Code)



findFeatureLayer
FeatureTypeInfo findFeatureLayer(String layerName) throws WmsException(Code)



findStyle
public static Style findStyle(GetMapRequest request, String currStyleName)(Code)
DOCUMENT ME!
Parameters:
  request -
Parameters:
  currStyleName - the configured style named currStyleName ornull if such a style does not exists on thisserver.



initializeInlineFeatureLayer
public static void initializeInlineFeatureLayer(GetMapRequest getMapRequest, UserLayer ul, MapLayerInfo currLayer) throws Exception(Code)
Method to initialize a user layer which contains inline features.
Parameters:
  httpRequest - The request
Parameters:
  mapLayer - The map layer.
throws:
  Exception -



isLaxStyleMatchAllowed
public boolean isLaxStyleMatchAllowed()(Code)
This flags allows the kvp reader to go beyond the SLD library mode specification and match the first style that can be applied to a given layer. This is for backwards compatibility



isStyleRequired
public boolean isStyleRequired()(Code)



parseLayers
protected MapLayerInfo[] parseLayers(List values, URL remoteOwsUrl, String remoteOwsType) throws Exception(Code)



parseStyles
protected List parseStyles(List styleNames) throws Exception(Code)



processSld
public void processSld(GetMapRequest request, StyledLayerDescriptor sld, List styleNames) throws WmsException(Code)



processStandaloneSld
public static void processStandaloneSld(GetMapRequest request, StyledLayerDescriptor sld)(Code)
This one processes an SLD in non library mode, that is, it assumes it's the definition of the map
Parameters:
  request -
Parameters:
  sld -



read
public Object read(Object request, Map kvp, Map rawKvp) throws Exception(Code)



setFilterFactory
public void setFilterFactory(FilterFactory filterFactory)(Code)



setHttpRequest
public void setHttpRequest(HttpServletRequest httpRequest)(Code)



setLaxStyleMatchAllowed
public void setLaxStyleMatchAllowed(boolean laxStyleMatchAllowed)(Code)



setStyleFactory
public void setStyleFactory(StyleFactory styleFactory)(Code)



setStyleRequired
public void setStyleRequired(boolean styleRequired)(Code)



Fields inherited from org.geoserver.ows.KvpRequestReader
protected static Logger LOGGER(Code)(Java Doc)

Methods inherited from org.geoserver.ows.KvpRequestReader
public Object createRequest() throws Exception(Code)(Java Doc)
final public boolean equals(Object obj)(Code)(Java Doc)
final public Class getRequestBean()(Code)(Java Doc)
final public int hashCode()(Code)(Java Doc)
public Object read(Object request, Map kvp, Map rawKvp) throws Exception(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.