Package er.rest.example.model

Source Code of er.rest.example.model.Person

package er.rest.example.model;

import org.apache.log4j.Logger;

import com.webobjects.foundation.NSTimestamp;

public class Person extends _Person {
  @SuppressWarnings("unused")
  private static Logger log = Logger.getLogger(Person.class);
 
  /**
   * This method exists just to show a derived non-model method appearing in the rest results.
   *
   * @return
   */
  public NSTimestamp derivedCurrentTime() {
    return new NSTimestamp();
  }
}
TOP

Related Classes of er.rest.example.model.Person

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.