Ignore:
Timestamp:
07/06/15 12:08:37 (9 years ago)
Author:
sherbold
Message:
  • code formatting
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SimpleSOAPEventType.java

    r1986 r1987  
    4040    /**  */ 
    4141    private static final long serialVersionUID = 1L; 
    42      
     42 
    4343    /** 
    4444     * see {@link RequestBodyMode} 
     
    137137    /** 
    138138     * <p> 
    139      * returns the body of the SOAP request; how the body is determined is defined by the {@link RequestBodyMode}.  
    140      * </p> 
    141      * 
     139     * returns the body of the SOAP request; how the body is determined is defined by the 
     140     * {@link RequestBodyMode}. 
     141     * </p> 
     142     *  
    142143     * @return body of the SOAP request 
    143144     */ 
     
    155156                throw new RuntimeException("undefined RequestBodyMode"); 
    156157        } 
    157         if( requestBody==null ) { 
     158        if (requestBody == null) { 
    158159            System.err.println("foobar" + this); 
    159160            System.err.println(EqualSOAPDataMap.getInstance().getAll(this)); 
     
    167168        } 
    168169    } 
    169      
    170      
    171170 
    172171    /* 
     
    220219        return "SimpleSOAPEventType(" + serviceName + ", " + calledMethod + ")"; 
    221220    } 
    222      
     221 
    223222    /** 
    224223     * <p> 
    225224     * returns the current {@link RequestBodyMode} 
    226225     * </p> 
    227      * 
     226     *  
    228227     * @return the requestBodyMode 
    229228     */ 
     
    231230        return requestBodyMode; 
    232231    } 
    233      
     232 
    234233    /** 
    235234     * <p> 
    236235     * sets the {@link RequestBodyMode} 
    237236     * </p> 
    238      * 
     237     *  
    239238     * @param new requestBodyMode 
    240239     */ 
     
    242241        SimpleSOAPEventType.requestBodyMode = requestBodyMode; 
    243242    } 
    244      
     243 
    245244    /** 
    246245     * <p> 
     
    248247     * <ul> 
    249248     * <li>LOCALEVENT: returns the request body of the event type itself</li> 
    250      * <li>RANDOM: returns a randomly draw request body for the called method using {@link EqualSOAPDataMap#getRandom(SimpleSOAPEventType)}. 
    251      * </ul>  
     249     * <li>RANDOM: returns a randomly draw request body for the called method using 
     250     * {@link EqualSOAPDataMap#getRandom(SimpleSOAPEventType)}. 
     251     * </ul> 
    252252     * </p> 
    253253     *  
    254254     * @author Steffen Herbold 
    255255     */ 
    256     public static enum RequestBodyMode {LOCALEVENT, RANDOM} 
     256    public static enum RequestBodyMode { 
     257        LOCALEVENT, RANDOM 
     258    } 
    257259} 
Note: See TracChangeset for help on using the changeset viewer.