forked from community/device-mgt-core
parent
d7e363cef7
commit
076d60ec83
@ -0,0 +1,7 @@
|
||||
package org.wso2.carbon.device.mgt.core.config.permission;
|
||||
|
||||
/**
|
||||
* Created by harshan on 8/14/15.
|
||||
*/
|
||||
public class Permission {
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package org.wso2.carbon.device.mgt.core.config.permission;
|
||||
|
||||
/**
|
||||
* Created by harshan on 8/14/15.
|
||||
*/
|
||||
public class PermissionConfiguration {
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package org.wso2.carbon.device.mgt.core.config.permission;
|
||||
|
||||
/**
|
||||
* Created by harshan on 8/14/15.
|
||||
*/
|
||||
public class PermissionManager {
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package org.wso2.carbon.device.mgt.core.config.permission;
|
||||
|
||||
/**
|
||||
* Created by harshan on 8/14/15.
|
||||
*/
|
||||
public class PermissionUtils {
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
/*
|
||||
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
||||
*
|
||||
* WSO2 Inc. licenses this file to you 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.wso2.carbon.device.mgt.core.config.permission.lifecycle;
|
||||
|
||||
import org.apache.catalina.Lifecycle;
|
||||
import org.apache.catalina.LifecycleEvent;
|
||||
import org.apache.catalina.LifecycleListener;
|
||||
import org.apache.catalina.core.StandardContext;
|
||||
|
||||
@SuppressWarnings("unused")
|
||||
public class WebAppDeploymentLifecycleListener implements LifecycleListener {
|
||||
|
||||
@Override
|
||||
public void lifecycleEvent(LifecycleEvent lifecycleEvent) {
|
||||
if (Lifecycle.AFTER_START_EVENT.equals(lifecycleEvent.getType())) {
|
||||
StandardContext context = (StandardContext) lifecycleEvent.getLifecycle();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue