1 18 package org.enhydra.convert.xml; 19 20 import java.io.File ; 22 import java.io.IOException ; 23 import java.io.OutputStream ; 24 import java.io.Writer ; 25 26 import java.io.Serializable ; 28 29 public interface RunAs extends Serializable { 30 31 public static final String ZEUS_XML_NAME = "run-as"; 32 public static final String [] ZEUS_ATTRIBUTES = {"id"}; 33 public static final String [] ZEUS_ELEMENTS = {"description", "role-name"}; 34 35 public Description getDescription(); 36 37 public void setDescription(Description description); 38 39 public RoleName getRoleName(); 40 41 public void setRoleName(RoleName roleName); 42 43 public String getId(); 44 45 public void setId(String id); 46 47 public void marshal(File file) throws IOException ; 48 49 public void marshal(OutputStream outputStream) throws IOException ; 50 51 public void marshal(Writer writer) throws IOException ; 52 53 public void setDocType(String name, String publicID, String systemID); 54 55 public void setOutputEncoding(String outputEncoding); 56 57 } 58 | Popular Tags |