Java Doc for CollectionHTTPStub.java in  » Content-Management-System » harmonise » com » ibm » webdav » protocol » http » 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 » Content Management System » harmonise » com.ibm.webdav.protocol.http 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.ibm.webdav.protocol.http.ResourceHTTPStub
      com.ibm.webdav.protocol.http.CollectionHTTPStub

CollectionHTTPStub
public class CollectionHTTPStub extends ResourceHTTPStub implements IRCollection(Code)
A CollectionHTTPStub is a ResourceHTTPStub that contains other resources including other CollectionHTTPStubs. It provides a concrete, client side implementation of Collection for client/server communication over HTTP.
author:
   Jim Amsden <jamsden@us.ibm.com>



Constructor Summary
public  CollectionHTTPStub()
    
public  CollectionHTTPStub(String url)
     Construct a CollectionHTTPStub with the given URL.
public  CollectionHTTPStub(String protocol, String host, int port, String file)
     Create a CollectionHTTPStub from the given URL components.
Parameters:
  protocol - the protocol to use, http:, rmi:, or iiop:
Parameters:
  host - the name or IP addres of the server host.
public  CollectionHTTPStub(String protocol, String host, String file)
     Create a CollectionHTTPStub from the given URL components.
public  CollectionHTTPStub(URL url, TargetSelector targetSelector)
     Construct a CollectionHTTPStub with the given URL.
public  CollectionHTTPStub(URL context, String spec)
     Construct a CollectionHTTPStub with the given URL specification in the given context. The resource having the url may not exist as this constructor does not access the resource from the server.

Method Summary
public  MultiStatuscopy(ResourceContext context, String destinationURL, boolean overwrite, Vector propertiesToCopy, String depth)
     Lock this resource collection and potentially all its members based on the given parameters.
public  MultiStatuscreateCollection(ResourceContext context, Document contents)
     Actually create the collection in the repository.
public  MultiStatusgetProperties(ResourceContext context, PropertyName names, String depth)
     Get the named properties for this resource and (potentially) its children.
public  MultiStatusgetProperties(ResourceContext context, String depth)
     Get all the properties for this resource and (potentially) its children.
public  MultiStatusgetPropertyNames(ResourceContext context, String depth)
     Get the names of all properties for this resource and (potentially) its children.
public  MultiStatuslock(ResourceContext context, String scope, String type, int timeout, Element owner, String depth)
     Lock this resource collection and potentially all its members based on the given parameters.


Constructor Detail
CollectionHTTPStub
public CollectionHTTPStub()(Code)



CollectionHTTPStub
public CollectionHTTPStub(String url) throws WebDAVException(Code)
Construct a CollectionHTTPStub with the given URL. The collection having the url may not exist as this constructor does not access the resource from the server. Use exists() or attmept to get the members of the collection to see if it exists. Other constructors are provided using parameters for the various parts of the URL. See java.net.URLConnection.
Parameters:
  url - the URL of the resource.
exception:
  com.ibm.webdav.WebDAVException -



CollectionHTTPStub
public CollectionHTTPStub(String protocol, String host, int port, String file) throws WebDAVException(Code)
Create a CollectionHTTPStub from the given URL components.
Parameters:
  protocol - the protocol to use, http:, rmi:, or iiop:
Parameters:
  host - the name or IP addres of the server host. Using the client host name,or 'localhost' without a port uses local access with no RPC or server required.
Parameters:
  port - the TCP port to use. HTTP uses 80 by default.
Parameters:
  file - the resource URL relative to the server including any query string, etc.
exception:
  com.ibm.webdav.WebDAVException -
See Also:   URLConnection
See Also:   com.ibm.webdav.ResourceFactory



CollectionHTTPStub
public CollectionHTTPStub(String protocol, String host, String file) throws WebDAVException(Code)
Create a CollectionHTTPStub from the given URL components. This constructor uses the default HTTP port.
Parameters:
  protocol - the protocol to use, http:, rmi:, or iiop:
Parameters:
  host - the name or IP addres of the server host. Using the client host name,or 'localhost' without a port uses local access with no RPC or server required.
Parameters:
  file - the resource URL relative to the server including any query string, etc.
