Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
29 righe
843 B
29 righe
843 B
/* */ package it.tref.signextractor.data; |
|
/* */ |
|
/* */ public class SignCertData |
|
/* */ { |
|
/* */ private byte[] encoded; |
|
/* */ private byte[] signature; |
|
/* */ |
|
/* */ public byte[] getEncoded() |
|
/* */ { |
|
/* 10 */ return this.encoded; |
|
/* */ } |
|
/* */ |
|
/* */ public void setEncoded(byte[] encoded) { |
|
/* 14 */ this.encoded = encoded; |
|
/* */ } |
|
/* */ |
|
/* */ public byte[] getSignature() { |
|
/* 18 */ return this.signature; |
|
/* */ } |
|
/* */ |
|
/* */ public void setSignature(byte[] signature) { |
|
/* 22 */ this.signature = signature; |
|
/* */ } |
|
/* */ } |
|
|
|
/* Location: C:\liferay-sviluppo\portos2\git\portos-camel-document-processor\lib\tref-sign-exctractor-0.1.0.jar |
|
* Qualified Name: it.tref.signextractor.data.SignCertData |
|
* JD-Core Version: 0.6.0 |
|
*/ |