Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Corrected license header texts
  • Loading branch information
ajs6f committed Jul 1, 2013
1 parent 8b8b33f commit fe8f552
Show file tree
Hide file tree
Showing 28 changed files with 91 additions and 84 deletions.
1 change: 0 additions & 1 deletion src/main/java/org/fcrepo/auth/oauth/Constants.java
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth;

public interface Constants {
Expand Down
22 changes: 13 additions & 9 deletions src/main/java/org/fcrepo/auth/oauth/Decision.java
@@ -1,14 +1,18 @@
/**
* Copyright 2013 DuraSpace, Inc. Licensed under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
* or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
* Copyright 2013 DuraSpace, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth;

import java.security.Principal;
Expand Down
@@ -1,14 +1,18 @@
/**
* Copyright 2013 DuraSpace, Inc. Licensed under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
* or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
* Copyright 2013 DuraSpace, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth;

import static com.google.common.base.Throwables.propagate;
Expand Down
22 changes: 13 additions & 9 deletions src/main/java/org/fcrepo/auth/oauth/api/AuthzEndpoint.java
@@ -1,14 +1,18 @@
/**
* Copyright 2013 DuraSpace, Inc. Licensed under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
* or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
* Copyright 2013 DuraSpace, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.api;

import static javax.servlet.http.HttpServletResponse.SC_FOUND;
Expand Down
22 changes: 13 additions & 9 deletions src/main/java/org/fcrepo/auth/oauth/api/TokenEndpoint.java
@@ -1,14 +1,18 @@
/**
* Copyright 2013 DuraSpace, Inc. Licensed under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
* or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
* Copyright 2013 DuraSpace, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.api;

import static javax.servlet.http.HttpServletResponse.SC_BAD_REQUEST;
Expand Down
22 changes: 13 additions & 9 deletions src/main/java/org/fcrepo/auth/oauth/api/Util.java
@@ -1,14 +1,18 @@
/**
* Copyright 2013 DuraSpace, Inc. Licensed under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
* or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
* Copyright 2013 DuraSpace, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.api;

import static com.google.common.collect.ImmutableSet.copyOf;
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/fcrepo/auth/oauth/filter/Decision.java
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.filter;

import java.security.Principal;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.filter;

import static com.google.common.base.Throwables.propagate;
Expand Down
22 changes: 13 additions & 9 deletions src/main/java/org/fcrepo/auth/oauth/filter/OAuthFilter.java
@@ -1,14 +1,18 @@
/**
* Copyright 2013 DuraSpace, Inc. Licensed under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
* or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
* Copyright 2013 DuraSpace, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.filter;

import static javax.servlet.http.HttpServletResponse.SC_BAD_REQUEST;
Expand Down
@@ -1,14 +1,18 @@
/**
* Copyright 2013 DuraSpace, Inc. Licensed under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with the
* License. You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
* or agreed to in writing, software distributed under the License is
* distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
* Copyright 2013 DuraSpace, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.filter;

import static javax.servlet.http.HttpServletResponse.SC_UNAUTHORIZED;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api;

import static java.lang.Integer.MAX_VALUE;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api;

import static javax.ws.rs.core.MediaType.APPLICATION_FORM_URLENCODED;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api;

import static org.slf4j.LoggerFactory.getLogger;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api;

import static org.junit.Assert.assertEquals;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api;

import static java.util.regex.Pattern.compile;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api;

import java.util.Collection;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import javax.xml.bind.annotation.XmlRootElement;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import javax.xml.bind.annotation.XmlElement;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import javax.xml.bind.annotation.XmlElement;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import java.util.Collections;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import javax.xml.bind.annotation.XmlElement;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import javax.xml.bind.annotation.XmlRootElement;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import javax.xml.bind.annotation.XmlElement;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import javax.xml.bind.annotation.XmlAccessType;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import java.util.Collections;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import javax.xml.bind.annotation.XmlElement;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.integration.api.bind;

import javax.xml.bind.annotation.XmlElement;
Expand Down
Expand Up @@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package org.fcrepo.auth.oauth.test.filter;

import static java.lang.reflect.Proxy.newProxyInstance;
Expand Down

0 comments on commit fe8f552

Please sign in to comment.