* ONAP
* ================================================================================
* Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019 Bell Canada.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*/
@ToString
public class LifecycleStateActive extends LifecycleStateRunning {
- private static final Logger logger = LoggerFactory.getLogger(LifecycleStatePassive.class);
+ private static final Logger logger = LoggerFactory.getLogger(LifecycleStateActive.class);
protected LifecycleStateActive(LifecycleFsm manager) {
super(manager);
* ONAP
* ================================================================================
* Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019 Bell Canada.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*/
public abstract class LifecycleStateDefault extends LifecycleStateUnsupported {
- private static final Logger logger = LoggerFactory.getLogger(LifecycleState.class);
+ private static final Logger logger = LoggerFactory.getLogger(LifecycleStateDefault.class);
protected LifecycleStateDefault(LifecycleFsm manager) {
super(manager);
* ONAP
* ================================================================================
* Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019 Bell Canada.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*/
public abstract class LifecycleStateRunning extends LifecycleStateDefault {
- private static final Logger logger = LoggerFactory.getLogger(LifecycleState.class);
+ private static final Logger logger = LoggerFactory.getLogger(LifecycleStateRunning.class);
protected abstract boolean stateChangeToPassive(@NonNull PdpStateChange change);