exception:
  com.ibm.webdav.WebDAVException -
See Also:   com.ibm.webdav.ResourceFactory



CollectionHTTPStub
public CollectionHTTPStub(URL url, TargetSelector targetSelector) throws WebDAVException(Code)
Construct a CollectionHTTPStub with the given URL. The resource having the url may not exist as this constructor does not access the resource from the server. Use exists() or attmept to get the contents of the resource to see if it exists. Other constructors are provided using parameters for the various parts of the URL. See java.net.URLConnection for details. A ResourceFactory may also be used to construct instances of a Resource.
Parameters:
  url - the URL of the resource.
Parameters:
  targetSelector - the revision target selector for this Collection
exception:
  com.ibm.webdav.WebDAVException -
See Also:   URLConnection
See Also:   com.ibm.webdav.ResourceFactory



CollectionHTTPStub
public CollectionHTTPStub(URL context, String spec) throws WebDAVException(Code)
Construct a CollectionHTTPStub with the given URL specification in the given context. The resource having the url may not exist as this constructor does not access the resource from the server. Use exists() or attmept to get the contents of the resource to see if it exists. Other constructors are provided using parameters for the various parts of the URL. See java.net.URLConnection for details. A ResourceFactory may also be used to construct instances of a Collection.
Parameters:
  context - a URL giving the context in which the spec is evaluated
Parameters:
  spec - a URL whose missing parts are provided by the context
exception:
  com.ibm.webdav.WebDAVException -
See Also:   URLConnection
See Also:   com.ibm.webdav.ResourceFactory




Method Detail
copy
public MultiStatus copy(ResourceContext context, String destinationURL, boolean overwrite, Vector propertiesToCopy, String depth) throws WebDAVException(Code)
Lock this resource collection and potentially all its members based on the given parameters. This allows control of the lock scope (exclusive or shared) the lock type (write), owner information, etc.
Parameters:
  scope - the scope of the lock, exclusive or shared
Parameters:
  type - the type of the lock, currently only write
