mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
56 lines
2.5 KiB
Go
56 lines
2.5 KiB
Go
package grpc
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/errors"
|
|
"github.com/golang/protobuf/ptypes/empty"
|
|
)
|
|
|
|
func (s *Server) GetPasswordComplexityPolicy(ctx context.Context, _ *empty.Empty) (*PasswordComplexityPolicy, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-swe5v", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) CreatePasswordComplexityPolicy(ctx context.Context, policy *PasswordComplexityPolicyCreate) (*PasswordComplexityPolicy, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-lo34s", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) UpdatePasswordComplexityPolicy(ctx context.Context, policy *PasswordComplexityPolicyUpdate) (*PasswordComplexityPolicy, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-pl8fs", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) DeletePasswordComplexityPolicy(ctx context.Context, ID *PasswordComplexityPolicyID) (*empty.Empty, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-skw3f", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) GetPasswordAgePolicy(ctx context.Context, _ *empty.Empty) (*PasswordAgePolicy, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-po9vb", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) CreatePasswordAgePolicy(ctx context.Context, policy *PasswordAgePolicyCreate) (*PasswordAgePolicy, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-ldp3v", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) UpdatePasswordAgePolicy(ctx context.Context, policy *PasswordAgePolicyUpdate) (*PasswordAgePolicy, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-ckep3", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) DeletePasswordAgePolicy(ctx context.Context, ID *PasswordAgePolicyID) (*empty.Empty, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-plo67", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) GetPasswordLockoutPolicy(ctx context.Context, _ *empty.Empty) (*PasswordLockoutPolicy, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-GHkd9", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) CreatePasswordLockoutPolicy(ctx context.Context, policy *PasswordLockoutPolicyCreate) (*PasswordLockoutPolicy, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-mdk3c", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) UpdatePasswordLockoutPolicy(ctx context.Context, policy *PasswordLockoutPolicyUpdate) (*PasswordLockoutPolicy, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-8dbN4", "Not implemented")
|
|
}
|
|
|
|
func (s *Server) DeletePasswordLockoutPolicy(ctx context.Context, ID *PasswordLockoutPolicyID) (*empty.Empty, error) {
|
|
return nil, errors.ThrowUnimplemented(nil, "GRPC-plV53", "Not implemented")
|
|
}
|