org.simpleframework.xml.Element类的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(12.0k)|赞(0)|评价(0)|浏览(254)

本文整理了Java中org.simpleframework.xml.Element类的一些代码示例,展示了Element类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Element类的具体详情如下:
包路径:org.simpleframework.xml.Element
类名称:Element

Element介绍

暂无

代码示例

代码示例来源:origin: Pay-Group/best-pay-sdk

  1. /**
  2. * Created by lly835@163.com
  3. * 2018-05-17 11:32
  4. */
  5. @Data
  6. @Root(name = "xml", strict = false)
  7. public class WxPaySandboxKeyResponse {
  8. @Element(name = "return_code")
  9. private String returnCode;
  10. @Element(name = "return_msg", required = false)
  11. private String returnMsg;
  12. @Element(name = "mch_id", required = false)
  13. private String mchId;
  14. @Element(name = "sandbox_signkey", required = false)
  15. private String sandboxSignkey;
  16. }

代码示例来源:origin: Pay-Group/best-pay-sdk

  1. /**
  2. * 对象转map
  3. * @param obj
  4. * @return
  5. */
  6. public static Map<String, String> buildMap(Object obj) {
  7. Map<String, String> map = new HashMap<>();
  8. try {
  9. Class<?> clazz = obj.getClass();
  10. for (Field field : clazz.getDeclaredFields()) {
  11. field.setAccessible(true);
  12. String fieldName = field.getName();
  13. //如果 element 注解 name 字段设置了内容, 使用其当成字段名
  14. Element element = field.getAnnotation(Element.class);
  15. if (element != null && StringUtils.isNotEmpty(element.name())) {
  16. fieldName = element.name();
  17. }
  18. String value = field.get(obj) == null ? "" : String.valueOf(field.get(obj));
  19. map.put(fieldName, value);
  20. }
  21. } catch (Exception e) {
  22. e.printStackTrace();
  23. }
  24. return map;
  25. }

