If I use @Immutable annotation on an entity and add updatable/insertable attributes on any column annotation, will that be redundant?
@Entity
@Immutable
public class SomeEntity...
{
@Column(name = "xyz", nullable = false, updatable=false, insertable=false)
private String xyz;
.....