Subversion Repositories bacoAlunos

Compare Revisions

Ignore whitespace Rev 228 → Rev 230

/impl/src/java/pt/estgp/estgweb/services/sigesimports/ImportGradesService.java
100,7 → 100,7
if(grade.getGrade() > 0)
addGrade(grade);
}
if(grade.getGrade() != valor || grade.getStatusEpoca() != statusEpoca || grade.getPublishDate().getTime() != data.getTime())
if(grade.getGrade() != valor || grade.getStatusEpoca() != statusEpoca || (grade.getPublishDate() != null && grade.getPublishDate().getTime() != data.getTime()))
{
grade.setPublishDate(data);
grade.setGrade(valor);
/impl/gen/java/pt/ipportalegre/siges/web/services/SendSmsSeparatedWithComma.java
New file
0,0 → 1,116
 
package pt.ipportalegre.siges.web.services;
 
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
 
 
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="sPhones" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;element name="secret" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"message",
"sPhones",
"secret"
})
@XmlRootElement(name = "sendSmsSeparatedWithComma")
public class SendSmsSeparatedWithComma {
 
protected String message;
protected String sPhones;
protected String secret;
 
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
 
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(String value) {
this.message = value;
}
 
/**
* Gets the value of the sPhones property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSPhones() {
return sPhones;
}
 
/**
* Sets the value of the sPhones property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSPhones(String value) {
this.sPhones = value;
}
 
/**
* Gets the value of the secret property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSecret() {
return secret;
}
 
/**
* Sets the value of the secret property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSecret(String value) {
this.secret = value;
}
 
}
/impl/gen/java/pt/ipportalegre/siges/web/services/SendSmsSeparatedWithCommaResponse.java
New file
0,0 → 1,32
 
package pt.ipportalegre.siges.web.services;
 
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
 
 
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "sendSmsSeparatedWithCommaResponse")
public class SendSmsSeparatedWithCommaResponse {
 
 
}
/impl/build.xml
283,7 → 283,7
Generate Configuration Files TASKS
==========================================================================================
-->
<target name="createConfigurationFiles" depends="copyConfigurationFiles,replaceFiltersConfigurationFiles,generateHibernateCfgXml"/>
<target name="createConfigurationFiles" depends="compileToolFiles,copyConfigurationFiles,replaceFiltersConfigurationFiles,generateHibernateCfgXml"/>
 
<target name="copyConfigurationFiles">
<copy overwrite="true" todir="${build.dir.classes}">