SampleLogic.java :  » Web-Framework » vraptor » org » vraptor » sample » Java Open Source

Java Open Source » Web Framework » vraptor 
vraptor » org » vraptor » sample » SampleLogic.java
package org.vraptor.sample;

import org.vraptor.annotations.Component;

@Component
public class SampleLogic {

  private Person person;

  public void sayHelloTo(Person person) {
    this.person = person;
  }

  public Person getPerson() {
    return person;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.