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

com.synopsys.integration.coverity.ws.v9.SkeletonizationConfigurationDataObj 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 skeletonizationConfigurationDataObj complex type. * *

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

 * <complexType name="skeletonizationConfigurationDataObj">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="daysBeforeSkeletonization" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="fridayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="minSnapshotsToKeep" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="mondayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="saturdayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="sundayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="thursdayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="time" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="tuesdayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="wednesdayEnabled" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "skeletonizationConfigurationDataObj", propOrder = { "daysBeforeSkeletonization", "fridayEnabled", "minSnapshotsToKeep", "mondayEnabled", "saturdayEnabled", "sundayEnabled", "thursdayEnabled", "time", "tuesdayEnabled", "wednesdayEnabled" }) public class SkeletonizationConfigurationDataObj { protected Integer daysBeforeSkeletonization; protected Boolean fridayEnabled; protected Integer minSnapshotsToKeep; protected Boolean mondayEnabled; protected Boolean saturdayEnabled; protected Boolean sundayEnabled; protected Boolean thursdayEnabled; protected String time; protected Boolean tuesdayEnabled; protected Boolean wednesdayEnabled; /** * Gets the value of the daysBeforeSkeletonization property. * @return possible object is * {@link Integer } */ public Integer getDaysBeforeSkeletonization() { return daysBeforeSkeletonization; } /** * Sets the value of the daysBeforeSkeletonization property. * @param value allowed object is * {@link Integer } */ public void setDaysBeforeSkeletonization(Integer value) { this.daysBeforeSkeletonization = value; } /** * Gets the value of the fridayEnabled property. * @return possible object is * {@link Boolean } */ public Boolean isFridayEnabled() { return fridayEnabled; } /** * Sets the value of the fridayEnabled property. * @param value allowed object is * {@link Boolean } */ public void setFridayEnabled(Boolean value) { this.fridayEnabled = value; } /** * Gets the value of the minSnapshotsToKeep property. * @return possible object is * {@link Integer } */ public Integer getMinSnapshotsToKeep() { return minSnapshotsToKeep; } /** * Sets the value of the minSnapshotsToKeep property. * @param value allowed object is * {@link Integer } */ public void setMinSnapshotsToKeep(Integer value) { this.minSnapshotsToKeep = value; } /** * Gets the value of the mondayEnabled property. * @return possible object is * {@link Boolean } */ public Boolean isMondayEnabled() { return mondayEnabled; } /** * Sets the value of the mondayEnabled property. * @param value allowed object is * {@link Boolean } */ public void setMondayEnabled(Boolean value) { this.mondayEnabled = value; } /** * Gets the value of the saturdayEnabled property. * @return possible object is * {@link Boolean } */ public Boolean isSaturdayEnabled() { return saturdayEnabled; } /** * Sets the value of the saturdayEnabled property. * @param value allowed object is * {@link Boolean } */ public void setSaturdayEnabled(Boolean value) { this.saturdayEnabled = value; } /** * Gets the value of the sundayEnabled property. * @return possible object is * {@link Boolean } */ public Boolean isSundayEnabled() { return sundayEnabled; } /** * Sets the value of the sundayEnabled property. * @param value allowed object is * {@link Boolean } */ public void setSundayEnabled(Boolean value) { this.sundayEnabled = value; } /** * Gets the value of the thursdayEnabled property. * @return possible object is * {@link Boolean } */ public Boolean isThursdayEnabled() { return thursdayEnabled; } /** * Sets the value of the thursdayEnabled property. * @param value allowed object is * {@link Boolean } */ public void setThursdayEnabled(Boolean value) { this.thursdayEnabled = value; } /** * Gets the value of the time property. * @return possible object is * {@link String } */ public String getTime() { return time; } /** * Sets the value of the time property. * @param value allowed object is * {@link String } */ public void setTime(String value) { this.time = value; } /** * Gets the value of the tuesdayEnabled property. * @return possible object is * {@link Boolean } */ public Boolean isTuesdayEnabled() { return tuesdayEnabled; } /** * Sets the value of the tuesdayEnabled property. * @param value allowed object is * {@link Boolean } */ public void setTuesdayEnabled(Boolean value) { this.tuesdayEnabled = value; } /** * Gets the value of the wednesdayEnabled property. * @return possible object is * {@link Boolean } */ public Boolean isWednesdayEnabled() { return wednesdayEnabled; } /** * Sets the value of the wednesdayEnabled property. * @param value allowed object is * {@link Boolean } */ public void setWednesdayEnabled(Boolean value) { this.wednesdayEnabled = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy