1 package org.xmldb.api.base; 2 3 55 56 62 public interface Resource { 63 73 Collection getParentCollection() throws XMLDBException; 74 75 84 String getId() throws XMLDBException; 85 86 98 String getResourceType() throws XMLDBException; 99 100 109 Object getContent() throws XMLDBException; 110 111 120 void setContent(Object value) throws XMLDBException; 121 } 122 123 | Popular Tags |