001// -------------------------------------------------------------------------------- 002// Copyright 2002-2025 Echo Three, LLC 003// 004// Licensed under the Apache License, Version 2.0 (the "License"); 005// you may not use this file except in compliance with the License. 006// You may obtain a copy of the License at 007// 008// http://www.apache.org/licenses/LICENSE-2.0 009// 010// Unless required by applicable law or agreed to in writing, software 011// distributed under the License is distributed on an "AS IS" BASIS, 012// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013// See the License for the specific language governing permissions and 014// limitations under the License. 015// -------------------------------------------------------------------------------- 016 017package com.echothree.service.job.server; 018 019//@Singleton 020public class LicenseUpdateJob { 021// extends BaseScheduledJob { 022// 023// /** Creates a new instance of LicenseUpdateJob */ 024// public LicenseUpdateJob() { 025// super(Jobs.LICENSE_UPDATE.name()); 026// } 027// 028// @Override 029// @Schedule(second = "55", minute = "*", hour = "*", persistent = false) 030// public void executeJob() 031// throws NamingException { 032// super.executeJob(); 033// } 034// 035// @Override 036// public void execute() 037// throws NamingException { 038// CommandResult commandResult = LicenseUtil.getHome().updateLicense(userVisitPK); 039// 040// if(commandResult.hasErrors()) { 041// getLog().error(commandResult.toString()); 042// } 043// } 044 045}