mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
190cf80d02
Signed-off-by: Vishal Rana <vishal.rana@verizon.com>
49 lines
932 B
Go
49 lines
932 B
Go
package test
|
|
|
|
import (
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
type (
|
|
// Cookie implements `engine.Cookie`.
|
|
Cookie struct {
|
|
*http.Cookie
|
|
}
|
|
)
|
|
|
|
// Name implements `engine.Cookie#Name` function.
|
|
func (c *Cookie) Name() string {
|
|
return c.Cookie.Name
|
|
}
|
|
|
|
// Value implements `engine.Cookie#Value` function.
|
|
func (c *Cookie) Value() string {
|
|
return c.Cookie.Value
|
|
}
|
|
|
|
// Path implements `engine.Cookie#Path` function.
|
|
func (c *Cookie) Path() string {
|
|
return c.Cookie.Path
|
|
}
|
|
|
|
// Domain implements `engine.Cookie#Domain` function.
|
|
func (c *Cookie) Domain() string {
|
|
return c.Cookie.Domain
|
|
}
|
|
|
|
// Expires implements `engine.Cookie#Expires` function.
|
|
func (c *Cookie) Expires() time.Time {
|
|
return c.Cookie.Expires
|
|
}
|
|
|
|
// Secure implements `engine.Cookie#Secure` function.
|
|
func (c *Cookie) Secure() bool {
|
|
return c.Cookie.Secure
|
|
}
|
|
|
|
// HTTPOnly implements `engine.Cookie#HTTPOnly` function.
|
|
func (c *Cookie) HTTPOnly() bool {
|
|
return c.Cookie.HttpOnly
|
|
}
|