If you want to send an entity object as the pass by value through a remote interface, which of the following statements are valid? (Choose one)

If you want to send an entity object as the pass by value through a remote interface, which of the following statements are valid? (Choose one)




a. @Entity
public class Employees implements SessionSynchronization{
...
}
b. @Entity
public class Employees implements Serializable{
...
}
c. public class Employees implements Serializable{
...
}
d. @entity
public class Employees implements Serializable{
...
}






Answer: B


Learn More :