This commit is contained in:
Sebastien Deleuze
2015-06-18 18:04:29 +02:00
parent 7025cd74ec
commit 1e39a18819
2 changed files with 8 additions and 8 deletions

View File

@@ -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;
/**