コード例 #1
0
ファイル: Attribute.java プロジェクト: pankajk87/CompSecurity
 public Attribute(String s, String s1, String s2, ValueType valuetype) {
   attributeValue = new JSONObject();
   sessionId = s;
   attributeName = s1;
   attributeType = s2;
   attributeValue = valuetype.toJSON();
 }
コード例 #2
0
ファイル: Attribute.java プロジェクト: pankajk87/CompSecurity
 public Attribute setAttributeValue(ValueType valuetype) {
   attributeValue = valuetype.toJSON();
   return this;
 }