/* * ### * phresco-pom * * Copyright (C) 1999 - 2012 Photon Infotech Inc. * * Licensed 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. * ### */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.04.18 at 06:47:36 PM IST // package com.phresco.pom.model; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * * This is the file specification used to activate the profile. The missing value will be the location * of a file that needs to exist, and if it doesn't the profile will be activated. On the other hand exists will test * for the existence of the file and if it is there the profile will be activated. * * * <p>Java class for ActivationFile complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ActivationFile"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="missing" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="exists" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </all> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ActivationFile", propOrder = { }) public class ActivationFile { protected String missing; protected String exists; /** * Gets the value of the missing property. * * @return * possible object is * {@link String } * */ public String getMissing() { return missing; } /** * Sets the value of the missing property. * * @param value * allowed object is * {@link String } * */ public void setMissing(String value) { this.missing = value; } /** * Gets the value of the exists property. * * @return * possible object is * {@link String } * */ public String getExists() { return exists; } /** * Sets the value of the exists property. * * @param value * allowed object is * {@link String } * */ public void setExists(String value) { this.exists = value; } }