org.wso2.carbon.registry.profiles.stub.beans.xsd.ProfilesBean Java Examples

The following examples show how to use org.wso2.carbon.registry.profiles.stub.beans.xsd.ProfilesBean. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ProfilesAdminServiceClient.java    From micro-integrator with Apache License 2.0 5 votes vote down vote up
public ProfilesBean getUserProfile(String path) throws Exception {
    try {
        return profilesAdminServiceStub.getUserProfile(path);
    } catch (Exception e) {
        String msg = "Unable to get user profiles ";
        log.error(msg + e.getMessage());
        throw new Exception(msg, e);
    }
}
 
Example #2
Source File: ProfilesAdminServiceClient.java    From product-ei with Apache License 2.0 5 votes vote down vote up
public ProfilesBean getUserProfile(String path) throws Exception {
    try {
        return profilesAdminServiceStub.getUserProfile(path);
    } catch (Exception e) {
        String msg = "Unable to get user profiles ";
        log.error(msg + e.getMessage());
        throw new Exception(msg, e);
    }
}
 
Example #3
Source File: ProfilesAdminServiceClient.java    From product-es with Apache License 2.0 5 votes vote down vote up
public ProfilesBean getUserProfile(String path) throws Exception {
    try {
        return profilesAdminServiceStub.getUserProfile(path);
    } catch (Exception e) {
        String msg = "Unable to get user profiles ";
        log.error(msg + e.getMessage());
        throw new Exception(msg, e);
    }
}