Skip to content

Commit

Permalink
Gestione Brevetti: Aggiunta gestione della validità dei trovati in in…
Browse files Browse the repository at this point in the history
…serimento/modifica. Se il trovato è già indicato viene visualizzato anche se non è più valido, nel caso di modifica/inserimento del trovato vengono accettati solo trovati validi.
  • Loading branch information
gianfranco.gasparro committed Oct 29, 2014
1 parent 402e735 commit 5c04a81
Show file tree
Hide file tree
Showing 14 changed files with 570 additions and 61 deletions.
20 changes: 20 additions & 0 deletions sigla-ejb/src/main/java/it/cnr/brevetti/ExtensionMapper.java
Expand Up @@ -30,6 +30,16 @@ public static java.lang.Object getTypeObject(java.lang.String namespaceURI,
}


if (
"http://brevetti.cnr.it".equals(namespaceURI) &&
"findTrovatoValido".equals(typeName)){

return it.cnr.brevetti.FindTrovatoValido.Factory.parse(reader);


}


if (
"http://brevetti.cnr.it".equals(namespaceURI) &&
"findTrovato".equals(typeName)){
Expand All @@ -40,6 +50,16 @@ public static java.lang.Object getTypeObject(java.lang.String namespaceURI,
}


if (
"http://brevetti.cnr.it".equals(namespaceURI) &&
"findTrovatoValidoResponse".equals(typeName)){

return it.cnr.brevetti.FindTrovatoValidoResponse.Factory.parse(reader);


}


if (
"http://brevetti.cnr.it".equals(namespaceURI) &&
"findTrovatoResponse".equals(typeName)){
Expand Down
Expand Up @@ -19,15 +19,48 @@ public interface TrovatiWebServiceBeanService {
/**
* Auto generated method signature
*
* @param findTrovato0
* @param findTrovatoValido0
* @throws it.cnr.brevetti.ExceptionException :
*/


public it.cnr.brevetti.FindTrovatoValidoResponseE findTrovatoValido(

it.cnr.brevetti.FindTrovatoValidoE findTrovatoValido0)
throws java.rmi.RemoteException

,it.cnr.brevetti.ExceptionException;


/**
* Auto generated method signature for Asynchronous Invocations
*
* @param findTrovatoValido0
*/
public void startfindTrovatoValido(

it.cnr.brevetti.FindTrovatoValidoE findTrovatoValido0,

final it.cnr.brevetti.TrovatiWebServiceBeanServiceCallbackHandler callback)

throws java.rmi.RemoteException;



/**
* Auto generated method signature
*
* @param findTrovato2
* @throws it.cnr.brevetti.ExceptionException :
*/


public it.cnr.brevetti.FindTrovatoResponseE findTrovato(

it.cnr.brevetti.FindTrovatoE findTrovato0)
it.cnr.brevetti.FindTrovatoE findTrovato2)
throws java.rmi.RemoteException

,it.cnr.brevetti.ExceptionException;
Expand All @@ -36,12 +69,12 @@ public it.cnr.brevetti.FindTrovatoResponseE findTrovato(
/**
* Auto generated method signature for Asynchronous Invocations
*
* @param findTrovato0
* @param findTrovato2
*/
public void startfindTrovato(

it.cnr.brevetti.FindTrovatoE findTrovato0,
it.cnr.brevetti.FindTrovatoE findTrovato2,

final it.cnr.brevetti.TrovatiWebServiceBeanServiceCallbackHandler callback)

Expand Down
Expand Up @@ -44,6 +44,22 @@ public Object getClientData() {
}


/**
* auto generated Axis2 call back method for findTrovatoValido method
* override this method for handling normal response from findTrovatoValido operation
*/
public void receiveResultfindTrovatoValido(
it.cnr.brevetti.FindTrovatoValidoResponseE result
) {
}

/**
* auto generated Axis2 Error handler
* override this method for handling error response from findTrovatoValido operation
*/
public void receiveErrorfindTrovatoValido(java.lang.Exception e) {
}

/**
* auto generated Axis2 call back method for findTrovato method
* override this method for handling normal response from findTrovato operation
Expand Down

0 comments on commit 5c04a81

Please sign in to comment.