Java Doc for ServiceInfo.java in  » GIS » GeoTools-2.4.1 » org » geotools » catalog » 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 » GeoTools 2.4.1 » org.geotools.catalog 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.geotools.catalog.ServiceInfo

All known Subclasses:   org.geotools.catalog.defaults.DefaultServiceInfo,
ServiceInfo
public interface ServiceInfo (Code)
Provides metadata information about a service.

Information is provided in the form of a single, simple, Java bean. You can treat this bean as a "view" on more complete metadata information that may be accessable via a subclass (or other resolve target). This bean offers up service metadata information to the the GeoTools catalog implementations for searching.

Much of the names and motivation have been taken from Dublin Code and it's application profile for RDF.


author:
   David Zwiers, Refractions Research
author:
   Justin Deoliveira, The Open Planning Project
since:
   0.6




Method Summary
 StringgetAbstract()
     Return the service abstract.
 StringgetDescription()
     Returns the service description.
 IcongetIcon()
     Base symbology (with out decorators) representing this IService.

The Icon returned should conform the the Eclipse User Interface Guidelines (16x16 image with a 16x15 glyph centered).

This plug-in provides default images based on service type:


 <b>return</b> ISharedImages.getImagesDescriptor( IService );
 

    Any LabelProvider should use the default image, a label decorator should be used to pick up these images in a separate thread.

 String[]getKeywords()
     Returns the service keywords.
 URIgetPublisher()
    
 URIgetSchema()
     Returns the xml schema namespace for this service type.
 URIgetSource()
     Returns the service source.
 StringgetTitle()
     Returns the service title, may be empty or null if unsupported.



Method Detail
getAbstract
String getAbstract()(Code)
Return the service abstract. This use is understood to be in agreement with OGC Open Web Services, implementors may use either abstract or description as needed.

When working with an Open Web Service this method is a direct match, you may also choose it when providing actual dublin-core information if the description element is specifically an abstract.

text Abstract of document-like services



getDescription
String getDescription()(Code)
Returns the service description. This use is understood to be in agreement with "dublin-core", implementors may use either abstract or description as needed.

Dublin Core: A textual description of the content of the resource, including abstracts in the case of document-like objects or content descriptions in the case of visual resources. When providing actual dublin-core metadata you can gather up all the description information into a single string for searching. Description of visual contents




getIcon
Icon getIcon()(Code)
Base symbology (with out decorators) representing this IService.

The Icon returned should conform the the Eclipse User Interface Guidelines (16x16 image with a 16x15 glyph centered).

This plug-in provides default images based on service type:


 <b>return</b> ISharedImages.getImagesDescriptor( IService );
 

    Any LabelProvider should use the default image, a label decorator should be used to pick up these images in a separate thread. This allows services like WFS make blocking request to pick up the image from their GetCapabilities.

    Icon symbolizing this IService.



getKeywords
String[] getKeywords()(Code)
Returns the service keywords. Maps to the Dublin Core Subject element.



getPublisher
URI getPublisher()(Code)
Return the service publisher



getSchema
URI getSchema()(Code)
Returns the xml schema namespace for this service type. Maps to the Dublin Code Format element



getSource
URI getSource()(Code)
Returns the service source. Maps to the Dublin Core Server Element



getTitle
String getTitle()(Code)
Returns the service title, may be empty or null if unsupported.

Note this is always metadata, and is in user terms.

title, may be empty, null if unsupported.



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