243244245246247248249
/** * Create a Lifetime. */ public Lifetime createLifetime(final AttributedDateTime created, final AttributedDateTime expires) { return new LifetimeImpl(created, expires); }
265266267268269270271
/** * Create a Lifetime. */ public Lifetime createLifetime(AttributedDateTime created, AttributedDateTime expires) { return new LifetimeImpl(created, expires); }