代码示例来源:origin: wmixvideo/nfe

  1. @Root(name = "protMDFe")
  2. public class MDFProtocolo extends DFBase {
  3. private static final long serialVersionUID = 7056704602846442462L;
  4. @Attribute(name = "versao", required = true)
  5. private String versao;
  6. @Element(name = "infProt", required = true)
  7. private MDFProtocoloInfo protocoloInfo;
  8. @Element(name = "Signature", required = false)
  9. private NFSignature assinatura;

代码示例来源:origin: wmixvideo/nfe

  1. public class CTeDetalhamentoEventoCancelamento extends DFBase {
  2. private static final long serialVersionUID = 8502078404626629549L;
  3. @Attribute(name = "versaoEvento", required = true)
  4. private String versaoEvento;
  5. @Element(name = "evCancCTe", required = true)
  6. private CTeEnviaEventoCancelamento eventoCancelamento;
  7. public void setVersaoEvento(final BigDecimal versaoEvento) {
  8. this.versaoEvento = BigDecimalParser.tamanho5Com2CasasDecimais(versaoEvento, "Versao do Evento");
  9. }
  10. public String getVersaoEvento() {
  11. return this.versaoEvento;
  12. }
  13. public CTeEnviaEventoCancelamento getEventoCancelamento() {
  14. return this.eventoCancelamento;
  15. }
  16. public void setEventoCancelamento(final CTeEnviaEventoCancelamento eventoCancelamento) {
  17. this.eventoCancelamento = eventoCancelamento;
  18. }
  19. }

代码示例来源:origin: syncany/syncany

  1. public class LsFolderRequest extends FolderRequest {
  2. @Element(required = false)
  3. private LsOperationOptions options;
  4. public LsOperationOptions getOptions() {
  5. return options;
  6. }
  7. public void setOptions(OperationOptions options) {
  8. this.options = (LsOperationOptions)options;
  9. }
  10. }

代码示例来源:origin: org.simpleframework/simple-xml

  1. /**
  2. * Constructor for the <code>ElementLabel</code> object. This is
  3. * used to create a label that can convert a XML node into a
  4. * composite object or a primitive type from an XML element.
  5. *
  6. * @param contact this is the field that this label represents
  7. * @param label this is the annotation for the contact
  8. * @param format this is the format used to style this element
  9. */
  10. public ElementLabel(Contact contact, Element label, Format format) {
  11. this.detail = new Introspector(contact, this, format);
  12. this.decorator = new Qualifier(contact);
  13. this.required = label.required();
  14. this.type = contact.getType();
  15. this.override = label.name();
  16. this.expect = label.type();
  17. this.data = label.data();
  18. this.format = format;
  19. this.label = label;
  20. }

代码示例来源:origin: syncany/syncany

  1. private static TransferPluginOption getOptionFromField(Field field, Class<? extends TransferSettings> transferSettingsClass, int level) {
  2. Element elementAnnotation = field.getAnnotation(Element.class);
  3. Setup setupAnnotation = field.getAnnotation(Setup.class);
  4. boolean hasName = !elementAnnotation.name().equalsIgnoreCase("");
  5. boolean hasDescription = setupAnnotation != null && !setupAnnotation.description().equals("");
  6. boolean hasCallback = setupAnnotation != null && !setupAnnotation.callback().isInterface();
  7. boolean hasConverter = setupAnnotation != null && !setupAnnotation.converter().isInterface();
  8. boolean hasFileType = setupAnnotation != null && setupAnnotation.fileType() != null;
  9. String name = (hasName) ? elementAnnotation.name() : field.getName();
  10. String description = (hasDescription) ? setupAnnotation.description() : field.getName();
  11. FileType fileType = (hasFileType) ? setupAnnotation.fileType() : null;
  12. boolean required = elementAnnotation.required();
  13. boolean sensitive = setupAnnotation != null && setupAnnotation.sensitive();
  14. boolean singular = setupAnnotation != null && setupAnnotation.singular();
  15. boolean visible = setupAnnotation != null && setupAnnotation.visible();
  16. boolean encrypted = field.getAnnotation(Encrypted.class) != null;
  17. Class<? extends TransferPluginOptionCallback> callback = (hasCallback) ? setupAnnotation.callback() : null;
  18. Class<? extends TransferPluginOptionConverter> converter = (hasConverter) ? setupAnnotation.converter() : null;
  19. boolean isNestedOption = TransferSettings.class.isAssignableFrom(field.getType());
  20. if (isNestedOption) {
  21. return createNestedOption(field, level, name, description, fileType, encrypted, sensitive, singular, visible, required, callback, converter);
  22. }
  23. else {
  24. return createNormalOption(field, transferSettingsClass, name, description, fileType, encrypted, sensitive, singular, visible, required, callback, converter);
  25. }
  26. }

代码示例来源:origin: syncany/syncany

  1. /**
  2. * Validate if all required fields are present.
  3. *
  4. * @throws StorageException Thrown if the validation failed due to missing field values.
  5. */
  6. @Validate
  7. public final void validateRequiredFields() throws StorageException {
  8. logger.log(Level.FINE, "Validating required fields");
  9. try {
  10. Field[] elementFields = ReflectionUtil.getAllFieldsWithAnnotation(this.getClass(), Element.class);
  11. for (Field field : elementFields) {
  12. field.setAccessible(true);
  13. if (field.getAnnotation(Element.class).required() && field.get(this) == null) {
  14. logger.log(Level.WARNING, "Missing mandatory field {0}#{1}", new Object[] { this.getClass().getSimpleName(), field.getName() });
  15. throw new StorageException("Missing mandatory field " + this.getClass().getSimpleName() + "#" + field.getName());
  16. }
  17. }
  18. }
  19. catch (IllegalAccessException e) {
  20. throw new RuntimeException("IllegalAccessException when validating required fields: ", e);
  21. }
  22. }

代码示例来源:origin: wmixvideo/nfe

  1. @Root(name = "retCancCTe")
  2. public class CTeRetornoCancelamento extends DFBase {
  3. private static final long serialVersionUID = -578023299108955542L;
  4. @Attribute(name = "versao", required = false)
  5. private String versao;
  6. @Element(name = "infEvento")
  7. private CTeInfoEventoRetorno infoCancelamento;
  8. public String getVersao() {
  9. return this.versao;
  10. }
  11. public void setVersao(final String versao) {
  12. this.versao = versao;
  13. }
  14. public CTeInfoEventoRetorno getInfoCancelamento() {
  15. return this.infoCancelamento;
  16. }
  17. public void setInfoCancelamento(final CTeInfoEventoRetorno infoCancelamento) {
  18. this.infoCancelamento = infoCancelamento;
  19. }
  20. }

代码示例来源:origin: wmixvideo/nfe

  1. public class MDFeDetalhamentoEventoCancelamento extends DFBase {
  2. private static final long serialVersionUID = 3638398807163771387L;
  3. @Attribute(name = "versaoEvento", required = false)
  4. private String versaoEvento;
  5. @Element(name = "evCancMDFe")
  6. private MDFeEnviaEventoCancelamento eventoCancelamento;
  7. public void setVersaoEvento(final BigDecimal versaoEvento) {
  8. this.versaoEvento = BigDecimalParser.tamanho5Com2CasasDecimais(versaoEvento, "Versao do Evento");
  9. }
  10. public String getVersaoEvento() {
  11. return this.versaoEvento;
  12. }
  13. public MDFeEnviaEventoCancelamento getEventoCancelamento() {
  14. return this.eventoCancelamento;
  15. }
  16. public void setEventoCancelamento(final MDFeEnviaEventoCancelamento eventoCancelamento) {
  17. this.eventoCancelamento = eventoCancelamento;
  18. }
  19. }

代码示例来源:origin: syncany/syncany

  1. public class RestoreFolderRequest extends FolderRequest {
  2. @Element(required = true)
  3. private RestoreOperationOptions options;
  4. public RestoreOperationOptions getOptions() {
  5. return options;
  6. }
  7. public void setOptions(OperationOptions options) {
  8. this.options = (RestoreOperationOptions) options;
  9. }
  10. }

代码示例来源:origin: org.restlet.lib/org.simpleframework.simple-xml

  1. /**
  2. * Constructor for the <code>ElementLabel</code> object. This is
  3. * used to create a label that can convert a XML node into a
  4. * composite object or a primitive type from an XML element.
  5. *
  6. * @param contact this is the field that this label represents
  7. * @param label this is the annotation for the contact
  8. * @param format this is the format used to style this element
  9. */
  10. public ElementLabel(Contact contact, Element label, Format format) {
  11. this.detail = new Introspector(contact, this, format);
  12. this.decorator = new Qualifier(contact);
  13. this.required = label.required();
  14. this.type = contact.getType();
  15. this.override = label.name();
  16. this.expect = label.type();
  17. this.data = label.data();
  18. this.format = format;
  19. this.label = label;
  20. }

代码示例来源:origin: wmixvideo/nfe

  1. @Root(name = "protNFe")
  2. public class NFProtocolo extends DFBase {
  3. private static final long serialVersionUID = -784305871769382618L;
  4. @Attribute(name = "versao", required = true)
  5. private String versao;
  6. @Element(name = "infProt", required = true)
  7. private NFProtocoloInfo protocoloInfo;
  8. public void setVersao(final String versao) {
  9. this.versao = versao;
  10. }
  11. public void setProtocoloInfo(final NFProtocoloInfo protocoloInfo) {
  12. this.protocoloInfo = protocoloInfo;
  13. }
  14. public NFProtocoloInfo getProtocoloInfo() {
  15. return this.protocoloInfo;
  16. }
  17. public String getVersao() {
  18. return this.versao;
  19. }
  20. }

代码示例来源:origin: syncany/syncany

  1. @Root(strict = false)
  2. public abstract class Request extends Message {
  3. @Element(required = true)
  4. private int id;
  5. public Request() {
  6. this.id = Math.abs(new Random().nextInt());
  7. }
  8. public int getId() {
  9. return id;
  10. }
  11. public void setId(int id) {
  12. this.id = id;
  13. }
  14. }

代码示例来源:origin: wmixvideo/nfe

  1. public class MDFeRetorno extends DFBase {
  2. private static final long serialVersionUID = -3320099037774115533L;
  3. @Attribute(name = "versao", required = false)
  4. private String versao;
  5. @Element(name = "infEvento")
  6. private MDFeInfoEventoRetorno eventoRetorno;
  7. public String getVersao() {
  8. return this.versao;
  9. }
  10. public void setVersao(final String versao) {
  11. this.versao = versao;
  12. }
  13. public MDFeInfoEventoRetorno getEventoRetorno() {
  14. return this.eventoRetorno;
  15. }
  16. public void setEventoRetorno(final MDFeInfoEventoRetorno eventoRetorno) {
  17. this.eventoRetorno = eventoRetorno;
  18. }
  19. }

代码示例来源:origin: syncany/syncany

  1. public class StatusFolderRequest extends FolderRequest {
  2. @Element(required = false)
  3. private StatusOperationOptions options;
  4. public StatusOperationOptions getOptions() {
  5. return options;
  6. }
  7. public void setOptions(OperationOptions options) {
  8. this.options = (StatusOperationOptions)options;
  9. }
  10. }

代码示例来源:origin: ngallagher/simplexml

  1. /**
  2. * Constructor for the <code>ElementLabel</code> object. This is
  3. * used to create a label that can convert a XML node into a
  4. * composite object or a primitive type from an XML element.
  5. *
  6. * @param contact this is the field that this label represents
  7. * @param label this is the annotation for the contact
  8. * @param format this is the format used to style this element
  9. */
  10. public ElementLabel(Contact contact, Element label, Format format) {
  11. this.detail = new Introspector(contact, this, format);
  12. this.decorator = new Qualifier(contact);
  13. this.required = label.required();
  14. this.type = contact.getType();
  15. this.override = label.name();
  16. this.expect = label.type();
  17. this.data = label.data();
  18. this.format = format;
  19. this.label = label;
  20. }

代码示例来源:origin: org.simpleframework/simple-xml

  1. /**
  2. * This returns the name of the parameter as taken from the XML
  3. * annotation. The name provided here is taken by the label
  4. * and used to compose a name consistent with how fields and
  5. * methods are named by the system.
  6. *
  7. * @return this returns the name of the annotated parameter
  8. */
  9. public String getName() {
  10. return label.name();
  11. }
  12. }

代码示例来源:origin: wmixvideo/nfe

  1. @Root(name = "eventoCTe")
  2. public class CTeEventoCancelamento extends DFBase {
  3. private static final long serialVersionUID = -8363617761063438288L;
  4. @Attribute(name = "versao", required = true)
  5. private String versao;
  6. @Element(name = "infEvento", required = true)
  7. private CTeInfoEventoCancelamento infoEvento;
  8. @Element(name = "Signature", required = false)
  9. private NFSignature assinatura;

代码示例来源:origin: syncany/syncany

  1. @Root(name="status")
  2. public class StatusOperationOptions implements OperationOptions {
  3. @Element(required = false)
  4. private boolean forceChecksum = false;
  5. @Element(required = false)
  6. private boolean delete = true;
  7. public boolean isForceChecksum() {
  8. return forceChecksum;
  9. }
  10. public void setForceChecksum(boolean forceChecksum) {
  11. this.forceChecksum = forceChecksum;
  12. }
  13. public boolean isDelete() {
  14. return delete;
  15. }
  16. public void setDelete(boolean delete) {
  17. this.delete = delete;
  18. }
  19. }

相关文章