View Javadoc
1   /*
2    * Copyright 2009 the original author or authors.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    *     http://www.apache.org/licenses/LICENSE-2.0
9    *     
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.openehealth.ipf.commons.ihe.xds.core.ebxml;
17  
18  import org.openehealth.ipf.commons.ihe.xds.core.metadata.AvailabilityStatus;
19  
20  import javax.activation.DataHandler;
21  
22  /**
23   * Encapsulation of the ebXML classes for {@code ExtrinsicObjectType}.
24   * <p>
25   * This class contains convenience methods and provides a version independent
26   * abstraction of the ebXML data structure.
27   * @author Jens Riemschneider
28   */
29  public interface EbXMLExtrinsicObject extends EbXMLRegistryObject {
30      /**
31       * @return the mime type of this object.
32       */
33      String getMimeType();
34      
35      /**
36       * @param mimeType 
37       *          the mime type of this object.
38       */
39      void setMimeType(String mimeType);
40  
41      /**
42       * @return the status of this entry.
43       */
44      AvailabilityStatus getStatus();
45      
46      /**
47       * @param status
48       *          the status of this entry.
49       */
50      void setStatus(AvailabilityStatus status);
51  
52      /**
53       * @return document returned in an ITI-63 response.
54       */
55      DataHandler getDataHandler();
56  
57      /**
58       * @param dataHandler
59       *      document to be returned in an ITI-63 response.
60       */
61      void setDataHandler(DataHandler dataHandler);
62  }