001package org.avaje.ebean.typequery;
002
003
004/**
005 * File property.
006 * <p>
007 *   This is a placeholder in the sense that currently it has no supported expressions.
008 * </p>
009 *
010 * @param <R> the root query bean type
011 */
012public class PFile<R> extends TQProperty<R> {
013
014  /**
015   * Construct with a property name and root instance.
016   *
017   * @param name property name
018   * @param root the root query bean instance
019   */
020  public PFile(String name, R root) {
021    super(name, root);
022  }
023
024  /**
025   * Construct with additional path prefix.
026   */
027  public PFile(String name, R root, String prefix) {
028    super(name, root, prefix);
029  }
030
031}