Serialized Form


Package play

Class play.Invoker.Suspend extends PlayException implements Serializable

Serialized Fields

timeout

int timeout
Suspend for a timeout (in seconds).


task

Future<V> task
Wait for task execution.


Package play.data.parsing

Class play.data.parsing.ApacheMultipartParser.AutoFileItem extends Object implements Serializable

Serialized Fields

fieldName

String fieldName
The name of the form field as provided by the browser.


contentType

String contentType
The content type passed by the browser, or null if not defined.


isFormField

boolean isFormField
Whether or not this item is a simple form field.


fileName

String fileName
The original filename in the user's filesystem.


sizeThreshold

int sizeThreshold
The threshold above which uploads will be stored on disk.


repository

File repository
The directory in which uploaded files will be stored, if stored on disk.


cachedContent

byte[] cachedContent
Cached contents of the file.


dfos

org.apache.commons.io.output.DeferredFileOutputStream dfos
Output stream for this item.

Class play.data.parsing.ApacheMultipartParser.SizeException extends org.apache.commons.fileupload.FileUploadException implements Serializable

Serialized Fields

actual

long actual
The actual size of the request.


permitted

long permitted
The maximum permitted size of the request.

Class play.data.parsing.MultipartStream.IllegalBoundaryException extends IOException implements Serializable

Class play.data.parsing.MultipartStream.MalformedStreamException extends IOException implements Serializable


Package play.data.validation

Class play.data.validation.CheckWithCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<CheckWith> implements Serializable

Serialized Fields

variables

Map<K,V> variables

check

Check check

Class play.data.validation.EmailCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<Email> implements Serializable

Class play.data.validation.EqualsCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<Equals> implements Serializable

Serialized Fields

to

String to

otherKey

String otherKey

otherValue

Object otherValue

Class play.data.validation.InFutureCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<InFuture> implements Serializable

Serialized Fields

reference

Date reference

Class play.data.validation.InPastCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<InPast> implements Serializable

Serialized Fields

reference

Date reference

Class play.data.validation.IsTrueCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<IsTrue> implements Serializable

Class play.data.validation.MatchCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<Match> implements Serializable

Serialized Fields

pattern

Pattern pattern

Class play.data.validation.MaxCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<Max> implements Serializable

Serialized Fields

max

double max

Class play.data.validation.MaxSizeCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<MaxSize> implements Serializable

Serialized Fields

maxSize

int maxSize

Class play.data.validation.MinCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<Min> implements Serializable

Serialized Fields

min

double min

Class play.data.validation.MinSizeCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<MinSize> implements Serializable

Serialized Fields

minSize

int minSize

Class play.data.validation.RangeCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<Range> implements Serializable

Serialized Fields

min

double min

max

double max

Class play.data.validation.RequiredCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<Required> implements Serializable

Class play.data.validation.URLCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<URL> implements Serializable

Class play.data.validation.ValidCheck extends net.sf.oval.configuration.annotation.AbstractAnnotationCheck<Required> implements Serializable

Serialized Fields

key

String key

Package play.db.jpa

Class play.db.jpa.JPAModel extends Model implements Serializable

Class play.db.jpa.JPASupport extends Object implements Serializable

Class play.db.jpa.JPASupport.JPAQueryException extends RuntimeException implements Serializable

Class play.db.jpa.Model extends JPASupport implements Serializable

Serialized Fields

id

Long id

Class play.db.jpa.StringList extends ArrayList<String> implements Serializable


Package play.exceptions

Class play.exceptions.ActionNotFoundException extends PlayException implements Serializable

Serialized Fields

action

String action

Class play.exceptions.CacheException extends PlayException implements Serializable

Serialized Fields

sourceFile

String sourceFile

source

List<E> source

line

Integer line

Class play.exceptions.ConfigurationException extends PlayException implements Serializable

Class play.exceptions.DatabaseException extends PlayException implements Serializable

Serialized Fields

sourceFile

String sourceFile

source

List<E> source

line

Integer line

Class play.exceptions.JavaCompilationException extends JavaException implements Serializable

Serialized Fields

problem

org.eclipse.jdt.core.compiler.IProblem problem

Class play.exceptions.JavaException extends PlayException implements Serializable

Serialized Fields

applicationClass

ApplicationClasses.ApplicationClass applicationClass

lineNumber

Integer lineNumber

Class play.exceptions.JavaExecutionException extends JavaException implements Serializable

Class play.exceptions.JPAException extends PlayException implements Serializable

Class play.exceptions.MailException extends PlayException implements Serializable

Serialized Fields

sourceFile

String sourceFile

source

List<E> source

line

Integer line

Class play.exceptions.NoRouteFoundException extends PlayException implements Serializable

