Skip to content

Commit

Permalink
[COMPLIANCE] Add Copyright and License Headers (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
hashicorp-copywrite[bot] authored Sep 25, 2023
1 parent f7be17e commit 44cd5b8
Show file tree
Hide file tree
Showing 31 changed files with 93 additions and 0 deletions.
3 changes: 3 additions & 0 deletions saml/authn_request.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/authn_request_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml_test

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/config.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/config_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml_test

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/demo/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package main

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/error.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml

import "errors"
Expand Down
3 changes: 3 additions & 0 deletions saml/handler/acs.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package handler

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/handler/metadata.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package handler

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/handler/post_binding.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package handler

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/handler/redirect_binding.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package handler

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/is_nil.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml

import "reflect"
Expand Down
3 changes: 3 additions & 0 deletions saml/is_nil_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/models/core/common.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package core

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/models/core/fixtures/response.xml.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package fixtures

var ResponseXML = `<?xml version="1.0" encoding="UTF-8"?>
Expand Down
3 changes: 3 additions & 0 deletions saml/models/core/request.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package core

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/models/core/response.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package core

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/models/core/response_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package core_test

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/models/metadata/common.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package metadata

import "github.com/hashicorp/cap/saml/models/core"
Expand Down
3 changes: 3 additions & 0 deletions saml/models/metadata/duration.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package metadata

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/models/metadata/duration_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package metadata

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/models/metadata/entity_descriptor.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package metadata

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/models/metadata/idp_sso_descriptor.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package metadata

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/models/metadata/idp_sso_descriptor_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package metadata_test

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/models/metadata/sp_sso_descriptor.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package metadata

import "encoding/xml"
Expand Down
3 changes: 3 additions & 0 deletions saml/models/metadata/sp_sso_descriptor_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package metadata_test

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/options.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml

// Option defines a common functional options type which can be used in a
Expand Down
3 changes: 3 additions & 0 deletions saml/response.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/response_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml_test

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/sp.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/sp_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package saml_test

import (
Expand Down
3 changes: 3 additions & 0 deletions saml/test/provider.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0

package testprovider

import (
Expand Down

0 comments on commit 44cd5b8

Please sign in to comment.