1 31 package org.objectweb.proactive.ext.security.crypto; 32 33 import java.io.*; 34 35 36 public class ConfidentialityTicketProperty implements Serializable { 37 public long timestamp; 38 public long random1; 39 public long random2; 40 public String identity; 41 public Object encryptedSessionKeyPart1; 42 public Object encryptedSessionKeyPart2; 43 44 public ConfidentialityTicketProperty() { 45 } 46 } 47 | Popular Tags |