Serialized Fields

file

String file

action

String action

args

Map<K,V> args

sourceFile

String sourceFile

source

List<E> source

line

Integer line

Class play.exceptions.PlayException extends RuntimeException implements Serializable

Serialized Fields

id

String id

Class play.exceptions.TagInternalException extends RuntimeException implements Serializable

Class play.exceptions.TemplateCompilationException extends TemplateException implements Serializable

Class play.exceptions.TemplateException extends PlayException implements Serializable

Serialized Fields

template

Template template

lineNumber

Integer lineNumber

Class play.exceptions.TemplateExecutionException extends TemplateException implements Serializable

Class play.exceptions.TemplateExecutionException.DoBodyException extends RuntimeException implements Serializable

Class play.exceptions.TemplateNotFoundException extends PlayException implements Serializable

Serialized Fields

path

String path

sourceFile

String sourceFile

source

List<E> source

line

Integer line

Class play.exceptions.UnexpectedException extends PlayException implements Serializable

Class play.exceptions.YAMLException extends PlayException implements Serializable

Serialized Fields

e

org.yaml.snakeyaml.scanner.ScannerException e

yaml

VirtualFile yaml

Package play.mvc

Class play.mvc.Http.Cookie extends Object implements Serializable

Serialized Fields

name

String name
Cookie name


domain

String domain
Cookie domain


path

String path
Cookie path


secure

boolean secure
for HTTPS ?


value

String value
Cookie value


maxAge

Integer maxAge
Cookie max-age


sendOnError

boolean sendOnError
Don't use

Class play.mvc.Http.Header extends Object implements Serializable

Serialized Fields

name

String name
Header name


values

List<E> values
Header value

Class play.mvc.Http.Request extends Object implements Serializable

Serialized Fields

host

String host
Server host


path

String path
Request path


querystring

String querystring
QueryString


url

String url
Full url


method

String method
HTTP method


domain

String domain
Server domain


remoteAddress

String remoteAddress
Client address


contentType

String contentType
Request content-type


controller

String controller
Controller to invoke


actionMethod

String actionMethod
Action method name


port

Integer port
HTTP port


secure

Boolean secure
is HTTPS ?


headers

Map<K,V> headers
HTTP Headers


cookies

Map<K,V> cookies
HTTP Cookies


routeArgs

Map<K,V> routeArgs
Additinal HTTP params extracted from route


format

String format
Format (html,xml,json,text)


action

String action
Full action (ex: Application.index)


args

Map<K,V> args
Free space to store your request specific data


date

Date date
When the request has been received


isNew

boolean isNew
New request or already submitted


user

String user
HTTP Basic User


password

String password
HTTP Basic Password


isLoopback

boolean isLoopback
Request comes from loopback interface


Package play.mvc.results

Class play.mvc.results.BadRequest extends Result implements Serializable

Class play.mvc.results.Error extends Result implements Serializable

Serialized Fields

status

int status

Class play.mvc.results.Forbidden extends Result implements Serializable

Class play.mvc.results.NoResult extends Result implements Serializable

Class play.mvc.results.NotFound extends Result implements Serializable

Class play.mvc.results.NotModified extends Result implements Serializable

Serialized Fields

etag

String etag

Class play.mvc.results.Ok extends Result implements Serializable

Class play.mvc.results.Redirect extends Result implements Serializable

Serialized Fields

url

String url

code

int code

Class play.mvc.results.RedirectToStatic extends Result implements Serializable

Serialized Fields

file

String file

Class play.mvc.results.RenderBinary extends Result implements Serializable

Serialized Fields

inline

boolean inline

length

long length

file

File file

is

InputStream is

name

String name

Class play.mvc.results.RenderJson extends Result implements Serializable

Serialized Fields

json

String json

Class play.mvc.results.RenderStatic extends Result implements Serializable

Serialized Fields

file

String file

Class play.mvc.results.RenderTemplate extends Result implements Serializable

Serialized Fields

template

Template template

content

String content

args

Map<K,V> args

Class play.mvc.results.RenderText extends Result implements Serializable

Serialized Fields

text

String text

Class play.mvc.results.RenderXml extends Result implements Serializable

Serialized Fields

xml

String xml

Class play.mvc.results.Result extends RuntimeException implements Serializable

Class play.mvc.results.Unauthorized extends Result implements Serializable

Serialized Fields

realm

String realm

Package play.server

Class play.server.ServletWrapper extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

routerInitializedWithContext

boolean routerInitializedWithContext

Package play.utils

Class play.utils.Properties extends HashMap<String,String> implements Serializable

serialVersionUID: 1L



Guillaume Bort & zenexity - Distributed under Apache 2 licence, without any warrantly