github.com/cloudfoundry/cli@v7.1.0+incompatible/api/uaa/constant/package.go (about) 1 // Package constant contains types and constants used by the uaa package. 2 // 3 // Constant Naming Conventions: 4 // 5 // The standard naming for a constant is <Constant Type><Enum Name>. The only 6 // exception is 'state' types, where the word 'state' is omitted. 7 // 8 // For Example: 9 // Constant Type: PackageType 10 // Enum Name: Bits 11 // Enum Value: "bits" 12 // const PackageTypeBits PackageType = "bits" 13 // 14 // Constant Type: PackageState 15 // Enum Name: Expired 16 // Enum Value: "EXPIRED" 17 // const PackageExpired PackageState = "EXPIRED" 18 package constant