Coverage Report - org.mule.tck.testmodels.services.PersonResponse
 
Classes in this File Line Coverage Branch Coverage Complexity
PersonResponse
0%
0/12
N/A
1
 
 1  
 /*
 2  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 3  
  * The software in this package is published under the terms of the CPAL v1.0
 4  
  * license, a copy of which has been included with this distribution in the
 5  
  * LICENSE.txt file.
 6  
  */
 7  
 package org.mule.tck.testmodels.services;
 8  
 
 9  
 public class PersonResponse
 10  
 {
 11  
     private Person person;
 12  
     private long time;
 13  
 
 14  
     public PersonResponse()
 15  0
     {
 16  
         // empty constructor
 17  0
     }
 18  
 
 19  
     public PersonResponse(Person person)
 20  0
     {
 21  0
         this.person = person;
 22  0
         this.time = System.currentTimeMillis();
 23  0
     }
 24  
 
 25  
     public Person getPerson()
 26  
     {
 27  0
         return person;
 28  
     }
 29  
 
 30  
     public void setPerson(Person person)
 31  
     {
 32  0
         this.person = person;
 33  0
     }
 34  
 
 35  
     public long getTime()
 36  
     {
 37  0
         return time;
 38  
     }
 39  
 
 40  
     public void setTime(long time)
 41  
     {
 42  0
         this.time = time;
 43  0
     }
 44  
 }