Package com.sun.research.ws.wadl

Examples of com.sun.research.ws.wadl.RepresentationType


     * @return the wadl request representation for the specified {@link MediaType}.
     */
    private RepresentationType setRepresentationForMediaType( AbstractResource r,
            final AbstractResourceMethod m, MediaType mediaType,
            Request wadlRequest ) {
        RepresentationType wadlRepresentation = getRepresentationByMediaType( wadlRequest.getRepresentation(), mediaType );
        if ( wadlRepresentation == null ) {
            wadlRepresentation = _wadlGenerator.createRequestRepresentation( r, m, mediaType );
            wadlRequest.getRepresentation().add(wadlRepresentation);
        }
        return wadlRepresentation;
View Full Code Here

TOP

Related Classes of com.sun.research.ws.wadl.RepresentationType

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.