Blame view

backend/bpm-model/src/main/java/com/hotent/bpmModel/conf/BpmModelWebSecurityExtend.java 457 Bytes
8d73e917   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.hotent.bpmModel.conf;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import com.hotent.base.conf.WebSecurityExtend;

@Configuration
public class BpmModelWebSecurityExtend{

	@Bean
	WebSecurityExtend getBpmModelExtend() {
		return new WebSecurityExtend() {
			@Override
			public String[] getIgnoringGetUrl() {
				return new String[] {"/flow/def/v1/bpmnXml"};
			}
		};
	}
	
}