public SchemaValidationInterceptorProvider() {
super(Arrays.asList(SchemaValidationPolicyBuilder.SCHEMA_VALIDATION));
this.getOutInterceptors().add(new SchemaValidationPolicyOutInterceptor());
this.getOutFaultInterceptors().add(new SchemaValidationPolicyOutInterceptor());
this.getInInterceptors().add(new SchemaValidationPolicyInInterceptor());
this.getInFaultInterceptors().add(new SchemaValidationPolicyInInterceptor());
}