• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

wmixvideo / nfe / #6582

17 Jul 2025 09:30PM UTC coverage: 51.231% (+24.2%) from 26.996%
#6582

push

web-flow
Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e (#1054)

* Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e

* Adequação do mapeamento de infLocalCarrega e infLocalDescarrega ao xs:choice do schema MDF-e

14006 of 27339 relevant lines covered (51.23%)

0.51 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

46.15
/src/main/java/com/fincatto/documentofiscal/nfe400/classes/nota/assinatura/NFSignature.java
1
package com.fincatto.documentofiscal.nfe400.classes.nota.assinatura;
2

3
import org.simpleframework.xml.Attribute;
4
import org.simpleframework.xml.Element;
5
import org.simpleframework.xml.Namespace;
6

7
import com.fincatto.documentofiscal.DFBase;
8

9
@Namespace(reference = "http://www.w3.org/2000/09/xmldsig#")
10
public class NFSignature extends DFBase {
1✔
11
        private static final long serialVersionUID = 4057860940440076358L;
12

13
        @Attribute(name = "Id", required = false)
14
        private String id;
15

16
        @Element(name = "SignedInfo", required = false)
17
        private NFSignedInfo signedInfo;
18

19
        @Element(name = "SignatureValue", required = false)
20
        private String signatureValue;
21

22
        @Element(name = "KeyInfo", required = false)
23
        private NFKeyInfo keyInfo;
24

25
        public String getId() {
26
                return id;
×
27
        }
28

29
        public void setId(String id) {
30
                this.id = id;
×
31
        }
×
32

33
        public NFSignedInfo getSignedInfo() {
34
                return this.signedInfo;
1✔
35
        }
36

37
        public void setSignedInfo(final NFSignedInfo signedInfo) {
38
                this.signedInfo = signedInfo;
1✔
39
        }
1✔
40

41
        public String getSignatureValue() {
42
                return this.signatureValue;
×
43
        }
44

45
        public void setSignatureValue(final String signatureValue) {
46
                this.signatureValue = signatureValue;
1✔
47
        }
1✔
48

49
        public NFKeyInfo getKeyInfo() {
50
                return this.keyInfo;
×
51
        }
52

53
        public void setKeyInfo(final NFKeyInfo keyInfo) {
54
                this.keyInfo = keyInfo;
×
55
        }
×
56
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc