All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.jersey.samples.generatewadl.util.ExampleWadlGenerator Maven / Gradle / Ivy

There is a newer version: 1.19.2
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2010-2013 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * http://glassfish.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

package com.sun.jersey.samples.generatewadl.util;


import com.sun.jersey.api.model.AbstractMethod;
import com.sun.jersey.api.model.AbstractResource;
import com.sun.jersey.api.model.AbstractResourceMethod;
import com.sun.jersey.api.model.Parameter;
import com.sun.jersey.server.wadl.ApplicationDescription;
import com.sun.jersey.server.wadl.WadlGenerator;
import com.sun.jersey.server.wadl.generators.resourcedoc.ResourceDocAccessor;
import com.sun.jersey.server.wadl.generators.resourcedoc.model.MethodDocType;
import com.sun.jersey.server.wadl.generators.resourcedoc.model.ResourceDocType;
import com.sun.research.ws.wadl.Application;
import com.sun.research.ws.wadl.Doc;
import com.sun.research.ws.wadl.Method;
import com.sun.research.ws.wadl.Param;
import com.sun.research.ws.wadl.Representation;
import com.sun.research.ws.wadl.Request;
import com.sun.research.ws.wadl.Resource;
import com.sun.research.ws.wadl.Resources;
import com.sun.research.ws.wadl.Response;

import javax.ws.rs.core.UriInfo;
import javax.ws.rs.core.MediaType;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.Unmarshaller;
import java.io.File;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;

/**
 * This {@link WadlGenerator} shows how the custom information added by the
 * {@link ExampleDocProcessor} to the resourcedoc.xml can be processed by this
 * {@link WadlGenerator} and is used to extend the generated application.wadl
* Created on: Jul 20, 2008
* * @author Martin Grotzke * @version $Id$ */ public class ExampleWadlGenerator implements WadlGenerator { private static final Logger LOG = Logger.getLogger( ExampleWadlGenerator.class.getName() ); private WadlGenerator _delegate; private File _resourceDocFile; private ResourceDocAccessor _resourceDoc; /* (non-Javadoc) * @see com.sun.jersey.server.impl.wadl.WadlGenerator#setWadlGeneratorDelegate(com.sun.jersey.server.impl.wadl.WadlGenerator) */ public void setWadlGeneratorDelegate( WadlGenerator delegate ) { _delegate = delegate; } /* (non-Javadoc) * @see com.sun.jersey.server.impl.wadl.WadlGenerator#getRequiredJaxbContextPath() */ public String getRequiredJaxbContextPath() { return _delegate.getRequiredJaxbContextPath(); } public void setResourceDocFile( File resourceDocFile ) { _resourceDocFile = resourceDocFile; } /** * Delegates the setting of the environment */ @Override public void setEnvironment(Environment env) { _delegate.setEnvironment(env); } public void init() throws Exception { _delegate.init(); final ResourceDocType resourceDoc = loadFile( _resourceDocFile, ResourceDocType.class, ResourceDocType.class, MyNamedValueType.class ); _resourceDoc = new ResourceDocAccessor( resourceDoc ); } private T loadFile( File fileToLoad, Class targetClass, Class ... classesToBeBound ) { if ( fileToLoad == null ) { throw new IllegalArgumentException( "The resource-doc file to load is not set!" ); } try { final JAXBContext c = JAXBContext.newInstance( classesToBeBound ); final Unmarshaller m = c.createUnmarshaller(); return targetClass.cast( m.unmarshal( fileToLoad ) ); } catch( Exception e ) { LOG.log( Level.SEVERE, "Could not unmarshal file " + fileToLoad, e ); throw new RuntimeException( "Could not unmarshal file " + fileToLoad, e ); } } public Application createApplication(UriInfo info) { return _delegate.createApplication(info); } public Method createMethod( AbstractResource r, AbstractResourceMethod m ) { final Method result = _delegate.createMethod( r, m ); final MethodDocType methodDoc = _resourceDoc.getMethodDoc( r.getResourceClass(), m.getMethod() ); if ( methodDoc != null && methodDoc.getAny() != null && !methodDoc.getAny().isEmpty() ) { for ( Object any : methodDoc.getAny() ) { System.out.println( "test: " + ( any instanceof MyNamedValueType ) + " any: " + any ); if ( any instanceof MyNamedValueType ) { final MyNamedValueType namedValue = (MyNamedValueType) any; if ( ExampleDocProcessor.EXAMPLE_TAG.equals( namedValue.getName() ) ) { final Doc doc = new Doc(); doc.getContent().add( namedValue.getValue() ); result.getDoc().add( doc ); } } } } return result; } public Request createRequest( AbstractResource arg0, AbstractResourceMethod arg1 ) { return _delegate.createRequest( arg0, arg1 ); } public Param createParam( AbstractResource arg0, AbstractMethod arg1, Parameter arg2 ) { return _delegate.createParam( arg0, arg1, arg2 ); } public Representation createRequestRepresentation( AbstractResource arg0, AbstractResourceMethod arg1, MediaType arg2 ) { return _delegate.createRequestRepresentation( arg0, arg1, arg2 ); } public Resource createResource( AbstractResource arg0, String arg1 ) { return _delegate.createResource( arg0, arg1 ); } public Resources createResources() { return _delegate.createResources(); } public List createResponses( AbstractResource arg0, AbstractResourceMethod arg1 ) { return _delegate.createResponses( arg0, arg1 ); } /** * Delegate the creation of an external grammar. * @return */ @Override public ExternalGrammarDefinition createExternalGrammar() { return _delegate.createExternalGrammar(); } @Override public void attachTypes(ApplicationDescription egd) { _delegate.attachTypes(egd); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy