本文整理汇总了Golang中github.com/google/cups-connector/lib.Config.GCPOAuthTokenURL方法的典型用法代码示例。如果您正苦于以下问题:Golang Config.GCPOAuthTokenURL方法的具体用法?Golang Config.GCPOAuthTokenURL怎么用?Golang Config.GCPOAuthTokenURL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/google/cups-connector/lib.Config
的用法示例。
在下文中一共展示了Config.GCPOAuthTokenURL方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: commonUpdateConfig
// commonUpdateConfig updates the config object, with the help of configMap,
// which can indicate the absence of a value.
// Returns true if config was changed.
//
// Each platform should define a function updateConfig(*lib.Config, map[string]interface{})
// which may call this function.
func commonUpdateConfig(config *lib.Config, configMap map[string]interface{}) bool {
dirty := false
if _, exists := configMap["xmpp_server"]; !exists {
dirty = true
fmt.Println("Added xmpp_server")
config.XMPPServer = lib.DefaultConfig.XMPPServer
}
if _, exists := configMap["xmpp_port"]; !exists {
dirty = true
fmt.Println("Added xmpp_port")
config.XMPPPort = lib.DefaultConfig.XMPPPort
}
if _, exists := configMap["gcp_xmpp_ping_timeout"]; !exists {
dirty = true
fmt.Println("Added gcp_xmpp_ping_timeout")
config.XMPPPingTimeout = lib.DefaultConfig.XMPPPingTimeout
}
if _, exists := configMap["gcp_xmpp_ping_interval_default"]; !exists {
dirty = true
fmt.Println("Added gcp_xmpp_ping_interval_default")
config.XMPPPingInterval = lib.DefaultConfig.XMPPPingInterval
}
if _, exists := configMap["gcp_base_url"]; !exists {
dirty = true
fmt.Println("Added gcp_base_url")
config.GCPBaseURL = lib.DefaultConfig.GCPBaseURL
}
if _, exists := configMap["gcp_oauth_client_id"]; !exists {
dirty = true
fmt.Println("Added gcp_oauth_client_id")
config.GCPOAuthClientID = lib.DefaultConfig.GCPOAuthClientID
}
if _, exists := configMap["gcp_oauth_client_secret"]; !exists {
dirty = true
fmt.Println("Added gcp_oauth_client_secret")
config.GCPOAuthClientSecret = lib.DefaultConfig.GCPOAuthClientSecret
}
if _, exists := configMap["gcp_oauth_auth_url"]; !exists {
dirty = true
fmt.Println("Added gcp_oauth_auth_url")
config.GCPOAuthAuthURL = lib.DefaultConfig.GCPOAuthAuthURL
}
if _, exists := configMap["gcp_oauth_token_url"]; !exists {
dirty = true
fmt.Println("Added gcp_oauth_token_url")
config.GCPOAuthTokenURL = lib.DefaultConfig.GCPOAuthTokenURL
}
if _, exists := configMap["gcp_max_concurrent_downloads"]; !exists {
dirty = true
fmt.Println("Added gcp_max_concurrent_downloads")
config.GCPMaxConcurrentDownloads = lib.DefaultConfig.GCPMaxConcurrentDownloads
}
if _, exists := configMap["cups_job_queue_size"]; !exists {
dirty = true
fmt.Println("Added cups_job_queue_size")
config.NativeJobQueueSize = lib.DefaultConfig.NativeJobQueueSize
}
if _, exists := configMap["cups_printer_poll_interval"]; !exists {
dirty = true
fmt.Println("Added cups_printer_poll_interval")
config.NativePrinterPollInterval = lib.DefaultConfig.NativePrinterPollInterval
}
if _, exists := configMap["prefix_job_id_to_job_title"]; !exists {
dirty = true
fmt.Println("Added prefix_job_id_to_job_title")
config.PrefixJobIDToJobTitle = lib.DefaultConfig.PrefixJobIDToJobTitle
}
if _, exists := configMap["display_name_prefix"]; !exists {
dirty = true
fmt.Println("Added display_name_prefix")
config.DisplayNamePrefix = lib.DefaultConfig.DisplayNamePrefix
}
if _, exists := configMap["snmp_enable"]; !exists {
dirty = true
fmt.Println("Added snmp_enable")
config.SNMPEnable = lib.DefaultConfig.SNMPEnable
}
if _, exists := configMap["snmp_community"]; !exists {
dirty = true
fmt.Println("Added snmp_community")
config.SNMPCommunity = lib.DefaultConfig.SNMPCommunity
}
if _, exists := configMap["snmp_max_connections"]; !exists {
dirty = true
fmt.Println("Added snmp_max_connections")
config.SNMPMaxConnections = lib.DefaultConfig.SNMPMaxConnections
}
if _, exists := configMap["printer_blacklist"]; !exists {
dirty = true
fmt.Println("Added printer_blacklist")
config.PrinterBlacklist = lib.DefaultConfig.PrinterBlacklist
}
if _, exists := configMap["local_printing_enable"]; !exists {
//.........这里部分代码省略.........