1
This commit is contained in:
@@ -0,0 +1,100 @@
|
||||
package com.cym.utils.cert.ssl;
|
||||
public class SubjectDN
|
||||
{
|
||||
private String commonName;
|
||||
|
||||
private String country;
|
||||
|
||||
private boolean empty;
|
||||
|
||||
private String encoded;
|
||||
|
||||
private String encodedInternal;
|
||||
|
||||
private String name;
|
||||
|
||||
private String organization;
|
||||
|
||||
private String rFC1779Name;
|
||||
|
||||
private String rFC2253CanonicalName;
|
||||
|
||||
private String rFC2253Name;
|
||||
|
||||
private String state;
|
||||
|
||||
private int type;
|
||||
|
||||
public void setCommonName(String commonName){
|
||||
this.commonName = commonName;
|
||||
}
|
||||
public String getCommonName(){
|
||||
return this.commonName;
|
||||
}
|
||||
public void setCountry(String country){
|
||||
this.country = country;
|
||||
}
|
||||
public String getCountry(){
|
||||
return this.country;
|
||||
}
|
||||
public void setEmpty(boolean empty){
|
||||
this.empty = empty;
|
||||
}
|
||||
public boolean getEmpty(){
|
||||
return this.empty;
|
||||
}
|
||||
public void setEncoded(String encoded){
|
||||
this.encoded = encoded;
|
||||
}
|
||||
public String getEncoded(){
|
||||
return this.encoded;
|
||||
}
|
||||
public void setEncodedInternal(String encodedInternal){
|
||||
this.encodedInternal = encodedInternal;
|
||||
}
|
||||
public String getEncodedInternal(){
|
||||
return this.encodedInternal;
|
||||
}
|
||||
public void setName(String name){
|
||||
this.name = name;
|
||||
}
|
||||
public String getName(){
|
||||
return this.name;
|
||||
}
|
||||
public void setOrganization(String organization){
|
||||
this.organization = organization;
|
||||
}
|
||||
public String getOrganization(){
|
||||
return this.organization;
|
||||
}
|
||||
public void setRFC1779Name(String rFC1779Name){
|
||||
this.rFC1779Name = rFC1779Name;
|
||||
}
|
||||
public String getRFC1779Name(){
|
||||
return this.rFC1779Name;
|
||||
}
|
||||
public void setRFC2253CanonicalName(String rFC2253CanonicalName){
|
||||
this.rFC2253CanonicalName = rFC2253CanonicalName;
|
||||
}
|
||||
public String getRFC2253CanonicalName(){
|
||||
return this.rFC2253CanonicalName;
|
||||
}
|
||||
public void setRFC2253Name(String rFC2253Name){
|
||||
this.rFC2253Name = rFC2253Name;
|
||||
}
|
||||
public String getRFC2253Name(){
|
||||
return this.rFC2253Name;
|
||||
}
|
||||
public void setState(String state){
|
||||
this.state = state;
|
||||
}
|
||||
public String getState(){
|
||||
return this.state;
|
||||
}
|
||||
public void setType(int type){
|
||||
this.type = type;
|
||||
}
|
||||
public int getType(){
|
||||
return this.type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user