1 package org.opencrx.kernel.document1.cci; 14 15 public interface Media 16 extends 17 org.openmdx.base.cci.BasicObject { 18 22 27 public java.io.InputStream getContent( 28 ); 29 30 36 public long getContent( 37 java.io.OutputStream stream, 38 long position 39 ); 40 41 42 46 50 public void setContent( 51 java.io.InputStream newValue 52 ); 53 54 59 public void setContent( 60 java.io.InputStream newValue, 61 long length 62 ); 63 64 65 72 public Long getContentLength( 73 ); 74 75 82 public String getContentMimeType( 83 ); 84 85 89 90 95 public void setContentMimeType( 96 String newValue 97 ); 98 99 106 public String getContentName( 107 ); 108 109 113 114 119 public void setContentName( 120 String newValue 121 ); 122 123 130 public String getDescription( 131 ); 132 133 137 138 143 public void setDescription( 144 String newValue 145 ); 146 147 } 151 | Popular Tags |