-
ch.ethz.inf.vs.scandium.dtls.ContentType
-
com.bradmcevoy.http.Response.ContentType
-
com.claymus.site.module.content.ContentType
-
com.fasterxml.clustermate.api.ContentType
-
com.gistlabs.mechanize.util.apache.ContentType
Content type information consisting of a MIME type and an optional charset.
This class makes no attempts to verify validity of the MIME type. The input parameters of the {@link #create(String,String)} method, however, may notcontain characters <">, <;>, <,> reserved by the HTTP specification.
@since 4.2
-
com.google.apphosting.api.search.DocumentPb.FieldValue.ContentType
-
com.google.caja.util.ContentType
-
com.google.code.javax.mail.internet.ContentType
This class represents a MIME ContentType value. It provides methods to parse a ContentType string into individual components and to generate a MIME style ContentType string.
@author John Mani
-
com.google.gdata.util.ContentType
Simple class for parsing and generating Content-Type header values, per RFC 2045 (MIME) and 2616 (HTTP 1.1).
-
com.google.gwt.gadgets.client.Gadget.ContentType
-
com.google.gxp.compiler.base.ContentType
Types that correspond to MIME content types. eg: text/html, text/javascript, etc.
-
com.google.opengse.httputil.ContentType
Utility for parsing the Content-Type mime header. Parser derived from the Content-Type header specification in RFC 2045.
@author Peter Mattis
-
com.ibm.wps.pe.om.definition.ContentType
-
com.jeecms.cms.entity.main.ContentType
-
com.microsoft.windowsazure.services.media.implementation.atom.ContentType
3.org/2001/XMLSchema}anyType"> <sequence> <any namespace='##other' maxOccurs="unbounded" minOccurs="0"/> </sequence> <attGroup ref="{http://www.w3.org/2005/Atom}commonAttributes"/> <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="src" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> <anyAttribute namespace='##other'/> </restriction> </complexContent> </complexType>
-
com.oracle.webservices.api.message.ContentType
A Content-Type transport header that will be returned by {@link MessageContext#write(java.io.OutputStream)}. It will provide the Content-Type header and also take care of SOAP 1.1 SOAPAction header.
@author Vivek Pandey
-
com.psddev.cms.db.ContentType
-
com.sun.xml.internal.messaging.saaj.packaging.mime.internet.ContentType
This class represents a MIME ContentType value. It provides methods to parse a ContentType string into individual components and to generate a MIME style ContentType string.
@version 1.7, 02/03/27
@author John Mani
-
com.sun.xml.internal.ws.api.pipe.ContentType
A Content-Type transport header that will be returned by {@link Codec#encode(com.sun.xml.internal.ws.api.message.Packet,java.io.OutputStream)}. It will provide the Content-Type header and also take care of SOAP 1.1 SOAPAction header. TODO: rename to ContentMetadata?
@author Vivek Pandey
-
com.sun.xml.internal.ws.encoding.ContentType
This class represents a MIME ContentType value. It provides methods to parse a ContentType string into individual components and to generate a MIME style ContentType string.
@version 1.7, 02/03/27
@author John Mani
-
com.sun.xml.messaging.saaj.packaging.mime.internet.ContentType
This class represents a MIME ContentType value. It provides methods to parse a ContentType string into individual components and to generate a MIME style ContentType string.
@version 1.7, 02/03/27
@author John Mani
-
com.sun.xml.ws.api.pipe.ContentType
A Content-Type transport header that will be returned by {@link Codec#encode(com.sun.xml.ws.api.message.Packet,java.io.OutputStream)}. It will provide the Content-Type header and also take care of SOAP 1.1 SOAPAction header. TODO: rename to ContentMetadata?
@author Vivek Pandey
-
com.sun.xml.ws.encoding.ContentType
This class represents a MIME ContentType value. It provides methods to parse a ContentType string into individual components and to generate a MIME style ContentType string.
@version 1.7, 02/03/27
@author John Mani
-
com.theoryinpractise.halbuilder.impl.ContentType
-
com.vtence.molecule.http.ContentType
-
edu.uga.galileo.voci.model.ContentType
-
gov.nist.javax.sip.header.ContentType
ContentType SIP Header
14.17 Content-Type The Content-Type entity-header field indicates the media type of the entity-body sent to the recipient or, in the case of the HEAD method, the media type that would have been sent had the request been a GET. Content-Type = "Content-Type" ":" media-type Media types are defined in section 3.7. An example of the field is Content-Type: text/html; charset=ISO-8859-4 Further discussion of methods for identifying the media type of an entity is provided in section 7.2.1. From HTTP RFC 2616
@version 1.2
@author M. Ranganathan
@author Olivier Deruelle
@version 1.2 $Revision: 1.7 $ $Date: 2009-07-17 18:57:29 $
@since 1.1
-
javax.mail.internet.ContentType
@version $Rev: 54266 $ $Date: 2004-10-10 15:02:50 -0600 (Sun, 10 Oct 2004) $
-
net.sf.jpluck.spider.ContentType
-
nextapp.echo2.webrender.ContentType
A representation of a content-type. This object contains a MIME-type and a flag indicating whether the content-type is used exclusively for binary data (i.e., indicating whether a character encoding needs to be specified).
-
org.apache.axiom.mime.ContentType
.ietf.org/html/rfc2045">RFC 2045.
The relevant productions from RFC 2045 and RFC 822 are:
content := "Content-Type" ":" type "/" subtype *(";" parameter) parameter := attribute "=" value attribute := token value := token / quoted-string token := 1*<any (US-ASCII) CHAR except SPACE, CTLs, or tspecials> tspecials := "(" / ")" / "<" / ">" / "@" / "," / ";" / ":" / "\" / <"> / "/" / "[" / "]" / "?" / "=" quoted-string := <"> *(qtext/quoted-pair) <"> qtext := <any CHAR excepting <">, "\" & CR, and including linear-white-space> quoted-pair := "\" CHAR
This class is similar to {@link MimeType} and JavaMail's ContentType
class, but thefollowing differences exist:
- This class is more lenient than (certain implementations of) {@link MimeType}. It will accept content types that are not strictly valid, but that are commonly found. E.g. it will accept content types with an extra semicolon at the end.
- This class is immutable.
- This class makes a distinction between a media type (which is defined by a primary type and a sub type and represented by a {@link MediaType} object) and a content type, which is defined by amedia type and a set of parameters.
Another reason for the existence of this class is to avoid a dependency on JavaMail.
Note that this class doesn't override {@link Object#equals(Object)} because there is nomeaningful way to compare content types with parameters.
-
org.apache.camel.component.salesforce.api.dto.bulk.ContentType
-
org.apache.hadoop.hbase.rest.Dispatcher.ContentType
-
org.apache.http.entity.ContentType
Content type information consisting of a MIME type and an optional charset.
This class makes no attempts to verify validity of the MIME type. The input parameters of the {@link #create(String,String)} method, however, may notcontain characters <">, <;>, <,> reserved by the HTTP specification.
@since 4.2
-
org.apache.jena.atlas.web.ContentType
A restricted view of MediaType
-
org.apache.lucene.gdata.search.config.IndexSchemaField.ContentType
-
org.apache.marmotta.commons.http.ContentType
A LMF internal representation of MIME media types that captures the various aspects of interest in a structured way.
@author Sebastian Schaffert
@author Sergio Fernández
-
org.apache.myfaces.tobago.util.ContentType
-
org.apache.olingo.odata2.core.commons.ContentType
3.org/Protocols/rfc2616/rfc2616-sec3.html).
media-type = type "/" subtype *( ";" parameter ) type = token subtype = token
Especially for
Accept
Header as defined in
RFC 2616 chapter 14.1 (http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html)
:
Accept = "Accept" ":" #( media-range [ accept-params ] ) media-range = ( "* /*" | ( type "/" "*" ) | ( type "/" subtype ) ) *( ";" parameter ) accept-params = ";" "q" "=" qvalue *( accept-extension ) accept-extension = ";" token [ "=" ( token | quoted-string ) ]
Especially for
Content-Type
Header as defined in
RFC 2616 chapter 14.7 (http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html)
:
Content-Type = "Content-Type" ":" media-type
Once created a {@link ContentType} is
IMMUTABLE.
-
org.apache.pluto.om.portlet.ContentType
This interface provides access to a content type and its supported portlet modes. A content type is defined as part of a portlet application in the portlet.xml. It is accessible via the ServletDefinition as it is bound to the application code.
This interface defines the model as known from the MVC pattern. Its purpose is to provide read access to the data stored in the model.
-
org.apache.poi.openxml4j.opc.internal.ContentType
-
org.apache.tapestry.ContentType
Represents an HTTP content type. Allows to set various elements like the mime type, the character set, and other parameters. This is similar to a number of other implementations of the same concept in JAF, etc. We have created this simple implementation to avoid including the whole libraries.
-
org.apache.tapestry.annotations.ContentType
-
org.apache.tapestry.internal.util.ContentType
Represents an HTTP content type. Allows to set various elements like the mime type, the character set, and other parameters. This is similar to a number of other implementations of the same concept in JAF, etc. We have created this simple implementation to avoid including the whole libraries.
-
org.apache.tapestry.util.ContentType
Represents an HTTP content type. Allows to set various elements like the mime type, the character set, and other parameters. This is similar to a number of other implementations of the same concept in JAF, etc. We have created this simple implementation to avoid including the whole libraries.
@version $Id: ContentType.java 243791 2004-02-19 17:38:13Z hlship $
@author mindbridge
@since 3.0
-
org.apache.tapestry5.ContentType
Represents an HTTP content type. Allows to set various elements like the mime type, the character set, and other parameters. This is similar to a number of other implementations of the same concept in JAF, etc. We have created this simple implementation to avoid including the whole libraries.
-
org.apache.tapestry5.annotations.ContentType
A mixin for a text field that allows for autocompletion of text fields. This is based on Prototype's autocompleter control.
The mixin renders an (initially invisible) progress indicator after the field (it will also be after the error icon most fields render). The progress indicator is made visible during the request to the server. The mixin then renders a <div> that will be filled in on the client side with dynamically obtained selections.
Multiple selection on the client is enabled by binding the tokens parameter (however, the mixin doesn't help split multiple selections up on the server, that is still your code's responsibility).
The container is responsible for providing an event handler for event "providecompletions". The context will be the partial input string sent from the client. The return value should be an array or list of completions, in presentation order. I.e.
String[] onProvideCompletionsFromMyField(String input) { return . . .; }
-
org.dmtf.schemas.ovf.envelope._1.ContentType
Represents an HTTP content type. Allows to set various elements like the mime type, the character set, and other parameters. This is similar to a number of other implementations of the same concept in JAF, etc. We have created this simple implementation to avoid including the whole libraries.
-
org.docx4j.openpackaging.contenttype.ContentType
g/rfc/rfc2045.txt
-
org.exolab.castor.xml.schema.ContentType
An XML Schema ContentType
@author
Keith Visco
@version $Revision: 5951 $ $Date: 2005-12-13 14:58:48 -0700 (Tue, 13 Dec 2005) $
-
org.fenixedu.academic.util.ContentType
-
org.gatein.common.net.media.ContentType
.ietf.org/html/rfc2045#section-5">RFC2045
@author
Julien Viet
@version $Revision: 630 $
-
org.gatein.management.api.ContentType
-
org.gatein.mop.api.content.ContentType
Represents a content type.
@author
Julien Viet
@version $Revision$
@param < S> the content state type parameter
-
org.glassfish.grizzly.http.util.ContentType
This class serves as a Content-Type holder, plus it implements useful utility methods to work with content-type.
@author Alexey Stashok
-
org.jboss.portal.common.net.media.ContentType
.ietf.org/html/rfc2045#section-5">RFC2045
@author
Julien Viet
@version $Revision: 630 $
-
org.jwat.common.ContentType
This class represents a content-type string parsed, validated and decomposed into its separate components. It's based on the rfc2616 text and accordingly fairly strict concerning whitespaces. Whitespace is only permissible after a ';' and before and after the whole content-type string. ContentType, MediaType and parameter names are all converted to lower case.
@author nicl
-
org.locationtech.udig.catalog.document.IDocument.ContentType
-
org.openjena.atlas.web.ContentType
A restricted MediaType
-
org.openjena.riot.ContentType
Content Type - Parsed version of content type / MIME type
-
org.openxml4j.opc.internal.ContentType
g/rfc/rfc2045.txt
@see http://www.ietf.org/rfc/rfc2616.txt
-
org.pentaho.reporting.engine.classic.core.filter.types.ContentType
Todo: Document Me
@author Thomas Morgner
-
org.restlet.engine.header.ContentType
Association of a media type and a character set.
@author Jerome Louvel
-
org.simpleframework.http.ContentType
This provides access to the MIME type parts, that is the primary type, the secondary type and an optional character set parameter. The
charset
parameter is one of many parameters that can be associated with a MIME type. This however this exposes this parameter with a typed method.
The getCharset
will return the character encoding the content type is encoded within. This allows the user of the content to decode it correctly. Other parameters can be acquired from this by simply providing the name of the parameter.
@author Niall Gallagher
-
org.switchyard.component.http.ContentType
Content Type place holder.
@author Magesh Kumar B (C) 2012 Red Hat Inc.
-
org.wiztools.restclient.bean.ContentType
@author subwiz
-
org.xlightweb.ContentType
This class represents a content type
@author grro@xlightweb.org
-
org.zanata.common.ContentType
-
railo.commons.io.res.ContentType
-
railo.commons.lang.mimetype.ContentType
-
vn.pyco.tinycms.model.ContentType
-
xbird.xquery.type.schema.ComplexType.ContentType