Parameters:
  depth -
  • shallow lock only this resource
  • /** Copy this resource to the destination URL.Partial results are possible, check the returned status for details.
    Parameters:
      destinationURL - the destination
    Parameters:
      overwrite - true implies overrite the destination if it exists
    Parameters:
      propertiesToCopy - a collection of properties that must be copied orthe method will fail. propertiesToCopy may have one of the following values:
    • null - ignore properties that cannot be copied
    • empty collection - all properties must be copied or the method will fail
    • a collection of URIs - a list of the properties that must be copiedor the method will fail
    the status of the copy operation for each resource copied
    exception:
      com.ibm.webdav.WebDAVException -



createCollection
public MultiStatus createCollection(ResourceContext context, Document contents) throws WebDAVException(Code)
Actually create the collection in the repository. The resource indicated by the URL must not already exist. All ancestors of this URL must already exist.
Parameters:
  contents - an XML Document describing the members of this collection, bodiesof members, and properties on the collections or members. Not completely defined inversion 10 of the WebDAV specification Multistatus describing the resultof the operation
exception:
  com.ibm.webdav.WebDAVException -



getProperties
public MultiStatus getProperties(ResourceContext context, PropertyName names, String depth) throws WebDAVException(Code)
Get the named properties for this resource and (potentially) its children.
Parameters:
  names - an arrary of property names to retrieve.
Parameters:
  depth - an indicator for immediate members or recursively all children.
  • immediateMembers: propeprties of this resource and its immediate children
  • allMembers: properties of this resource and recursively all its children
a MultiStatus of PropertyResponses
exception:
  com.ibm.webdav.WebDAVException -



getProperties
public MultiStatus getProperties(ResourceContext context, String depth) throws WebDAVException(Code)
Get all the properties for this resource and (potentially) its children.
Parameters:
  depth - an indicator for immediate members or recursively all children.
  • thisResource: propeprties of this resource
  • immediateMembers: propeprties of this resource and its immediate children
  • allMembers: properties of this resource and recursively all its children
a MultiStatus of PropertyResponses
exception:
  com.ibm.webdav.WebDAVException -



getPropertyNames
public MultiStatus getPropertyNames(ResourceContext context, String depth) throws WebDAVException(Code)
Get the names of all properties for this resource and (potentially) its children.
Parameters:
  depth - an indicator for immediate members or recursively all children.
  • thisResource: propeprties of this resource
  • immediateMembers: propeprties of this resource and its immediate children
  • allMembers: properties of this resource and recursively all its children
a MultiStatus of PropertyResponses(PropertyValue.value is always null, PropertyValue.status contains the status)
exception:
  com.ibm.webdav.WebDAVException -



lock
public MultiStatus lock(ResourceContext context, String scope, String type, int timeout, Element owner, String depth) throws WebDAVException(Code)
Lock this resource collection and potentially all its members based on the given parameters. This allows control of the lock scope (exclusive or shared) the lock type (write), owner information, etc.
Parameters:
  scope - the scope of the lock, exclusive or shared
Parameters:
  type - the type of the lock, currently only write
Parameters:
  depth -
  • shallow lock only this resource
  • deep lock this resource and all its children

Parameters:
  timeout - the number of seconds before the lock times out or0 for infinite timeout.
Parameters:
  owner - an XML element containing useful information that can beused to identify the owner of the lock. An href to a home page, anemail address, phone number, etc. Can be null if no owner informationis provided. a MultiStatus containing a lockdiscovery property indicatingthe results of the lock operation.
exception:
  com.ibm.webdav.WebDAVException -



Fields inherited from com.ibm.webdav.protocol.http.ResourceHTTPStub
protected WebDAVURLConnection connection(Code)(Java Doc)
protected ResourceContext context(Code)(Java Doc)
protected static Properties properties(Code)(Java Doc)
protected URL url(Code)(Java Doc)

Methods inherited from com.ibm.webdav.protocol.http.ResourceHTTPStub
public void closeContentsOutputStream(ResourceContext context) throws WebDAVException(Code)(Java Doc)
public void closeContentsOutputStream(ResourceContext context, String sContentType) throws WebDAVException(Code)(Java Doc)
public MultiStatus copy(ResourceContext context, String destinationURL, boolean overwrite, Vector propertiesToCopy) throws WebDAVException(Code)(Java Doc)
public MultiStatus delete(ResourceContext context) throws WebDAVException(Code)(Java Doc)
public InputStream getContentsInputStream(ResourceContext context) throws WebDAVException(Code)(Java Doc)
public OutputStream getContentsOutputStream(ResourceContext context) throws WebDAVException(Code)(Java Doc)
public void getMetaInformation(ResourceContext context) throws WebDAVException(Code)(Java Doc)
public MultiStatus getProperties(ResourceContext context) throws WebDAVException(Code)(Java Doc)
public MultiStatus getProperties(ResourceContext context, PropertyName names) throws WebDAVException(Code)(Java Doc)
public MultiStatus getPropertyNames(ResourceContext context) throws WebDAVException(Code)(Java Doc)
protected byte[] getResponseEntity() throws WebDAVException(Code)(Java Doc)
protected void getResults() throws WebDAVException(Code)(Java Doc)
public MultiStatus lock(ResourceContext context, String scope, String type, int timeout, Element owner) throws WebDAVException(Code)(Java Doc)
protected MultiStatus lockResponseToMultiStatus() throws WebDAVException(Code)(Java Doc)
public MultiStatus move(ResourceContext context, String destinationURL, boolean overwrite, Vector propertiesToMove) throws WebDAVException(Code)(Java Doc)
public byte[] performWith(ResourceContext context, String args) throws WebDAVException(Code)(Java Doc)
protected void putRequestEntity(byte[] value) throws WebDAVException(Code)(Java Doc)
public MultiStatus refreshLock(ResourceContext context, String lockToken, int timeout) throws WebDAVException(Code)(Java Doc)
protected MultiStatus responseToMultiStatus() throws WebDAVException(Code)(Java Doc)
public MultiStatus setProperties(ResourceContext context, Document updates) throws WebDAVException(Code)(Java Doc)
protected void setupRequest(String method) throws WebDAVException(Code)(Java Doc)
public MultiStatus unlock(ResourceContext context, String lockToken) throws WebDAVException(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.