001/** 002 * 003 * Copyright (c) 2014, the Railo Company Ltd. All rights reserved. 004 * 005 * This library is free software; you can redistribute it and/or 006 * modify it under the terms of the GNU Lesser General Public 007 * License as published by the Free Software Foundation; either 008 * version 2.1 of the License, or (at your option) any later version. 009 * 010 * This library is distributed in the hope that it will be useful, 011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 013 * Lesser General Public License for more details. 014 * 015 * You should have received a copy of the GNU Lesser General Public 016 * License along with this library. If not, see <http://www.gnu.org/licenses/>. 017 * 018 **/ 019package lucee.runtime.extension; 020 021import lucee.runtime.PageContext; 022import lucee.runtime.type.Struct; 023import lucee.runtime.type.dt.DateTime; 024 025public interface Extension { 026 027 public String getAuthor(); 028 029 public String getCodename(); 030 031 public String getVideo(); 032 033 public String getSupport(); 034 035 public String getDocumentation(); 036 037 public String getForum(); 038 039 public String getMailinglist(); 040 041 public String getNetwork(); 042 043 public DateTime getCreated(); 044 045 public String getName(); 046 047 public String getLabel(); 048 049 public String getDescription(); 050 051 public String getCategory(); 052 053 public String getImage(); 054 055 public String getVersion(); 056 057 public String getProvider(); 058 059 public String getId(); 060 061 public Struct getConfig(PageContext pc); 062 063 public String getStrConfig(); 064 065 public String getType(); 066}