diff options
Diffstat (limited to 'src/org/traccar/BaseProtocol.java')
-rw-r--r-- | src/org/traccar/BaseProtocol.java | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/src/org/traccar/BaseProtocol.java b/src/org/traccar/BaseProtocol.java index f8bf7ef30..94dd46ac4 100644 --- a/src/org/traccar/BaseProtocol.java +++ b/src/org/traccar/BaseProtocol.java @@ -1,3 +1,18 @@ +/* + * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com) + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.traccar; import org.traccar.database.ActiveDevice; @@ -15,7 +30,7 @@ public abstract class BaseProtocol implements Protocol { public BaseProtocol(String name) { this.name = name; - this.loadCommandsTemplates(commandTemplates); + this.initCommandsTemplates(commandTemplates); } public String getName() { @@ -35,6 +50,7 @@ public abstract class BaseProtocol implements Protocol { activeDevice.write(response); } - protected abstract void loadCommandsTemplates(Map<CommandType, CommandTemplate> templates); + protected void initCommandsTemplates(Map<CommandType, CommandTemplate> templates) { + } } |