View Javadoc
1 /* 2 * Copyright (c) 2003 3 * Information Desire GmbH 4 * All rights reserved. 5 */ 6 package com.infodesire.infobit.data; 7 8 /*** 9 * binary infobit content. will provide size and mime type. actual data will be 10 * provided by infobit manager 11 * 12 * @author konstantin 13 * @created August 15, 2003 14 * @version $Revision: 1.4 $ 15 */ 16 public interface BinaryContent extends PrimitiveContent { 17 18 /*** 19 * mime type of binary content. 20 * 21 * @return The MimeType value 22 * @hibernate.property 23 */ 24 public String getMimeType(); 25 26 } 27

This page was automatically generated by Maven