This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package hash.blog.reflexion; | |
| import java.beans.IntrospectionException; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |
| public class App { | |
| public static void main(String[] args) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package hash.blog.reflexion; | |
| public class Comunicado { | |
| private String encabezado; | |
| private String departamento; | |
| private String mensaje; | |
| /** | |
| * @return the encabezado | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package hash.blog.reflexion; | |
| import java.beans.IntrospectionException; | |
| import java.beans.PropertyDescriptor; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.lang.reflect.Method; | |
| public class Reflexion { | |
| public void callSetter(Object objeto, String nombreCampo, Object valor) throws IntrospectionException, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package hash.blog.reflexion; | |
| public class ResultadoAnalisis { | |
| private String cantidad; | |
| private String resultado; | |
| private String instrumento; | |
| /** | |
| * @return the cantidad | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package mx.com.pydee.mavenfirma; | |
| import java.io.BufferedReader; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.InputStreamReader; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; | |
| import javax.swing.JOptionPane; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <plugin> | |
| <artifactId>maven-jarsigner-plugin</artifactId> | |
| <version>1.4</version> | |
| <exearcutions> | |
| <execution> | |
| <id>sign</id> | |
| <goals> | |
| <goal>sign</goal> | |
| </goals> | |
| </execution> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <execution> | |
| <id>add-dataCert</id> | |
| <phase>package</phase> | |
| <goals> | |
| <goal>exec</goal> | |
| </goals> | |
| <configuration> | |
| <workingDirectory>${project.basedir}</workingDirectory> | |
| <executable>jar</executable> | |
| <arguments> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <execution> | |
| <id>dataCert</id> | |
| <phase>compile</phase> | |
| <goals> | |
| <goal>exec</goal> | |
| </goals> | |
| <configuration> | |
| <workingDirectory>${project.basedir}</workingDirectory> | |
| <executable>cmd.exe</executable> | |
| <arguments> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>exec-maven-plugin</artifactId> | |
| <version>1.3.2</version> | |
| <executions> | |
| <execution> | |
| <id>dataCert</id> | |
| <phase>compile</phase> | |
| <goals> | |
| <goal>exec</goal> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <head> | |
| <title>Ejemplo Feed RSS</title> | |
| <meta charset="utf-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <!-- Enlazamos el Feed RSS a la pagina --> | |
| <link rel="alternate" type="application/rss+xml" title="RSS-example" href="rss.xml" /> | |
| </head> |