All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gwtplatform.dispatch.annotation.proxy.EmployeeProxy Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
package com.gwtplatform.dispatch.annotation.proxy;

import com.google.web.bindery.requestfactory.shared.ProxyFor;
import com.google.web.bindery.requestfactory.shared.EntityProxy;
import com.google.web.bindery.requestfactory.shared.EntityProxyId;

@ProxyFor(value = com.gwtplatform.dispatch.annotation.Employee.class, locator = com.gwtplatform.dispatch.annotation.EmployeeLocator.class)
public interface EmployeeProxy extends EntityProxy { 

  EntityProxyId stableId();

  java.lang.String getDisplayName();

  java.lang.Long getSupervisorKey();

  java.lang.Long getId();

  com.gwtplatform.dispatch.annotation.proxy.EmployeeProxy getSupervisor();

  void setDisplayName(java.lang.String displayName);

  void setSupervisorKey(java.lang.Long supervisorKey);

  void setVersion(java.lang.Integer version);

  void setSupervisor(com.gwtplatform.dispatch.annotation.proxy.EmployeeProxy supervisor);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy