Examples of AnnotationInfo

  • org.apache.myfaces.orchestra.annotation.AnnotationInfo
    Holds information extracted out of a single bean using its annotations.
  • org.codehaus.aspectwerkz.annotation.AnnotationInfo
    Holds the annotation proxy instance and the name of the annotation. @author Jonas Bon�r
  • org.eclipse.wst.sse.ui.internal.reconcile.validator.AnnotationInfo
    Holds info to create a TemporaryAnnotation. @since 1.0
  • org.glassfish.apf.AnnotationInfo
    Instances encapsulate all information necessary for an AnnotationHandler to process an annotation. In particular, instances of this class provide access to :

  • the Annotation instance
  • the ProcessingContext of the tool
  • the AnnotatedElement which is a reference to the annotation element (Type, Method...).

    @see java.lang.annotation.Annotation, java.lang.reflect.AnnotatedElement @author Jerome Dochez
  • org.jboss.reflect.spi.AnnotationInfo
    Annotation Info @author Bill Burke @author Adrian Brock
  • org.restlet.engine.resource.AnnotationInfo
    Descriptor for method annotations. @author Jerome Louvel

  • Examples of org.restlet.engine.resource.AnnotationInfo

         *      href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.7"
         *      >HTTP DELETE method</a>
         */
        protected Representation delete() throws ResourceException {
            Representation result = null;
            AnnotationInfo annotationInfo = getAnnotation(Method.DELETE);

            if (annotationInfo != null) {
                result = doHandle(annotationInfo, null);
            } else {
                doError(Status.CLIENT_ERROR_METHOD_NOT_ALLOWED);
    View Full Code Here

    Examples of org.restlet.engine.resource.AnnotationInfo

         * @return The response entity.
         * @throws ResourceException
         */
        private RepresentationInfo doGetInfo() throws ResourceException {
            RepresentationInfo result = null;
            AnnotationInfo annotationInfo = getAnnotation(Method.GET);

            if (annotationInfo != null) {
                result = doHandle(annotationInfo, null);
            } else {
                result = getInfo();
    View Full Code Here

    Examples of org.restlet.engine.resource.AnnotationInfo

        private Representation doHandle(Method method, Representation entity) {
            Representation result = null;

            if (getAnnotation(method) != null) {
                // We know the method is supported, let's check the entity.
                AnnotationInfo annotationInfo = getAnnotation(method, entity);

                if (annotationInfo != null) {
                    result = doHandle(annotationInfo, null);
                } else {
                    // The request entity is not supported.
    View Full Code Here

    Examples of org.restlet.engine.resource.AnnotationInfo

         *      href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html#sec9.3">HTTP
         *      GET method</a>
         */
        protected Representation get() throws ResourceException {
            Representation result = null;
            AnnotationInfo annotationInfo = getAnnotation(Method.GET);

            if (annotationInfo != null) {
                result = doHandle(annotationInfo, null);
            } else {
                doError(Status.CLIENT_ERROR_METHOD_NOT_ALLOWED);
    View Full Code Here

    Examples of org.restlet.engine.resource.AnnotationInfo

         *
         * @return The optional response entity.
         */
        protected Representation options() throws ResourceException {
            Representation result = null;
            AnnotationInfo annotationInfo = getAnnotation(Method.OPTIONS);

            // Updates the list of allowed methods
            updateAllowedMethods();

            if (annotationInfo != null) {
    View Full Code Here
    TOP
    Copyright © 2018 www.massapi.com. 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.