Lines Matching defs:ComplianceMetadataInfo
131 type ComplianceMetadataInfo struct { struct
132 properties map[string]string
133 filesContained []string
134 prebuiltFilesCopied []string
151 func (m *ComplianceMetadataInfo) ToGob() *complianceMetadataInfoGob {
159 func (m *ComplianceMetadataInfo) FromGob(data *complianceMetadataInfoGob) {
165 func (c *ComplianceMetadataInfo) GobEncode() ([]byte, error) {
169 func (c *ComplianceMetadataInfo) GobDecode(data []byte) error {
173 func (c *ComplianceMetadataInfo) SetStringValue(propertyName string, value string) {
180 func (c *ComplianceMetadataInfo) SetListValue(propertyName string, value []string) {
184 func (c *ComplianceMetadataInfo) SetFilesContained(files []string) {
188 func (c *ComplianceMetadataInfo) GetFilesContained() []string {
192 func (c *ComplianceMetadataInfo) SetPrebuiltFilesCopied(files []string) {
196 func (c *ComplianceMetadataInfo) GetPrebuiltFilesCopied() []string {
200 func (c *ComplianceMetadataInfo) getStringValue(propertyName string) string {
207 func (c *ComplianceMetadataInfo) getAllValues() map[string]string {