mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-25 16:29:28 +00:00
Polish
This commit is contained in:
@@ -39,13 +39,13 @@ import org.springframework.core.annotation.AliasFor;
|
||||
@Documented
|
||||
public @interface CrossOrigin {
|
||||
|
||||
static final String[] DEFAULT_ORIGIN = { "*" };
|
||||
String[] DEFAULT_ORIGIN = { "*" };
|
||||
|
||||
static final String[] DEFAULT_ALLOWED_HEADERS = { "*" };
|
||||
String[] DEFAULT_ALLOWED_HEADERS = { "*" };
|
||||
|
||||
static final boolean DEFAULT_ALLOW_CREDENTIALS = true;
|
||||
boolean DEFAULT_ALLOW_CREDENTIALS = true;
|
||||
|
||||
static final long DEFAULT_MAX_AGE = 1800;
|
||||
long DEFAULT_MAX_AGE = 1800;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user