All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.synopsys.integration.coverity.ws.v9.BackupConfigurationDataObj Maven / Gradle / Ivy

There is a newer version: 0.8.1
Show newest version
/**
 * coverity-common
 *
 * Copyright (C) 2018 Black Duck Software, Inc.
 * http://www.blackducksoftware.com/
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package com.synopsys.integration.coverity.ws.v9;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;

/**
 * 

Java class for backupConfigurationDataObj complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="backupConfigurationDataObj">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="backupLocation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="backupTime" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fridayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="mondayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="saturdayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="sundayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="thursdayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="tuesdayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="wednesdayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "backupConfigurationDataObj", propOrder = { "backupLocation", "backupTime", "fridayEnabled", "mondayEnabled", "saturdayEnabled", "sundayEnabled", "thursdayEnabled", "tuesdayEnabled", "wednesdayEnabled" }) public class BackupConfigurationDataObj { protected String backupLocation; protected String backupTime; protected boolean fridayEnabled; protected boolean mondayEnabled; protected boolean saturdayEnabled; protected boolean sundayEnabled; protected boolean thursdayEnabled; protected boolean tuesdayEnabled; protected boolean wednesdayEnabled; /** * Gets the value of the backupLocation property. * @return possible object is * {@link String } */ public String getBackupLocation() { return backupLocation; } /** * Sets the value of the backupLocation property. * @param value allowed object is * {@link String } */ public void setBackupLocation(String value) { this.backupLocation = value; } /** * Gets the value of the backupTime property. * @return possible object is * {@link String } */ public String getBackupTime() { return backupTime; } /** * Sets the value of the backupTime property. * @param value allowed object is * {@link String } */ public void setBackupTime(String value) { this.backupTime = value; } /** * Gets the value of the fridayEnabled property. */ public boolean isFridayEnabled() { return fridayEnabled; } /** * Sets the value of the fridayEnabled property. */ public void setFridayEnabled(boolean value) { this.fridayEnabled = value; } /** * Gets the value of the mondayEnabled property. */ public boolean isMondayEnabled() { return mondayEnabled; } /** * Sets the value of the mondayEnabled property. */ public void setMondayEnabled(boolean value) { this.mondayEnabled = value; } /** * Gets the value of the saturdayEnabled property. */ public boolean isSaturdayEnabled() { return saturdayEnabled; } /** * Sets the value of the saturdayEnabled property. */ public void setSaturdayEnabled(boolean value) { this.saturdayEnabled = value; } /** * Gets the value of the sundayEnabled property. */ public boolean isSundayEnabled() { return sundayEnabled; } /** * Sets the value of the sundayEnabled property. */ public void setSundayEnabled(boolean value) { this.sundayEnabled = value; } /** * Gets the value of the thursdayEnabled property. */ public boolean isThursdayEnabled() { return thursdayEnabled; } /** * Sets the value of the thursdayEnabled property. */ public void setThursdayEnabled(boolean value) { this.thursdayEnabled = value; } /** * Gets the value of the tuesdayEnabled property. */ public boolean isTuesdayEnabled() { return tuesdayEnabled; } /** * Sets the value of the tuesdayEnabled property. */ public void setTuesdayEnabled(boolean value) { this.tuesdayEnabled = value; } /** * Gets the value of the wednesdayEnabled property. */ public boolean isWednesdayEnabled() { return wednesdayEnabled; } /** * Sets the value of the wednesdayEnabled property. */ public void setWednesdayEnabled(boolean value) { this.wednesdayEnabled = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy