1 31 package org.objectweb.proactive.ext.security.crypto; 32 33 import java.io.*; 34 35 import java.security.cert.X509Certificate ; 36 37 38 public class AuthenticationTicket implements Serializable { 39 public X509Certificate certificate; 40 public String identity; 41 public long random; 42 public Object signedAuthenticationTicketProperty; 43 44 public AuthenticationTicket() { 45 } 46 } 47 | Popular Tags |