1 16 package org.apache.cocoon.components.repository.helpers; 17 18 import java.util.List ; 19 import java.util.Map ; 20 import java.util.Set ; 21 22 import org.apache.cocoon.ProcessingException; 23 import org.apache.cocoon.components.source.helpers.SourceProperty; 24 import org.w3c.dom.Node ; 25 26 30 public interface RepositoryPropertyHelper { 31 32 41 SourceProperty getProperty(String uri, String name, String namespace) throws ProcessingException; 42 43 51 Map getProperties(String uri, Set propNames) throws ProcessingException; 52 53 60 List getAllProperties(String uri) throws ProcessingException; 61 62 72 boolean setProperty(String uri, String name, String namespace, String value) throws ProcessingException; 73 74 84 boolean setProperty(String uri, String name, String namespace, Node value) throws ProcessingException; 85 86 94 boolean setProperties(String uri, Map properties) throws ProcessingException; 95 96 } | Popular Tags |