1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-01-04 05:17:40 +03:00

feature #198: OCA-JAVA Client Session example

This commit is contained in:
Carlos Martin and Ruben S. Montero 2010-03-20 00:55:22 +01:00 committed by Ruben S. Montero
parent c81bcc2495
commit d27886b3a5
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,45 @@
/*******************************************************************************
* Copyright 2002-2010, OpenNebula Project Leads (OpenNebula.org)
*
* 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.
******************************************************************************/
import org.opennebula.client.Client;
public class SessionInit {
public static void main(String[] args)
{
System.out.print("Creating a new OpenNebula session...");
try
{
Client oneClient = new Client();
}
catch (Exception e)
{
System.out.println(e.getMessage());
}
System.out.println("ok");
System.out.println("Wrong session initialization...");
try
{
Client oneClient = new Client("wrong_password_token",null);
}
catch (Exception e)
{
System.out.println("\t" + e.getMessage());
}
}
}