C
czochram.bobra
please help
is there any annotation that allow to hide entity property from
webservice
@Entity
public class A implements Serializable {
private Long id;
set & get
// i dont want to have that property in my webservice
private B bbb;
set & get
}
//webservice annotation
public interface Ws {
A getA();
}
//webservice annotation
public class WsImpl implements Ws{
public A getA(){
return ....
}
}
regards jw
is there any annotation that allow to hide entity property from
webservice
@Entity
public class A implements Serializable {
private Long id;
set & get
// i dont want to have that property in my webservice
private B bbb;
set & get
}
//webservice annotation
public interface Ws {
A getA();
}
//webservice annotation
public class WsImpl implements Ws{
public A getA(){
return ....
}
}
regards jw