|
||||||||||
| PREV CLASS (src) NEXT CLASS (src) | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
This interface defines the local home interface of media entity EJBs and offers services to create and to query persistent and mutable media objects. It extends javax.ejb.EJBLocalHome.
The create method provided allows the creation of empty media entity EJBs. These instances need to be filled with content in a subsequent step, by using the setName() and setContent() methods.
Sometimes networks of associated non-embedded media content can become quite complex. In order to allow the consistent handling of such complex content structures the importMedia() and exportMedia() operations allows for consistent import, creation and export or content if for example many non-embedded parents share identical children. Using the related methods in the media entity EJB component interfaces would lead to multiple versions of the shared children being imported/exported.
Finally, the publishContent() and publishMedia() operations publish a transient or persistent media object to a protocol server, and returns a URL or content that allows clients to access the protocol and server specific copies of said medium and its children. This abstraction allows applications to access proprietary content delivery services, without exposing the application to the details of the implementation of those services. For example, multiple and distributed streaming server technologies can be used underneath a publish implementation. Implementations of this specification are not bound to a specific algorithm to determine a suitable protocol server. Theoretical possibilities range from dynamic selection from a pre-configured server pool to relating suitable protocol servers statically with each media entity. The resulting URL/content is either pointing directly to the cached copy of the media object with a protocol type of http, rtsp or similar, or it is an http URL pointing to a managed meta-medium that points to said cached copy.
| Field Summary | |
static byte |
TRANSFER_TYPE_BURST
|
static byte |
TRANSFER_TYPE_STREAM
|
| Method Summary | |
MediaEntityLocal (src) |
create()
Creates a new media entity EJB with a generated identity key, the value of System.currentTimeMillis() as value of the lastModified
property, and null as value for all other properties. |
java.net.URL[] |
exportMedia(MediaEntityLocal (src) [] sourceMedia,
java.net.URL targetDirectoryLocation)
Copies the content of the given media entity EJBs and all their direct and indirect children to the given targetDirectoryLocation, i.e. |
java.util.Collection |
findByPartialDescription(java.lang.String partialDescription)
Returns all media entities in the persistent store whose description contains the given String. |
java.util.Collection |
findByPartialLocation(java.lang.String partialLocation)
Returns all media entities in the persistent store whose location URL contains the given String. |
MediaEntityLocal (src) |
findByPrimaryKey(java.lang.String identity)
Returns the media entity with the given identity. |
MediaEntityLocal (src) [] |
importMedia(java.net.URL[] sourceLocations,
java.lang.String[] names)
Imports the given media objects and all their direct and indirect children from the given source locations and creates new EJBs for said media objects and children. |
java.net.URL |
publishContent(Media (src) content,
byte transferType,
ProtocolConstraints (src) constraints)
This operation publishes persistent or transient media content to a protocol server and returns a URL. |
Media (src) |
publishMedia(MediaEntityLocal (src) [] playlist,
byte transferType,
ProtocolConstraints (src) constraints)
This operation publishes the given playlist of persistent media entities to a protocol server and returns a meta medium that allows clients to access the protocol and server specific copies of said playlist and its children. |
| Methods inherited from interface javax.ejb.EJBLocalHome (src) |
remove |
| Field Detail |
public static final byte TRANSFER_TYPE_STREAM
public static final byte TRANSFER_TYPE_BURST
| Method Detail |
public MediaEntityLocal (src) create()
throws CreateException (src) ,
MediaException (src)
System.currentTimeMillis() as value of the lastModified
property, and null as value for all other properties.
Please note most of the methods of the Media Entity returned will throw
exceptions until the name and either the location or the content
properties are set.
CreateException (src) - is thrown if a problem related to EJB
creation occurs.
MediaException (src)
public java.net.URL[] exportMedia(MediaEntityLocal (src) [] sourceMedia,
java.net.URL targetDirectoryLocation)
throws MediaException (src)
If the given targetDirectoryLocation is null,
a default export directory location is used. The operation makes sure
that each media entity EJB affected corresponds to exactly one media
object created. Note that the names of the copied media objects may
differ from the original ones, that the operation makes sure no existing
files are overwritten by this operation, and that implementations are
permitted to copy children to subdirectories of the given
targetDirectoryLocation. Also note that the resulting targetLocation
URLs are returned in the order of their respective media entity EJBs.
Duplicate media entity EJBs result in targetLocation URLs
returned in multiple array slots, null media entity EJBs
result in respective null values in the result. Finally,
note that not all media objects exported are necessarily returned, just
the ones for which corresponding media entity EJBs were passed.
sourceMedia - targetDirectoryLocation -
java.lang.NullPointerException - if the given source media array is
null.
ContentAccessException (src) - in case content transfer fails.
MediaFormatException (src) - if there is a problem dealing with
one of the media formats involved.
MalformedLocationException (src) - if the URL given is
malformed or has a protocol type not supported by the
implementation.
MediaException (src)
public java.util.Collection findByPartialDescription(java.lang.String partialDescription)
throws FinderException (src)
null.
Passing in null or a partial description not present in
the data store will result in an empty collection.
partialDescription - description.
FinderException (src) - if a finder problem occurs.
public java.util.Collection findByPartialLocation(java.lang.String partialLocation)
throws FinderException (src)
null. Passing
in null or a partial location not present in the data
store will result in an empty collection.
partialLocation - location.
FinderException (src) - if a finder problem occurs.
public MediaEntityLocal (src) findByPrimaryKey(java.lang.String identity)
throws FinderException (src)
identity - identity.
java.lang.NullPointerException - if the value passed is null.
FinderException (src) - if a finder problem occurs or no media
entity is found.
public MediaEntityLocal (src) [] importMedia(java.net.URL[] sourceLocations,
java.lang.String[] names)
throws CreateException (src) ,
MediaException (src)
The operation returns an array of media entity EJBs of the same size as the source location array. The elements of the resulting array are based on the content of the corresponding elements of the source location array.
The operation makes sure that each media object affected corresponds to exactly one media entity EJB created in the operations context. Note that the resulting Media ent ity EJBs are returned in the order of their respective sourceLocations. Duplicate sourceLocations result in media entity EJBs returned in multiple array slots, null sourceLocations result in respective null values in the result. If a source location is given multiple times with differing names, one of the names is picked for the resulting media entity EJB. Finally, note that not all media entity EJBs created are necessarily returned, just the ones for which corresponding location URLs were passed.
sourceLocations - source locations.names - names.
null.
java.lang.IllegalArgumentException - if the two arrays passed
mismatch in length or if one or more of the name arguments passed
contain invalid characters.
CreateException (src) - if the creation of a media entity EJB
fails.
ContentAccessException (src) - if content transfer fails.
MediaFormatException (src) - if there's a problem dealing with
one of the media formats involved.
MalformedLocationException (src) - if one of the URLs given is
malformed or has a protocol type not supported by the
implementation.
ContentTooLargeException (src) - if one the media entity EJB
contents would become larger than supported by the
implementation.
MediaException (src)
public java.net.URL publishContent(Media (src) content,
byte transferType,
ProtocolConstraints (src) constraints)
throws MediaException (src)
The kind of protocol server chosen may be determined by the given transferType. Specified values are:
Specified protocol constraint types are:
In case the selected protocol server supports more than one client type, the client type is not constrained and a meta-medium has to be generated, said meta-medium is generated for the default client type of the selected protocol server. If in a similar case there is more than one constraint value for the client type, the constraint value is interpreted as a priority list and therefore the meta-medium is generated for the first client type in that list that is supported by the selected protocol server.
content - content.transferType - transfer type.constraints - constraints.
java.lang.NullPointerException - if the media object passed is
null.
java.lang.IllegalArgumentException - if a transfer type is passed
that is not supported by the implementation, or if a protocol
type SERVER_TYPE or CLIENT_TYPE is
passed with a value that is not an array of Strings.
NoServerFoundException (src) - if no suitable protocol server
can be determined.
ContentAccessException (src) - if content transfer fails or if
non-embedded content is passed in anything other than a media
entity EJB.
MediaFormatException (src) - if there's a problem dealing with
one of the media formats involved.
LinkTranslationException (src) - if ingesting protocol specific
links into copies of non-embedded media objects fails.
ConversionException (src) - if the middleware fails converting
the media content to another format in order to make it suitable
for a specific protocol server.
MediaException (src)
public Media (src) publishMedia(MediaEntityLocal (src) [] playlist,
byte transferType,
ProtocolConstraints (src) constraints)
throws MediaException (src)
Optionally, the selection of a suitable protocol server can be influenced using the given constraints object. Implementations of this specification are not bound to a specific algorithm to determine a suitable protocol server. Theoretical possibilities range from dynamic selection from a pre-configured server pool to relating suitable protocol servers statically with each media entity. The content of the resulting meta medium is pointing directly to the cached copies of the given media entities with a protocol type of http, rtsp or similar.
The kind of protocol server chosen may be determined by the given transferType. Specified values are: TRANSFER_TYPE_STREAM for streaming of media content, using a stream server as protocol server.
TRANSFER_TYPE_BURST for burst transfer of media
content, usually using a web server as protocol server.Specified protocol constraint types are:
If the selected protocol server supports more than one client type and the client type is not constrained, a meta-medium is generated for the default client type of the selected protocol server. If in a similar case there is more than one constraint value for the client type, the constraint value is interpreted as a priority list and therefore the meta-medium is generated for the first client type in that list that is supported by the selected protocol server.
Both the format and the content of the resulting meta-medium are considered proprietary to an implementation of this specification. Suitable are streaming metafile formats like Real .ram or IBM .ivs for streaming, or HTML files - containing auto load links for playlists consisting of exactly one entry, or clickable links for playlists consisting of two or more entries - for burst transfer. However, a Servlet must be able to return the resulting meta-medium directly to its requesting client to cause a media player to render the playlist on said client.
In contrast, publishing the same playlist for the HTML protocol would have resulted in an html meta media containing HREF links to the SMIL presentation and the MPEG movie. Also, the cache copy of the SMIL presentation would contain HTML references to its child media in this case.
playlist - transferType - constraints -
null.
java.lang.IllegalArgumentException - if a transfer type is passed
that is not supported by the implementation, or if a protocol
type SERVER_TYPE or CLIENT_TYPE is
passed with a value that is not an array of Strings.
NoServerFoundException (src) - if no suitable protocol server
can be determined.
ContentAccessException (src) - if content transfer fails.
MediaFormatException (src) - if there's a problem dealing with
one of the media formats involved.
LinkTranslationException (src) - if ingesting protocol specific
links into copies of non-embedded media objects fails.
ConversionException (src) - if the middleware fails converting
the media content to another format in order to make it suitable
for a specific protocol server.
MediaException (src)
|
||||||||||
| PREV CLASS (src) NEXT CLASS (src) | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||