1 17 package org.alfresco.service.license; 18 19 import java.security.Principal ; 20 import java.util.Date ; 21 22 23 28 public interface LicenseDescriptor 29 { 30 31 36 public Date getIssued(); 37 38 43 public Date getValidUntil(); 44 45 50 public Integer getDays(); 51 52 57 public Integer getRemainingDays(); 58 59 64 public String getSubject(); 65 66 71 public Principal getHolder(); 72 73 78 public Principal getIssuer(); 79 80 } 81 | Popular Tags |