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

org.jboss.resteasy.annotations.providers.jaxb.Stylesheet Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha4
Show newest version
package org.jboss.resteasy.annotations.providers.jaxb;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import javax.xml.bind.Marshaller;

import org.jboss.resteasy.annotations.Decorator;
import org.jboss.resteasy.plugins.providers.jaxb.StylesheetProcessor;

/**
 * Specifies an XML stylesheet header
 * 

* e.g. * *

 * {@literal <}?xml-stylesheet type='text/xsl' href='foobar.xsl' ?{@literal >}
 * 
*

* You can use replacement expressions in value string. * * @author Bill Burke * @version $Revision: 1 $ * @see org.jboss.resteasy.util.StringContextReplacement */ @Target({ ElementType.TYPE, ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD }) @Retention(RetentionPolicy.RUNTIME) @Decorator(processor = StylesheetProcessor.class, target = Marshaller.class) public @interface Stylesheet { String XSL = "text/xsl"; String CSS = "text/css"; String href(); String type(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy